Class User
Provides information for a report server user.
Inheritance
Inherited Members
Namespace: Telerik.ReportServer.Services.Models
Assembly: Telerik.ReportServer.Services.Models.dll
Syntax
public class User
Constructors
User()
Declaration
public User()
Properties
Specifies the email of the user.
Declaration
public string Email { get; set; }
Property Value
System.String
|
Enabled
Specifies whether the user is enabled or not.
Declaration
public bool Enabled { get; set; }
Property Value
System.Boolean
|
FirstName
Specifies the first name of the user.
Declaration
public string FirstName { get; set; }
Property Value
System.String
|
Id
Specifies the user identifier.
Declaration
public string Id { get; set; }
Property Value
System.String
|
LastName
Specifies the last name of the user.
Declaration
public string LastName { get; set; }
Property Value
System.String
|
Username
Specifies the username of the user.
Declaration
public string Username { get; set; }
Property Value
System.String
|