Class CreateLocalUserData
Provides information for creating a new local user.
Inheritance
Inherited Members
Namespace: Telerik.ReportServer.Services.Models
Assembly: Telerik.ReportServer.Services.Models.dll
Syntax
public class CreateLocalUserData
Constructors
CreateLocalUserData()
Declaration
public CreateLocalUserData()
Properties
Specifies the email of the local user.
Declaration
public string Email { get; set; }
Property Value
System.String
|
Enabled
Specifies whether the local user is enabled or disabled.
Declaration
public bool Enabled { get; set; }
Property Value
System.Boolean
|
FirstName
Specifies the first name of the local user.
Declaration
public string FirstName { get; set; }
Property Value
System.String
|
LastName
Specifies the last name of the local user.
Declaration
public string LastName { get; set; }
Property Value
System.String
|
Password
Specifies the password of the local user.
Declaration
public string Password { get; set; }
Property Value
System.String
|
RoleIds
Specifies the IDs which the user is assigned to.
Declaration
public IEnumerable<string> RoleIds { get; set; }
Property Value
System.Collections.Generic.IEnumerable<System.String>
|
Username
Specifies the username of the local user.
Declaration
public string Username { get; set; }
Property Value
System.String
|