@gooday_corp/gooday-api-client 1.2.109-beta → 1.2.109
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/api.ts +24 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -6119,6 +6119,30 @@ export interface StripeSetupIntentPaymentResponse {
|
|
|
6119
6119
|
* @memberof StripeSetupIntentPaymentResponse
|
|
6120
6120
|
*/
|
|
6121
6121
|
'customer': string;
|
|
6122
|
+
/**
|
|
6123
|
+
*
|
|
6124
|
+
* @type {string}
|
|
6125
|
+
* @memberof StripeSetupIntentPaymentResponse
|
|
6126
|
+
*/
|
|
6127
|
+
'subscriptionId'?: string;
|
|
6128
|
+
/**
|
|
6129
|
+
*
|
|
6130
|
+
* @type {number}
|
|
6131
|
+
* @memberof StripeSetupIntentPaymentResponse
|
|
6132
|
+
*/
|
|
6133
|
+
'price'?: number;
|
|
6134
|
+
/**
|
|
6135
|
+
*
|
|
6136
|
+
* @type {string}
|
|
6137
|
+
* @memberof StripeSetupIntentPaymentResponse
|
|
6138
|
+
*/
|
|
6139
|
+
'frequency'?: string;
|
|
6140
|
+
/**
|
|
6141
|
+
*
|
|
6142
|
+
* @type {string}
|
|
6143
|
+
* @memberof StripeSetupIntentPaymentResponse
|
|
6144
|
+
*/
|
|
6145
|
+
'currency'?: string;
|
|
6122
6146
|
}
|
|
6123
6147
|
/**
|
|
6124
6148
|
*
|