File tree 1 file changed +30
-0
lines changed
openapi/components/schemas
1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,36 @@ properties:
17
17
enum :
18
18
- subscription-order
19
19
- one-time-order
20
+ acceptanceConditions :
21
+ type : array
22
+ writeOnly : true
23
+ description : Conditions that must be met for the quote to be automatically accepted.
24
+ items :
25
+ type : string
26
+ enum :
27
+ - customer
28
+ - payment
29
+ - organization
30
+ x-enumDescriptions :
31
+ customer : Quote is accepted when the customer accepts the quote.
32
+ payment : Quote is accepted when the customer pays the quote.
33
+ example : ['payment']
34
+ default : ['customer']
35
+ acceptanceFulfillment :
36
+ type : array
37
+ readOnly : true
38
+ description : List of `acceptanceConditions` with fulfillment status.
39
+ items :
40
+ type : object
41
+ properties :
42
+ condition :
43
+ type : string
44
+ enum :
45
+ - customer
46
+ - payment
47
+ - organization
48
+ isFulfilled :
49
+ type : boolean
20
50
status :
21
51
description : Status of the quote.
22
52
type : string
You can’t perform that action at this time.
0 commit comments