@emilgroup/payment-sdk 1.14.1-beta.54 → 1.14.1-beta.56
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/.openapi-generator/FILES +6 -0
- package/README.md +2 -2
- package/api/billing-addresses-api.ts +571 -0
- package/api.ts +2 -0
- package/dist/api/billing-addresses-api.d.ts +327 -0
- package/dist/api/billing-addresses-api.js +543 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/models/billing-address-class.d.ts +108 -0
- package/dist/models/billing-address-class.js +15 -0
- package/dist/models/create-billing-address-request-dto.d.ts +72 -0
- package/dist/models/create-billing-address-request-dto.js +15 -0
- package/dist/models/create-billing-address-response-class.d.ts +25 -0
- package/dist/models/create-billing-address-response-class.js +15 -0
- package/dist/models/get-billing-address-response-class.d.ts +25 -0
- package/dist/models/get-billing-address-response-class.js +15 -0
- package/dist/models/index.d.ts +5 -0
- package/dist/models/index.js +5 -0
- package/dist/models/list-billing-addresses-response-class.d.ts +43 -0
- package/dist/models/list-billing-addresses-response-class.js +15 -0
- package/models/billing-address-class.ts +114 -0
- package/models/create-billing-address-request-dto.ts +78 -0
- package/models/create-billing-address-response-class.ts +31 -0
- package/models/get-billing-address-response-class.ts +31 -0
- package/models/index.ts +5 -0
- package/models/list-billing-addresses-response-class.ts +49 -0
- package/package.json +1 -1
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface BillingAddressClass
|
|
16
|
+
*/
|
|
17
|
+
export interface BillingAddressClass {
|
|
18
|
+
/**
|
|
19
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof BillingAddressClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier for the object.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof BillingAddressClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
* First name
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof BillingAddressClass
|
|
34
|
+
*/
|
|
35
|
+
'firstName': string;
|
|
36
|
+
/**
|
|
37
|
+
* Last name
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof BillingAddressClass
|
|
40
|
+
*/
|
|
41
|
+
'lastName': string;
|
|
42
|
+
/**
|
|
43
|
+
* Street name
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof BillingAddressClass
|
|
46
|
+
*/
|
|
47
|
+
'street': string;
|
|
48
|
+
/**
|
|
49
|
+
* House number
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof BillingAddressClass
|
|
52
|
+
*/
|
|
53
|
+
'houseNumber': string;
|
|
54
|
+
/**
|
|
55
|
+
* ZIP code
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof BillingAddressClass
|
|
58
|
+
*/
|
|
59
|
+
'zipCode': string;
|
|
60
|
+
/**
|
|
61
|
+
* City
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof BillingAddressClass
|
|
64
|
+
*/
|
|
65
|
+
'city': string;
|
|
66
|
+
/**
|
|
67
|
+
* Country code
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof BillingAddressClass
|
|
70
|
+
*/
|
|
71
|
+
'countryCode'?: string;
|
|
72
|
+
/**
|
|
73
|
+
* Unique identifier of the account that this object belongs to.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof BillingAddressClass
|
|
76
|
+
*/
|
|
77
|
+
'accountCode': string;
|
|
78
|
+
/**
|
|
79
|
+
* Unique identifier of the partner that this object belongs to.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof BillingAddressClass
|
|
82
|
+
*/
|
|
83
|
+
'partnerCode': string;
|
|
84
|
+
/**
|
|
85
|
+
* Time at which the object was created.
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof BillingAddressClass
|
|
88
|
+
*/
|
|
89
|
+
'createdAt': string;
|
|
90
|
+
/**
|
|
91
|
+
* Time at which the object was updated.
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof BillingAddressClass
|
|
94
|
+
*/
|
|
95
|
+
'updatedAt': string;
|
|
96
|
+
/**
|
|
97
|
+
* Identifier of the user who created the record.
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof BillingAddressClass
|
|
100
|
+
*/
|
|
101
|
+
'createdBy': string;
|
|
102
|
+
/**
|
|
103
|
+
* Identifier of the user who last updated the record.
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof BillingAddressClass
|
|
106
|
+
*/
|
|
107
|
+
'updatedBy': string;
|
|
108
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CreateBillingAddressRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateBillingAddressRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* First name
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateBillingAddressRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'firstName': string;
|
|
24
|
+
/**
|
|
25
|
+
* Last name
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateBillingAddressRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'lastName': string;
|
|
30
|
+
/**
|
|
31
|
+
* Street name
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateBillingAddressRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'street': string;
|
|
36
|
+
/**
|
|
37
|
+
* House number
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateBillingAddressRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'houseNumber': string;
|
|
42
|
+
/**
|
|
43
|
+
* ZIP code
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreateBillingAddressRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'zipCode': string;
|
|
48
|
+
/**
|
|
49
|
+
* City
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CreateBillingAddressRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'city': string;
|
|
54
|
+
/**
|
|
55
|
+
* Country code
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CreateBillingAddressRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'countryCode'?: string;
|
|
60
|
+
/**
|
|
61
|
+
* Unique identifier of the account that this object belongs to.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof CreateBillingAddressRequestDto
|
|
64
|
+
*/
|
|
65
|
+
'accountCode'?: string;
|
|
66
|
+
/**
|
|
67
|
+
* Unique identifier of the partner that this object belongs to.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof CreateBillingAddressRequestDto
|
|
70
|
+
*/
|
|
71
|
+
'partnerCode'?: string;
|
|
72
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { BillingAddressClass } from './billing-address-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateBillingAddressResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateBillingAddressResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The created billing address
|
|
21
|
+
* @type {BillingAddressClass}
|
|
22
|
+
* @memberof CreateBillingAddressResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'billingAddress': BillingAddressClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { BillingAddressClass } from './billing-address-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetBillingAddressResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetBillingAddressResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The billing address
|
|
21
|
+
* @type {BillingAddressClass}
|
|
22
|
+
* @memberof GetBillingAddressResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'billingAddress': BillingAddressClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
package/dist/models/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from './bank-transaction-class';
|
|
|
7
7
|
export * from './bank-transaction-class-without-expand-properties';
|
|
8
8
|
export * from './bank-transaction-invoice-class';
|
|
9
9
|
export * from './bank-transfer-dto';
|
|
10
|
+
export * from './billing-address-class';
|
|
10
11
|
export * from './billing-address-dto';
|
|
11
12
|
export * from './billing-profile-dto';
|
|
12
13
|
export * from './billing-profile-limited-response-dto';
|
|
@@ -21,6 +22,8 @@ export * from './create-bank-account-request-dto';
|
|
|
21
22
|
export * from './create-bank-account-response-class';
|
|
22
23
|
export * from './create-bank-order-request-dto';
|
|
23
24
|
export * from './create-bank-order-response-class';
|
|
25
|
+
export * from './create-billing-address-request-dto';
|
|
26
|
+
export * from './create-billing-address-response-class';
|
|
24
27
|
export * from './create-credit-allocation-request-dto';
|
|
25
28
|
export * from './create-credit-allocation-response-class';
|
|
26
29
|
export * from './create-payment-method-response-class';
|
|
@@ -48,6 +51,7 @@ export * from './generate-invoice-match-suggestions-response-class';
|
|
|
48
51
|
export * from './get-bank-account-response-class';
|
|
49
52
|
export * from './get-bank-order-response-class';
|
|
50
53
|
export * from './get-bank-transactions-response-class';
|
|
54
|
+
export * from './get-billing-address-response-class';
|
|
51
55
|
export * from './get-credit-allocation-response-class';
|
|
52
56
|
export * from './get-exceeding-credit-response-class';
|
|
53
57
|
export * from './get-payment-method-response-class';
|
|
@@ -74,6 +78,7 @@ export * from './link-bank-transactions-response-class';
|
|
|
74
78
|
export * from './list-bank-accounts-response-class';
|
|
75
79
|
export * from './list-bank-orders-response-class';
|
|
76
80
|
export * from './list-bank-transactions-response-class';
|
|
81
|
+
export * from './list-billing-addresses-response-class';
|
|
77
82
|
export * from './list-credit-allocations-response-class';
|
|
78
83
|
export * from './list-exceeding-credits-response-class';
|
|
79
84
|
export * from './list-payment-methods-response-class';
|
package/dist/models/index.js
CHANGED
|
@@ -23,6 +23,7 @@ __exportStar(require("./bank-transaction-class"), exports);
|
|
|
23
23
|
__exportStar(require("./bank-transaction-class-without-expand-properties"), exports);
|
|
24
24
|
__exportStar(require("./bank-transaction-invoice-class"), exports);
|
|
25
25
|
__exportStar(require("./bank-transfer-dto"), exports);
|
|
26
|
+
__exportStar(require("./billing-address-class"), exports);
|
|
26
27
|
__exportStar(require("./billing-address-dto"), exports);
|
|
27
28
|
__exportStar(require("./billing-profile-dto"), exports);
|
|
28
29
|
__exportStar(require("./billing-profile-limited-response-dto"), exports);
|
|
@@ -37,6 +38,8 @@ __exportStar(require("./create-bank-account-request-dto"), exports);
|
|
|
37
38
|
__exportStar(require("./create-bank-account-response-class"), exports);
|
|
38
39
|
__exportStar(require("./create-bank-order-request-dto"), exports);
|
|
39
40
|
__exportStar(require("./create-bank-order-response-class"), exports);
|
|
41
|
+
__exportStar(require("./create-billing-address-request-dto"), exports);
|
|
42
|
+
__exportStar(require("./create-billing-address-response-class"), exports);
|
|
40
43
|
__exportStar(require("./create-credit-allocation-request-dto"), exports);
|
|
41
44
|
__exportStar(require("./create-credit-allocation-response-class"), exports);
|
|
42
45
|
__exportStar(require("./create-payment-method-response-class"), exports);
|
|
@@ -64,6 +67,7 @@ __exportStar(require("./generate-invoice-match-suggestions-response-class"), exp
|
|
|
64
67
|
__exportStar(require("./get-bank-account-response-class"), exports);
|
|
65
68
|
__exportStar(require("./get-bank-order-response-class"), exports);
|
|
66
69
|
__exportStar(require("./get-bank-transactions-response-class"), exports);
|
|
70
|
+
__exportStar(require("./get-billing-address-response-class"), exports);
|
|
67
71
|
__exportStar(require("./get-credit-allocation-response-class"), exports);
|
|
68
72
|
__exportStar(require("./get-exceeding-credit-response-class"), exports);
|
|
69
73
|
__exportStar(require("./get-payment-method-response-class"), exports);
|
|
@@ -90,6 +94,7 @@ __exportStar(require("./link-bank-transactions-response-class"), exports);
|
|
|
90
94
|
__exportStar(require("./list-bank-accounts-response-class"), exports);
|
|
91
95
|
__exportStar(require("./list-bank-orders-response-class"), exports);
|
|
92
96
|
__exportStar(require("./list-bank-transactions-response-class"), exports);
|
|
97
|
+
__exportStar(require("./list-billing-addresses-response-class"), exports);
|
|
93
98
|
__exportStar(require("./list-credit-allocations-response-class"), exports);
|
|
94
99
|
__exportStar(require("./list-exceeding-credits-response-class"), exports);
|
|
95
100
|
__exportStar(require("./list-payment-methods-response-class"), exports);
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { BillingAddressClass } from './billing-address-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListBillingAddressesResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListBillingAddressesResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The billing addresses
|
|
21
|
+
* @type {Array<BillingAddressClass>}
|
|
22
|
+
* @memberof ListBillingAddressesResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<BillingAddressClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListBillingAddressesResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
/**
|
|
32
|
+
* Items per page
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListBillingAddressesResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage': number;
|
|
37
|
+
/**
|
|
38
|
+
* Total items
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ListBillingAddressesResponseClass
|
|
41
|
+
*/
|
|
42
|
+
'totalItems': number;
|
|
43
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface BillingAddressClass
|
|
21
|
+
*/
|
|
22
|
+
export interface BillingAddressClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof BillingAddressClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier for the object.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof BillingAddressClass
|
|
33
|
+
*/
|
|
34
|
+
'code': string;
|
|
35
|
+
/**
|
|
36
|
+
* First name
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof BillingAddressClass
|
|
39
|
+
*/
|
|
40
|
+
'firstName': string;
|
|
41
|
+
/**
|
|
42
|
+
* Last name
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof BillingAddressClass
|
|
45
|
+
*/
|
|
46
|
+
'lastName': string;
|
|
47
|
+
/**
|
|
48
|
+
* Street name
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof BillingAddressClass
|
|
51
|
+
*/
|
|
52
|
+
'street': string;
|
|
53
|
+
/**
|
|
54
|
+
* House number
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof BillingAddressClass
|
|
57
|
+
*/
|
|
58
|
+
'houseNumber': string;
|
|
59
|
+
/**
|
|
60
|
+
* ZIP code
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof BillingAddressClass
|
|
63
|
+
*/
|
|
64
|
+
'zipCode': string;
|
|
65
|
+
/**
|
|
66
|
+
* City
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof BillingAddressClass
|
|
69
|
+
*/
|
|
70
|
+
'city': string;
|
|
71
|
+
/**
|
|
72
|
+
* Country code
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof BillingAddressClass
|
|
75
|
+
*/
|
|
76
|
+
'countryCode'?: string;
|
|
77
|
+
/**
|
|
78
|
+
* Unique identifier of the account that this object belongs to.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof BillingAddressClass
|
|
81
|
+
*/
|
|
82
|
+
'accountCode': string;
|
|
83
|
+
/**
|
|
84
|
+
* Unique identifier of the partner that this object belongs to.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof BillingAddressClass
|
|
87
|
+
*/
|
|
88
|
+
'partnerCode': string;
|
|
89
|
+
/**
|
|
90
|
+
* Time at which the object was created.
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof BillingAddressClass
|
|
93
|
+
*/
|
|
94
|
+
'createdAt': string;
|
|
95
|
+
/**
|
|
96
|
+
* Time at which the object was updated.
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof BillingAddressClass
|
|
99
|
+
*/
|
|
100
|
+
'updatedAt': string;
|
|
101
|
+
/**
|
|
102
|
+
* Identifier of the user who created the record.
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof BillingAddressClass
|
|
105
|
+
*/
|
|
106
|
+
'createdBy': string;
|
|
107
|
+
/**
|
|
108
|
+
* Identifier of the user who last updated the record.
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof BillingAddressClass
|
|
111
|
+
*/
|
|
112
|
+
'updatedBy': string;
|
|
113
|
+
}
|
|
114
|
+
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CreateBillingAddressRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateBillingAddressRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* First name
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateBillingAddressRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'firstName': string;
|
|
29
|
+
/**
|
|
30
|
+
* Last name
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateBillingAddressRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'lastName': string;
|
|
35
|
+
/**
|
|
36
|
+
* Street name
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreateBillingAddressRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'street': string;
|
|
41
|
+
/**
|
|
42
|
+
* House number
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CreateBillingAddressRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'houseNumber': string;
|
|
47
|
+
/**
|
|
48
|
+
* ZIP code
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CreateBillingAddressRequestDto
|
|
51
|
+
*/
|
|
52
|
+
'zipCode': string;
|
|
53
|
+
/**
|
|
54
|
+
* City
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CreateBillingAddressRequestDto
|
|
57
|
+
*/
|
|
58
|
+
'city': string;
|
|
59
|
+
/**
|
|
60
|
+
* Country code
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CreateBillingAddressRequestDto
|
|
63
|
+
*/
|
|
64
|
+
'countryCode'?: string;
|
|
65
|
+
/**
|
|
66
|
+
* Unique identifier of the account that this object belongs to.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof CreateBillingAddressRequestDto
|
|
69
|
+
*/
|
|
70
|
+
'accountCode'?: string;
|
|
71
|
+
/**
|
|
72
|
+
* Unique identifier of the partner that this object belongs to.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof CreateBillingAddressRequestDto
|
|
75
|
+
*/
|
|
76
|
+
'partnerCode'?: string;
|
|
77
|
+
}
|
|
78
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { BillingAddressClass } from './billing-address-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateBillingAddressResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateBillingAddressResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The created billing address
|
|
26
|
+
* @type {BillingAddressClass}
|
|
27
|
+
* @memberof CreateBillingAddressResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'billingAddress': BillingAddressClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { BillingAddressClass } from './billing-address-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetBillingAddressResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetBillingAddressResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The billing address
|
|
26
|
+
* @type {BillingAddressClass}
|
|
27
|
+
* @memberof GetBillingAddressResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'billingAddress': BillingAddressClass;
|
|
30
|
+
}
|
|
31
|
+
|