Class Role
Insured person.
public class Role : EditableEntity
- Inheritance
-
Role
- Inherited Members
- Extension Methods
Constructors
Role()
public Role()
Properties
AllowAccessPattern
Pattern containing a regex definition of the allowed paths for this role
public string? AllowAccessPattern { get; set; }
Property Value
ApiKeys
Relationship with users
public List<ApiKey.RoleRef>? ApiKeys { get; set; }
Property Value
DenyAccessPattern
Pattern containing a regex definition of the denied paths for this role
public string? DenyAccessPattern { get; set; }
Property Value
Description
Role description
public string? Description { get; set; }
Property Value
EnforcedFilters
Pattern containing one or more enforced filters for API calls
public string? EnforcedFilters { get; set; }
Property Value
Name
Role name
public string? Name { get; set; }
Property Value
NormalizedRoleName
Normalized role name
public string? NormalizedRoleName { get; set; }
Property Value
Users
Relationship with users
public List<User.RoleRef>? Users { get; set; }