Show / Hide Table of Contents

Class OfferInternalDetail

the internal details of an offer that are only visible to the seller

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

Properties

CustomFields

Declaration
[Required(ErrorMessage = "CustomFields is required.")]
[JsonProperty(PropertyName = "customFields")]
public List<CustomField> CustomFields { get; set; }
Property Value
Type Description
List<CustomField>

A list of key value pairs specified by the seller

Remarks

Required

InternalNotes

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

Internal notes only intended for the Publisher of the Offer

Remarks

Required

In this article
Back to top