@chevre/factory 4.309.0-alpha.0 → 4.309.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/example/informPayAction.json +117 -0
- package/example/informRefundAction.json +0 -0
- package/lib/task.d.ts +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
{
|
|
2
|
+
"object": [
|
|
3
|
+
{
|
|
4
|
+
"paymentMethod": {
|
|
5
|
+
/**
|
|
6
|
+
* ムビチケリスト
|
|
7
|
+
*/
|
|
8
|
+
"serviceOutput": [
|
|
9
|
+
{
|
|
10
|
+
/**
|
|
11
|
+
* 購入番号
|
|
12
|
+
*/
|
|
13
|
+
"identifier": "2127021398",
|
|
14
|
+
"serviceOutput": {
|
|
15
|
+
/**
|
|
16
|
+
* 予約の価格仕様
|
|
17
|
+
*/
|
|
18
|
+
"priceSpecification": {
|
|
19
|
+
"priceComponent": [
|
|
20
|
+
{
|
|
21
|
+
/**
|
|
22
|
+
* 価格仕様タイプ
|
|
23
|
+
*/
|
|
24
|
+
"typeOf": "UnitPriceSpecification",
|
|
25
|
+
/**
|
|
26
|
+
* 価格
|
|
27
|
+
*/
|
|
28
|
+
"price": 0,
|
|
29
|
+
/**
|
|
30
|
+
* 単価基準数量
|
|
31
|
+
*/
|
|
32
|
+
"referenceQuantity": {
|
|
33
|
+
"typeOf": "QuantitativeValue",
|
|
34
|
+
"value": 1,
|
|
35
|
+
"unitCode": "C62"
|
|
36
|
+
},
|
|
37
|
+
"accounting": {
|
|
38
|
+
/**
|
|
39
|
+
* 売上金額
|
|
40
|
+
*/
|
|
41
|
+
"accountsReceivable": 1400
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
/**
|
|
46
|
+
* 価格仕様タイプ
|
|
47
|
+
*/
|
|
48
|
+
"typeOf": "MovieTicketTypeChargeSpecification",
|
|
49
|
+
/**
|
|
50
|
+
* 価格
|
|
51
|
+
*/
|
|
52
|
+
"price": 0,
|
|
53
|
+
"appliesToMovieTicket": {
|
|
54
|
+
"serviceOutput": {
|
|
55
|
+
/**
|
|
56
|
+
* 適用決済方法区分
|
|
57
|
+
*/
|
|
58
|
+
"typeOf": "MGTicket"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
/**
|
|
64
|
+
* 価格仕様タイプ
|
|
65
|
+
*/
|
|
66
|
+
"typeOf": "CategoryCodeChargeSpecification",
|
|
67
|
+
/**
|
|
68
|
+
* 価格
|
|
69
|
+
*/
|
|
70
|
+
"price": 0
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
/**
|
|
74
|
+
* 価格仕様タイプ
|
|
75
|
+
*/
|
|
76
|
+
"typeOf": "UnitPriceSpecification",
|
|
77
|
+
/**
|
|
78
|
+
* 価格
|
|
79
|
+
*/
|
|
80
|
+
"price": 300,
|
|
81
|
+
/**
|
|
82
|
+
* 単価基準数量
|
|
83
|
+
*/
|
|
84
|
+
"referenceQuantity": {
|
|
85
|
+
"typeOf": "QuantitativeValue",
|
|
86
|
+
"value": 1,
|
|
87
|
+
"unitCode": "C62"
|
|
88
|
+
},
|
|
89
|
+
/**
|
|
90
|
+
* 適用アドオンオファー
|
|
91
|
+
*/
|
|
92
|
+
"appliesToAddOn": []
|
|
93
|
+
}
|
|
94
|
+
]
|
|
95
|
+
},
|
|
96
|
+
/**
|
|
97
|
+
* 予約番号
|
|
98
|
+
*/
|
|
99
|
+
"reservationNumber": "12345",
|
|
100
|
+
"reservedTicket": {
|
|
101
|
+
/**
|
|
102
|
+
* チケットトークン(COAの場合のみ)
|
|
103
|
+
*/
|
|
104
|
+
"ticketToken": "xxxxx"
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
/**
|
|
111
|
+
* 決済方法ID
|
|
112
|
+
*/
|
|
113
|
+
"paymentMethodId": "648829745997954"
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
"typeOf": "PayAction"
|
|
117
|
+
}
|
|
File without changes
|
package/lib/task.d.ts
CHANGED