INPUT_OBJECT
UpdateApprovalProcessInput
link GraphQL Schema definition
- input UpdateApprovalProcessInput {
- # Optional client-supplied identifier passed on a mutation input and echoed back
- # unchanged on its payload, so a client can correlate the response with its
- # request (Relay convention).
- : String
- # Unique identifier of entity.
- : ID!
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Free-text description shown alongside the approval process.
- : String
- # When true, the approval process actively raises approvals on matching record
- # events; when false, the process is paused.
- : Boolean
- # Timestamp of the most recent change to settings.
- : DateTime
- # Timestamp of the most recent change to is_enabled.
- : DateTime
- # Name of the entity and its default text representation.
- : String
- # Id of the owning user.
- : ID
- # Approval process schema as a JSON object conforming to the ApprovalProcessSchema
- # type — trigger, filter, approver settings, and approve/reject nodes. Validated
- # on write. Full structure:
- # https://graphql.api-doc.pipelinersales.com/latest/graphql/space/approvalprocessschema.doc.html
- : JSONString
- # Files attached to the approval process (e.g. process documentation).
- : [CreateCloudObjectRelationNoBackrefInput!]
- }