Show / Hide Table of Contents

Class MediaAssetDistributionChannelAttachmentSummary

Summary of the MediaAssetDistributionChannelAttachment.

Inheritance
object
MediaAssetDistributionChannelAttachmentSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MediaservicesService.Models
Assembly: OCI.DotNetSDK.Mediaservices.dll
Syntax
public class MediaAssetDistributionChannelAttachmentSummary

Properties

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

Display name for the MediaAssetDistributionChannelAttachment. Does not have to be unique, and it's changeable. Avoid entering confidential information.

DistributionChannelId

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

OCID of associated Distribution Channel.

Remarks

Required

LifecycleState

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

Lifecycle state of the attachment.

Remarks

Required

Locks

Declaration
[JsonProperty(PropertyName = "locks")]
public List<ResourceLock> Locks { get; set; }
Property Value
Type Description
List<ResourceLock>

Locks associated with this resource.

MediaAssetId

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

OCID of associated media asset.

Remarks

Required

MediaWorkflowJobId

Declaration
[JsonProperty(PropertyName = "mediaWorkflowJobId")]
public string MediaWorkflowJobId { get; set; }
Property Value
Type Description
string

The ingest MediaWorkflowJob ID that created this attachment.

MetadataRef

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

The identifier for the metadata.

Remarks

Required

Version

Declaration
[Required(ErrorMessage = "Version is required.")]
[JsonProperty(PropertyName = "version")]
public long? Version { get; set; }
Property Value
Type Description
long?

Version number of the attachment.

Remarks

Required

In this article
Back to top