Show / Hide Table of Contents

Class DownloadUrl

Download Url object for the Java artifact.

Inheritance
object
DownloadUrl
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 DownloadUrl

Properties

DownloadUrlProp

Declaration
[Required(ErrorMessage = "DownloadUrlProp is required.")]
[JsonProperty(PropertyName = "downloadUrl")]
public string DownloadUrlProp { get; set; }
Property Value
Type Description
string

The URL for downloading the artifact.

Remarks

Required

DownloadUrlType

Declaration
[Required(ErrorMessage = "DownloadUrlType is required.")]
[JsonProperty(PropertyName = "downloadUrlType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DownloadUrlType? DownloadUrlType { get; set; }
Property Value
Type Description
DownloadUrlType?

The type of download URL.

Remarks

Required

In this article
Back to top