> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SuperOffice.WebApi.Data.ModuleLicenseLink

# <a id="SuperOffice_WebApi_Data_ModuleLicenseLink" /> Class ModuleLicenseLink

Namespace: [SuperOffice.WebApi.Data](SuperOffice.WebApi.Data.md)\
Assembly: SuperOffice.WebApi.dll

Carrier object for ModuleLicenseLink.
License assignments carrier

```csharp theme={null}
public class ModuleLicenseLink : Carrier
```

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[Carrier](SuperOffice.WebApi.Data.Carrier.md) ←
[ModuleLicenseLink](SuperOffice.WebApi.Data.ModuleLicenseLink.md)

#### Inherited Members

[Carrier.TableRight](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_TableRight),
[Carrier.FieldProperties](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_FieldProperties),
[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring),
[object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object\)),
[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object-system-object\)),
[object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals),
[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode),
[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype),
[object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone)

## Constructors

### <a id="SuperOffice_WebApi_Data_ModuleLicenseLink__ctor" /> ModuleLicenseLink()

Default constructor - defaults any enum props to 0.

```csharp theme={null}
public ModuleLicenseLink()
```

## Properties

### <a id="SuperOffice_WebApi_Data_ModuleLicenseLink_Assigned" /> Assigned

Is the module license assigned to a given user?

```csharp theme={null}
public virtual bool Assigned { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_ModuleLicenseLink_CanAssign" /> CanAssign

Can a specific user assign this module license

```csharp theme={null}
public virtual bool CanAssign { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_ModuleLicenseLink_Description" /> Description

The description of the module license

```csharp theme={null}
public virtual string Description { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ModuleLicenseLink_ExtraFlags" /> ExtraFlags

License flags. 1 = user plan

```csharp theme={null}
public virtual int ExtraFlags { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ModuleLicenseLink_Free" /> Free

The number of licenses that are free to be assigned

```csharp theme={null}
public virtual int Free { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ModuleLicenseLink_InUse" /> InUse

The total number of licenses (of a given license module) that are occupied

```csharp theme={null}
public virtual int InUse { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ModuleLicenseLink_IsHidden" /> IsHidden

Is hidden from UI

```csharp theme={null}
public virtual bool IsHidden { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_ModuleLicenseLink_ModuleLicenseId" /> ModuleLicenseId

The identifier of the module license

```csharp theme={null}
public virtual int ModuleLicenseId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ModuleLicenseLink_Name" /> Name

The name of the module license

```csharp theme={null}
public virtual string Name { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ModuleLicenseLink_PrerequisiteModuleName" /> PrerequisiteModuleName

Name of module that must be active for this license to be used.

```csharp theme={null}
public virtual string PrerequisiteModuleName { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ModuleLicenseLink_SortOrder" /> SortOrder

Sort order of licenses.

```csharp theme={null}
public virtual int SortOrder { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ModuleLicenseLink_Tooltip" /> Tooltip

The tooltip to be shown in some gui with details on the module license

```csharp theme={null}
public virtual string Tooltip { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ModuleLicenseLink_Total" /> Total

The total number of module licenses. In other words the number of free license added to the number of licenses in use equals the total number of licenses

```csharp theme={null}
public virtual int Total { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ModuleLicenseLink_Unrestricted" /> Unrestricted

Is this module license restricted or unrestricted

```csharp theme={null}
public virtual bool Unrestricted { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

## See Also

[LicenseAgent](SuperOffice.WebApi.Agents.LicenseAgent.md)


## Related topics

- [SuperOffice.WebApi.Data.LicenseOwner](/en/api/reference/webapi/SuperOffice.WebApi.Data.LicenseOwner.md)
- [SuperOffice.WebApi.Agents.LicenseAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.LicenseAgent.md)
- [SuperOffice.WebApi.Agents.ILicenseAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.ILicenseAgent.md)
- [SuperOffice.WebApi.Data.ModuleLicense](/en/api/reference/webapi/SuperOffice.WebApi.Data.ModuleLicense.md)
- [SuperOffice.WebApi.Data.License GetModuleLicenseFromDBRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.License_GetModuleLicenseFromDBRequest.md)
- [SuperOffice.WebApi.Data.License GetModuleLicenseHistoryFromLicenseServerRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.License_GetModuleLicenseHistoryFromLicenseServerRequest.md)
