@otr-app/shared-backend-generated-client 2.4.89 → 2.4.90
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/dist/angular/model/initiateCaseAndChargeCustomerRequest.ts +2 -0
- package/dist/typescript/model/InitiateCaseAndChargeCustomerRequest.d.ts +2 -0
- package/dist/typescript-fetch/models/InitiateCaseAndChargeCustomerRequest.d.ts +12 -0
- package/dist/typescript-fetch/models/InitiateCaseAndChargeCustomerRequest.js +4 -0
- package/package.json +1 -1
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
export interface InitiateCaseAndChargeCustomerRequest {
|
|
15
15
|
cardId?: string;
|
|
16
16
|
paymentPlanType?: InitiateCaseAndChargeCustomerRequest.PaymentPlanTypeEnum;
|
|
17
|
+
priceIds?: Array<string>;
|
|
18
|
+
productId?: string;
|
|
17
19
|
}
|
|
18
20
|
export namespace InitiateCaseAndChargeCustomerRequest {
|
|
19
21
|
export type PaymentPlanTypeEnum = 'ALL_UPFRONT' | 'THREE_PAYMENTS_HALF_FIRST' | 'TWO_PAYMENTS_MONTHLY';
|
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
export interface InitiateCaseAndChargeCustomerRequest {
|
|
13
13
|
"cardId"?: string;
|
|
14
14
|
"paymentPlanType"?: InitiateCaseAndChargeCustomerRequest.PaymentPlanTypeEnum;
|
|
15
|
+
"priceIds"?: Array<string>;
|
|
16
|
+
"productId"?: string;
|
|
15
17
|
}
|
|
16
18
|
export declare namespace InitiateCaseAndChargeCustomerRequest {
|
|
17
19
|
enum PaymentPlanTypeEnum {
|
|
@@ -27,6 +27,18 @@ export interface InitiateCaseAndChargeCustomerRequest {
|
|
|
27
27
|
* @memberof InitiateCaseAndChargeCustomerRequest
|
|
28
28
|
*/
|
|
29
29
|
paymentPlanType?: InitiateCaseAndChargeCustomerRequestPaymentPlanTypeEnum;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {Array<string>}
|
|
33
|
+
* @memberof InitiateCaseAndChargeCustomerRequest
|
|
34
|
+
*/
|
|
35
|
+
priceIds?: Array<string>;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof InitiateCaseAndChargeCustomerRequest
|
|
40
|
+
*/
|
|
41
|
+
productId?: string;
|
|
30
42
|
}
|
|
31
43
|
export declare function InitiateCaseAndChargeCustomerRequestFromJSON(json: any): InitiateCaseAndChargeCustomerRequest;
|
|
32
44
|
export declare function InitiateCaseAndChargeCustomerRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): InitiateCaseAndChargeCustomerRequest;
|
|
@@ -22,6 +22,8 @@ export function InitiateCaseAndChargeCustomerRequestFromJSONTyped(json, ignoreDi
|
|
|
22
22
|
return {
|
|
23
23
|
'cardId': !exists(json, 'cardId') ? undefined : json['cardId'],
|
|
24
24
|
'paymentPlanType': !exists(json, 'paymentPlanType') ? undefined : json['paymentPlanType'],
|
|
25
|
+
'priceIds': !exists(json, 'priceIds') ? undefined : json['priceIds'],
|
|
26
|
+
'productId': !exists(json, 'productId') ? undefined : json['productId'],
|
|
25
27
|
};
|
|
26
28
|
}
|
|
27
29
|
export function InitiateCaseAndChargeCustomerRequestToJSON(value) {
|
|
@@ -34,6 +36,8 @@ export function InitiateCaseAndChargeCustomerRequestToJSON(value) {
|
|
|
34
36
|
return {
|
|
35
37
|
'cardId': value.cardId,
|
|
36
38
|
'paymentPlanType': value.paymentPlanType,
|
|
39
|
+
'priceIds': value.priceIds,
|
|
40
|
+
'productId': value.productId,
|
|
37
41
|
};
|
|
38
42
|
}
|
|
39
43
|
/**
|