src/lib/service/capabilities/capabilities.model.ts
Properties |
bpm |
bpm:
|
Type : boolean
|
Whether or not the backend supports the BPM capability. (everything related to workflows) |
favorites |
favorites:
|
Type : boolean
|
Whether or not the backend supports the favorite capability. |
followup |
followup:
|
Type : boolean
|
Whether or not the backend supports the handling of follow ups. |
inbox |
inbox:
|
Type : boolean
|
Whether or not the backend supports the inbox capability. (virtual: true if either bpm, followup or subscription is set) |
intray |
intray:
|
Type : boolean
|
Whether or not the backend supports the intray capability. |
notifications |
notifications:
|
Type : boolean
|
Whether or not the backend supports the notifications capability. (virtual: true if either followup or subscription is set) |
recyclebin |
recyclebin:
|
Type : boolean
|
Whether or not the recyclebin will keep deleted objects. |
signing |
signing:
|
Type : boolean
|
Optional |
Whether or not signing documents is supported |
storedqueries |
storedqueries:
|
Type : boolean
|
Whether or not the backend supports Stored Queries. |
subscription |
subscription:
|
Type : boolean
|
Whether or not the backend supports the handling of subscriptions. |
template |
template:
|
Type : boolean
|
Whether or not the template option will be shown in the intray. |
export interface Capabilities {
/**
* Whether or not the backend supports the inbox capability.
* (virtual: true if either bpm, followup or subscription is set)
*/
inbox: boolean;
/**
* Whether or not the backend supports the notifications capability.
* (virtual: true if either followup or subscription is set)
*/
notifications: boolean;
/**
* Whether or not the backend supports the BPM capability.
* (everything related to workflows)
*/
bpm: boolean;
/**
* Whether or not the backend supports the favorite capability.
*/
favorites: boolean;
/**
* Whether or not the backend supports the handling of follow ups.
*/
followup: boolean;
/**
* Whether or not the backend supports the handling of subscriptions.
*/
subscription: boolean;
/**
* Whether or not the backend supports the intray capability.
*/
intray: boolean;
/**
* Whether or not the backend supports Stored Queries.
*/
storedqueries: boolean;
/**
* Whether or not the recyclebin will keep deleted objects.
*/
recyclebin: boolean;
/**
* Whether or not the template option will be shown in the intray.
*/
template: boolean;
/**
* Whether or not signing documents is supported
*/
signing?: boolean;
/**
* @ignore
*/
sso: boolean;
}