OBJECT

ProcessScheduleTrigger

link GraphQL Schema definition

  • type ProcessScheduleTrigger implements ScheduleInterface {
  • # Date and time the schedule runs once. Set for a one-time schedule; left empty
  • # for recurring schedules that use the time-of-day and day fields instead.
  • date: DateTime
  • # 0 - 1439
  • timeOfDay: Int
  • # 1 = Monday, 7 = Sunday
  • dayOfWeek: [Int!]
  • # 1 - 31
  • dayOfMonth: [Int!]
  • # Type of record whose changes start this process, such as Lead, Opportunity,
  • # Account or Contact.
  • entityType: EntityNameEnum!
  • # API name of the custom entity that starts this process. Set only when the
  • # trigger entity type is a custom entity.
  • entityApiName: String
  • }