Share via


UserBase Constructors

Definition

Overloads

UserBase()

Initializes a new instance of the UserBase class.

UserBase(IDictionary<String,Object>, String, String, String, String, String)

Initializes a new instance of the UserBase class.

UserBase()

Initializes a new instance of the UserBase class.

public UserBase ();
Public Sub New ()

Applies to

UserBase(IDictionary<String,Object>, String, String, String, String, String)

Initializes a new instance of the UserBase class.

public UserBase (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string immutableId = default, string usageLocation = default, string givenName = default, string surname = default, string userType = default);
new Microsoft.Azure.Graph.RBAC.Models.UserBase : System.Collections.Generic.IDictionary<string, obj> * string * string * string * string * string -> Microsoft.Azure.Graph.RBAC.Models.UserBase
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional immutableId As String = Nothing, Optional usageLocation As String = Nothing, Optional givenName As String = Nothing, Optional surname As String = Nothing, Optional userType As String = Nothing)

Parameters

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

immutableId
String

This must be specified if you are using a federated domain for the user's userPrincipalName (UPN) property when creating a new user account. It is used to associate an on-premises Active Directory user account with their Azure AD user object.

usageLocation
String

A two letter country code (ISO standard 3166). Required for users that will be assigned licenses due to legal requirement to check for availability of services in countries. Examples include: "US", "JP", and "GB".

givenName
String

The given name for the user.

surname
String

The user's surname (family name or last name).

userType
String

A string value that can be used to classify user types in your directory, such as 'Member' and 'Guest'. Possible values include: 'Member', 'Guest'

Applies to