Show / Hide Table of Contents

Class BuyerInformation

The information related to the buyer of an Offer

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

Properties

AdditionalContacts

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

the additional contacts associated with the buyer

CompanyName

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

the name of the company for the buyer

NoteToBuyer

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

a note the seller can specify for the buyer through a notification email

PrimaryContact

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