Show / Hide Table of Contents

Class OfferQuote

The model for the offer quote details.

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

Properties

BuyerAcceptanceDeadline

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

The time the offer for the buyer must be accepted by before the offer becomes invalid. An RFC3339 formatted datetime string.

BuyerCompartmentIds

Declaration
[JsonProperty(PropertyName = "buyerCompartmentIds")]
public List<string> BuyerCompartmentIds { get; set; }
Property Value
Type Description
List<string>

A list of buyer tenancies.

BuyerOfferDuration

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

Duration the offer for the buyer will be active after its start date. An ISO8601 extended formatted string.

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"}}

Description

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

The description of the offer quote.

DisplayName

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

Offer quote identifier, can be renamed.

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 tenancy.

IsvInformation

Declaration
[JsonProperty(PropertyName = "isvInformation")]
public IsvInformation IsvInformation { get; set; }
Property Value
Type Description
IsvInformation

IsvPublisherDisplayName

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

Display name of the ISV publisher.

IsvPublisherId

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

Publisher identifier of the ISV.

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. For example, if the offer quote is in a failed state this message can include specific validation errors.

LifecycleState

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

The current state of the offer quote.

Remarks

Required

OfferQuoteStatus

Declaration
[JsonProperty(PropertyName = "offerQuoteStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OfferQuote.OfferQuoteStatusEnum? OfferQuoteStatus { get; set; }
Property Value
Type Description
OfferQuote.OfferQuoteStatusEnum?

The human readable representation of where the offer quote is at in its contract lifecycle.

Pricing

Declaration
[JsonProperty(PropertyName = "pricing")]
public Pricing Pricing { get; set; }
Property Value
Type Description
Pricing

ResellerCompartmentId

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

OCID of the reseller tenancy.

Remarks

Required

ResellerInformation

Declaration
[JsonProperty(PropertyName = "resellerInformation")]
public ResellerInformation ResellerInformation { get; set; }
Property Value
Type Description
ResellerInformation

ResellerPublisherDisplayName

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

Display name of the reseller publisher.

ResourceBundles

Declaration
[JsonProperty(PropertyName = "resourceBundles")]
public List<ResourceBundle> ResourceBundles { get; set; }
Property Value
Type Description
List<ResourceBundle>

A list of resource bundles associated with an offer quote.

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
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

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

Remarks

Required

TimeUpdated

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

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

In this article
Back to top