Show / Hide Table of Contents

Class QuoteAttachmentSummary

Summary of offer quote attachment.

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

Properties

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

DisplayName

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

The name used to refer to the uploaded data.

Remarks

Required

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

Id

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

Unique identifier that is immutable on creation.

Remarks

Required

IsvCompartmentId

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

OCID of the ISV's tenancy (root compartment).

LifecycleDetails

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

Provides detailed information about the current state of the offer quote attachment. For example, if the offer quote attachment is in a failed state this message can include specific validation errors.

LifecycleState

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

The current state of the offer quote attachment.

Remarks

Required

MimeType

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

The MIME type of the uploaded data.

OfferQuoteId

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

Unique identifier of the associated offer quote that is immutable on creation.

Remarks

Required

Recipient

Declaration
[JsonProperty(PropertyName = "recipient")]
[JsonConverter(typeof(StringEnumConverter))]
public QuoteAttachment.RecipientEnum? Recipient { get; set; }
Property Value
Type Description
QuoteAttachment.RecipientEnum?

The current state of the offer quote attachment.

ResellerCompartmentId

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

OCID of the reseller's tenancy (root compartment).

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time the offer quote attachment was created. An RFC3339 formatted datetime string.

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The time the offer quote attachment was updated. An RFC3339 formatted datetime string.

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(StringEnumConverter))]
public QuoteAttachment.TypeEnum? Type { get; set; }
Property Value
Type Description
QuoteAttachment.TypeEnum?

The type of offer quote attachment.

Remarks

Required

In this article
Back to top