Interface IUser
Represents an user.
Inherited Members
Namespace: BiExcellence.OpenBi.Api.Commands.Users
Assembly: BiExcellence.OpenBi.Api.User.dll
Syntax
[TableAttribute("USERS")]
public interface IUser : ICustomAttributes
Properties
Birthdate
Gets or sets the birthdate.
Declaration
[ApiField("BIRTHDATE")]
DateTimeOffset? Birthdate { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
City
Gets or sets the city.
Declaration
[ApiField("CITY")]
string? City { get; set; }
Property Value
Type | Description |
---|---|
string |
Company
Gets or sets the company.
Declaration
[ApiField("COMPANY")]
string? Company { get; set; }
Property Value
Type | Description |
---|---|
string |
Country
Gets or sets the country.
Declaration
[ApiField("COUNTRY")]
string? Country { get; set; }
Property Value
Type | Description |
---|---|
string |
Created
Gets the created date.
Declaration
[ApiField("SIGNUPDATE")]
DateTimeOffset? Created { get; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
Department
Gets or sets the department.
Declaration
[ApiField("DEPARTMENT")]
string? Department { get; set; }
Property Value
Type | Description |
---|---|
string |
Gets or sets the email.
Declaration
[ApiField("EMAIL")]
string? Email { get; set; }
Property Value
Type | Description |
---|---|
string |
Fax
Gets or sets the fax.
Declaration
[ApiField("FAX")]
string? Fax { get; set; }
Property Value
Type | Description |
---|---|
string |
Firstname
Gets or sets the firstname.
Declaration
[ApiField("FIRSTNAME")]
string? Firstname { get; set; }
Property Value
Type | Description |
---|---|
string |
Function
Gets or sets the function.
Declaration
[ApiField("FUNCTION")]
string? Function { get; set; }
Property Value
Type | Description |
---|---|
string |
Group
Gets or sets the group.
Declaration
[ApiField("GROUP")]
string? Group { get; set; }
Property Value
Type | Description |
---|---|
string |
Id
Gets the username.
Declaration
[ApiField("USERNAME")]
string Id { get; }
Property Value
Type | Description |
---|---|
string |
IsActive
Gets or sets whether the user is active.
Declaration
[ApiField("ACTIVE")]
bool? IsActive { get; set; }
Property Value
Type | Description |
---|---|
bool? |
IsInitialPassword
Gets or sets whether the password is the initial one which must be changed after the next login. See RequirePasswordChange.
Declaration
[ApiField("INITIAL_PWD")]
bool IsInitialPassword { get; set; }
Property Value
Type | Description |
---|---|
bool |
LastLogon
Gets the last login date.
Declaration
[ApiField("LASTLOGON")]
DateTimeOffset? LastLogon { get; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
Lastname
Gets or sets the lastname.
Declaration
[ApiField("LASTNAME")]
string? Lastname { get; set; }
Property Value
Type | Description |
---|---|
string |
Location
Gets or sets the location.
Declaration
[ApiField("LOCATION")]
string? Location { get; set; }
Property Value
Type | Description |
---|---|
string |
Mobile
Gets or sets the mobile.
Declaration
[ApiField("MOBILE")]
string? Mobile { get; set; }
Property Value
Type | Description |
---|---|
string |
Phone
Gets or sets the phone.
Declaration
[ApiField("PHONE")]
string? Phone { get; set; }
Property Value
Type | Description |
---|---|
string |
Picture
Gets or sets the picture.
Declaration
[ApiField("PROFILEPICTURE")]
byte[]? Picture { get; set; }
Property Value
Type | Description |
---|---|
byte[] |
PostalCode
Gets or sets the postal code.
Declaration
[ApiField("POSTALCODE")]
string? PostalCode { get; set; }
Property Value
Type | Description |
---|---|
string |
Room
Gets or sets the room.
Declaration
[ApiField("ROOM")]
string? Room { get; set; }
Property Value
Type | Description |
---|---|
string |
Salutation
Gets or sets the salutation.
Declaration
[ApiField("SALUTATION")]
string? Salutation { get; set; }
Property Value
Type | Description |
---|---|
string |
Street
Gets or sets the street.
Declaration
[ApiField("STREET")]
string? Street { get; set; }
Property Value
Type | Description |
---|---|
string |
Superior
Gets or sets the superior. (Should be the username of another user.)
Declaration
[ApiField("SUPERIOR")]
string? Superior { get; set; }
Property Value
Type | Description |
---|---|
string |