Show / Hide Table of Contents

Class CreateUserDetails

Details for creating a new user.

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

Properties

CompartmentId

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

The OCID of the tenancy.

Remarks

Required

Csi

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

CSI associated with the user.

FirstName

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

First name of the user.

Remarks

Required

LastName

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

Last name of the user.

Remarks

Required

OrganizationName

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

Organization of the user.

Phone

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

Contact number of the user.

ProblemType

Declaration
[Required(ErrorMessage = "ProblemType is required.")]
[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.

Remarks

Required

Timezone

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

Timezone of the user.

In this article
Back to top