Show / Hide Table of Contents

Class SupportContact

Contact information to use to get support.

Inheritance
object
SupportContact
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MarketplaceService.Models
Assembly: OCI.DotNetSDK.Marketplace.dll
Syntax
public class SupportContact

Properties

Email

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

The email of the contact.

Name

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

The name of the contact.

Phone

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

The phone number of the contact.

Subject

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

The email subject line to use when contacting support.

In this article
Back to top