Show / Hide Table of Contents

Class Contact

The contact information of an individual

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

Properties

Email

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

The email of the contact

FirstName

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

The first name of the contact

LastName

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

The last name of the contact

In this article
Back to top