Class JavaLicense
Details about a license type for Java.
Inherited Members
Namespace: Oci.JmsjavadownloadsService.Models
Assembly: OCI.DotNetSDK.Jmsjavadownloads.dll
Syntax
public class JavaLicense
Properties
DisplayName
Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
string | Commonly used name for the license type. |
Remarks
Required
LicenseType
Declaration
[Required(ErrorMessage = "LicenseType is required.")]
[JsonProperty(PropertyName = "licenseType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LicenseType? LicenseType { get; set; }
Property Value
Type | Description |
---|---|
LicenseType? | License Type |
Remarks
Required
LicenseUrl
Declaration
[Required(ErrorMessage = "LicenseUrl is required.")]
[JsonProperty(PropertyName = "licenseUrl")]
public string LicenseUrl { get; set; }
Property Value
Type | Description |
---|---|
string | Publicly accessible license URL containing the detailed terms and conditions. |
Remarks
Required