INTERFACE

ProcessActorInterface

link GraphQL Schema definition

  • interface ProcessActorInterface {
  • # Which users are allowed to start the process: the process owner, selected users
  • # and sales units, any user, or applications only.
  • actor: ProcessRecordTriggerActorEnum!
  • # Sales units whose members are allowed to start the process. Applies when the
  • # actor is restricted to selected units and users.
  • actorUnits: [UUID!]!
  • # Individual users allowed to start the process. Applies when the actor is
  • # restricted to selected units and users.
  • actorUsers: [UUID!]!
  • }