Class SupportDoc
The model for the supportDoc details.
Inherited Members
Namespace: Oci.MarketplacepublisherService.Models
Assembly: OCI.DotNetSDK.Marketplacepublisher.dll
Syntax
public class SupportDoc
Properties
Code
Declaration
[Required(ErrorMessage = "Code is required.")]
[JsonProperty(PropertyName = "code")]
public string Code { get; set; }
Property Value
Type | Description |
---|---|
string | The code for the supportDoc. |
Remarks
Required
ContentUrl
Declaration
[JsonProperty(PropertyName = "contentUrl")]
public string ContentUrl { get; set; }
Property Value
Type | Description |
---|---|
string | The URL of the specified attachment. |
Description
Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
string | The description of the supportDoc. |
FileName
Declaration
[JsonProperty(PropertyName = "fileName")]
public string FileName { get; set; }
Property Value
Type | Description |
---|---|
string | The file name of the attachment. |
LifecycleState
Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SupportDoc.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type | Description |
---|---|
SupportDoc.LifecycleStateEnum? | The current state for the supportDoc. |
Remarks
Required
MimeType
Declaration
[JsonProperty(PropertyName = "mimeType")]
public string MimeType { get; set; }
Property Value
Type | Description |
---|---|
string | The MIME type of the attachment. |
Name
Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string | The name for the supportDoc. |
Remarks
Required
SupportDocGroup
Declaration
[Required(ErrorMessage = "SupportDocGroup is required.")]
[JsonProperty(PropertyName = "supportDocGroup")]
public string SupportDocGroup { get; set; }
Property Value
Type | Description |
---|---|
string | The supportDoc group for the supportDoc. |
Remarks
Required
TimeCreated
Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | The date and time the supportDoc was created, in the format defined by RFC3339.
|
Remarks
Required
TimeUpdated
Declaration
[Required(ErrorMessage = "TimeUpdated is required.")]
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | The date and time the supportDoc was updated, in the format defined by RFC3339.
|
Remarks
Required