File

src/lib/service/capabilities/capabilities.model.ts

Index

Properties

Properties

bpm
bpm: boolean
Type : boolean

Whether or not the backend supports the BPM capability. (everything related to workflows)

favorites
favorites: boolean
Type : boolean

Whether or not the backend supports the favorite capability.

followup
followup: boolean
Type : boolean

Whether or not the backend supports the handling of follow ups.

inbox
inbox: boolean
Type : boolean

Whether or not the backend supports the inbox capability. (virtual: true if either bpm, followup or subscription is set)

intray
intray: boolean
Type : boolean

Whether or not the backend supports the intray capability.

notifications
notifications: boolean
Type : boolean

Whether or not the backend supports the notifications capability. (virtual: true if either followup or subscription is set)

recyclebin
recyclebin: boolean
Type : boolean

Whether or not the recyclebin will keep deleted objects.

signing
signing: boolean
Type : boolean
Optional

Whether or not signing documents is supported

storedqueries
storedqueries: boolean
Type : boolean

Whether or not the backend supports Stored Queries.

subscription
subscription: boolean
Type : boolean

Whether or not the backend supports the handling of subscriptions.

template
template: boolean
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;
}

results matching ""

    No results matching ""