Show / Hide Table of Contents

Class SellerInformation

The information related to the seller of an Offer

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

Properties

AdditionalContacts

Declaration
[JsonProperty(PropertyName = "additionalContacts")]
public List<Contact> AdditionalContacts { get; set; }
Property Value
Type Description
List<Contact>

the additional contacts associated with the seller

PrimaryContact

Declaration
[JsonProperty(PropertyName = "primaryContact")]
public Contact PrimaryContact { get; set; }
Property Value
Type Description
Contact
In this article
Back to top