Class CreateFusionEnvironmentAdminUserDetails
The credentials for the Fusion Applications service administrator.
Inherited Members
Namespace: Oci.FusionappsService.Models
Assembly: OCI.DotNetSDK.Fusionapps.dll
Syntax
public class CreateFusionEnvironmentAdminUserDetails
Properties
EmailAddress
Declaration
[Required(ErrorMessage = "EmailAddress is required.")]
[JsonProperty(PropertyName = "emailAddress")]
public string EmailAddress { get; set; }
Property Value
Type | Description |
---|---|
string | The email address for the administrator. |
Remarks
Required
FirstName
Declaration
[Required(ErrorMessage = "FirstName is required.")]
[JsonProperty(PropertyName = "firstName")]
public string FirstName { get; set; }
Property Value
Type | Description |
---|---|
string | The administrator's first name. |
Remarks
Required
LastName
Declaration
[Required(ErrorMessage = "LastName is required.")]
[JsonProperty(PropertyName = "lastName")]
public string LastName { get; set; }
Property Value
Type | Description |
---|---|
string | The administrator's last name. |
Remarks
Required
Password
Declaration
[JsonProperty(PropertyName = "password")]
public string Password { get; set; }
Property Value
Type | Description |
---|---|
string | The password for the administrator. |
Username
Declaration
[Required(ErrorMessage = "Username is required.")]
[JsonProperty(PropertyName = "username")]
public string Username { get; set; }
Property Value
Type | Description |
---|---|
string | The username for the administrator. |
Remarks
Required