We are working with providing additional information about the type of license for our end to end logging and monitoring tool Nodinite. We have a problem identifying definition for the LicenceType Enum?
Microsoft documentation does not provide any values for the enum:
/// <summary>
/// Type of license, such as Professional, Standard, or Suite.
/// </summary>
[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("licensetype")]
public System.Nullable<System.Guid> LicenseType
{
get
{
return this.GetAttributeValue<System.Nullable<System.Guid>>("licensetype");
}
set
{
this.OnPropertyChanging("LicenseType");
this.SetAttributeValue("licensetype", value);
this.OnPropertyChanged("LicenseType");
}
}
These are the unique values for the users in the Dynamics 365 (CRM) instance UserLicenseType: -1, 3, 6, 7, 11, 20, 30