Class LicenseFile
The generic license file.
public sealed class LicenseFile
- Inheritance
-
LicenseFile
- Inherited Members
Properties
Deployment
The deployment.
[JsonPropertyName("deployment")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? Deployment { get; set; }
Property Value
ExpiryAt
The expiry at timestamp.
[JsonPropertyName("expiry_at")]
public DateTimeOffset ExpiryAt { get; set; }
Property Value
Id
The identifier.
[JsonPropertyName("id")]
public string Id { get; set; }
Property Value
IssuedAt
The issued at timestamp.
[JsonPropertyName("issued_at")]
public DateTimeOffset IssuedAt { get; set; }
Property Value
LicenseKey
The license key to check.
[JsonPropertyName("lkey")]
public string LicenseKey { get; set; }
Property Value
Mode
The mode.
[JsonPropertyName("mode")]
public string Mode { get; set; }
Property Value
TenantId
The consumer tenant id.
[JsonPropertyName("tenant_id")]
public string TenantId { get; set; }
Property Value
TenantName
The consumer tenant id.
[JsonPropertyName("tenant_name")]
public string TenantName { get; set; }
Property Value
ValidationKey
The validation public key to check the license LicenseKey.
[JsonPropertyName("vkey")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? ValidationKey { get; set; }