Show / Hide Table of Contents

Class User

Details about the user.

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

Properties

CompartmentId

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

The OCID of the tenancy.

ContactEmail

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

The email of the contact person.

Country

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

The country of the user.

Csi

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

The CSI associated with the user.

FirstName

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

The user's first name.

Key

Declaration
[Required(ErrorMessage = "Key is required.")]
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type Description
string

A unique identifier for the user.

Remarks

Required

LastName

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

The user's last name.

OrganizationName

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

The company that the user belongs to.

Phone

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

The user's contact phone number.

ProblemType

Declaration
[JsonProperty(PropertyName = "problemType")]
[JsonConverter(typeof(StringEnumConverter))]
public ProblemType? ProblemType { get; set; }
Property Value
Type Description
ProblemType?

The kind of support ticket (type of support request). For information about ACCOUNT support tickets, see Creating a Billing Support Request. For information about LIMIT support tickets, see Creating a Service Limit Increase Request. For information about TECH support tickets, see Creating a Technical Support Request.

Timezone

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

The timezone of the user.

In this article
Back to top