Show / Hide Table of Contents

Class JavaLicense

Details about a license type for Java.

Inheritance
object
JavaLicense
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

In this article
Back to top