Interface IRole
Represents a role.
Inherited Members
Namespace: BiExcellence.OpenBi.Api.Commands.Roles
Assembly: BiExcellence.OpenBi.Api.Role.dll
Syntax
[TableAttribute("ROLES")]
public interface IRole : ICustomAttributes
Properties
Changed
Gets the created date.
Declaration
[ApiField("CREATED")]
DateTimeOffset? Changed { get; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
Description
Gets or sets the description.
Declaration
[ApiField("DESCRIPTION")]
string? Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Id
Gets the id.
Declaration
[ApiField("ID")]
string Id { get; }
Property Value
Type | Description |
---|---|
string |
IsFavorite
Gets or sets whether this is favorite role.
Declaration
[ApiField("ISFAVORITE")]
bool? IsFavorite { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Name
Gets or sets the name.
Declaration
[ApiField("NAME")]
string? Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
Gets or sets the type.
Declaration
[ApiField("TYPE")]
string? Type { get; set; }
Property Value
Type | Description |
---|---|
string |