INPUT_OBJECT

SubvoucherGenerateInput

link GraphQL Schema definition

1input SubvoucherGenerateInput {
2
3# Exactly one input field should be provided
4voucher: VoucherInput!
5
6# Leave out if a list of identifiers is provided
7generateCount: Int
8
9# A code per identifier will be generated
10#
11# Exactly one input field should be provided
12identifiers: SubvoucherGenerateIdentifiersInput
13
14startAt: DateTimeTz!
15
16stopAt: DateTimeTz!
17
18codeLength: Int!
19
20letterCasing: SubvoucherGeneratorCasing!
21
22codeCharacters: String!
23
24codePrefix: String!
25
26codeSuffix: String!
27
28dividerSymbol: String!
29}

link Required by