@chevre/factory 4.259.0-alpha.4 → 4.259.0-alpha.5
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.
|
@@ -118,11 +118,25 @@ export interface IConfirmParams {
|
|
|
118
118
|
*/
|
|
119
119
|
potentialActions?: IPotentialActionsParams;
|
|
120
120
|
}
|
|
121
|
+
export interface IReturnFeesMovieTicket {
|
|
122
|
+
/**
|
|
123
|
+
* 決済カードコード
|
|
124
|
+
*/
|
|
125
|
+
identifier: string;
|
|
126
|
+
/**
|
|
127
|
+
* 着券取消実行有無
|
|
128
|
+
*/
|
|
129
|
+
returnFees: ReturnFeesEnumeration.FreeReturn | ReturnFeesEnumeration.ReturnFeesCustomerResponsibility;
|
|
130
|
+
}
|
|
121
131
|
/**
|
|
122
132
|
* 取引に適用される返品ポリシー
|
|
123
133
|
*/
|
|
124
134
|
export declare type IReturnPolicy = Pick<IMerchantReturnPolicy, 'typeOf' | 'merchantReturnDays' | 'restockingFee' | 'returnFees'> & {
|
|
125
135
|
returnFees: ReturnFeesEnumeration;
|
|
136
|
+
/**
|
|
137
|
+
* 決済カードコードごとの着券取消実行有無
|
|
138
|
+
*/
|
|
139
|
+
returnFeesMovieTicket?: IReturnFeesMovieTicket[];
|
|
126
140
|
};
|
|
127
141
|
/**
|
|
128
142
|
* 取引対象物
|