IAuthorizationError Interface
This API is provided for existing users, but is not recommended for new users.
To use, import via @fluidframework/driver-definitions/legacy
.
For more information about our API support guarantees, see here.
Signature
export interface IAuthorizationError extends IDriverErrorBase
Extends: IDriverErrorBase
Properties
Property | Alerts | Modifiers | Type | Description |
---|---|---|---|---|
claims | Alpha |
optional , readonly |
string | |
errorType | Alpha |
readonly |
typeof DriverErrorTypes.authorizationError | |
tenantId | Alpha |
optional , readonly |
string |
Property Details
claims
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/driver-definitions/alpha
.
For more information about our API support guarantees, see here.
Signature
readonly claims?: string;
Type: string
errorType
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/driver-definitions/alpha
.
For more information about our API support guarantees, see here.
Signature
readonly errorType: typeof DriverErrorTypes.authorizationError;
Type: typeof DriverErrorTypes.authorizationError
tenantId
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/driver-definitions/alpha
.
For more information about our API support guarantees, see here.
Signature
readonly tenantId?: string;
Type: string