INPUT_OBJECT

orderScheduleRequestInput

link GraphQL Schema definition

1input orderScheduleRequestInput {
5
2# The number of times the scheduler tries processing this order if order
3# processing fails.
4attempts: String
10
6# The amount of time, in seconds, before order processing is retried, in case of
7# order processing failure. This parameter must be paired with the attempts
8# parameter.
9delay: String
13
11# Host name responsible for processing an order.
12host: String
16
14# The number of seconds between successive executions of this order.
15interval: String
19
17# Order identifier.
18orderId: String!
23
20# The time at which the first execution of this order should occur in the format
21# YYYY:MM:DD:hh:mm:ss. Only hh:mm:ss is mandatory.
22start: String!
24}

link Required by