Show / Hide Table of Contents

Class Contact

Contact details for the customer. Avoid entering confidential information.

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.CimsService.Models
Assembly: OCI.DotNetSDK.Cims.dll
Syntax
public class Contact

Properties

ContactEmail

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

The email of the contact person.

ContactName

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

The name of the contact person.

ContactPhone

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

The phone number of the contact person.

ContactType

Declaration
[JsonProperty(PropertyName = "contactType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Contact.ContactTypeEnum? ContactType { get; set; }
Property Value
Type Description
Contact.ContactTypeEnum?

The type of contact, such as primary or alternate.

Email

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

The email of the contact person.

In this article
Back to top