Show / Hide Table of Contents

Class AdminUserSummary

IDM admin credentials without password

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

Properties

EmailAddress

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

Admin users email address

Remarks

Required

FirstName

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

Admin users first name

Remarks

Required

LastName

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

Admin users last name

Remarks

Required

Username

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

Admin username

Remarks

Required

In this article
Back to top