oci-ospgateway 2.10.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/LICENSE.txt +89 -0
- package/NOTICE.txt +1 -0
- package/README.md +22 -0
- package/THIRD_PARTY_LICENSES.txt +1521 -0
- package/index.d.ts +20 -0
- package/index.js +43 -0
- package/index.js.map +1 -0
- package/lib/client.d.ts +99 -0
- package/lib/client.js +477 -0
- package/lib/client.js.map +1 -0
- package/lib/model/address.d.ts +75 -0
- package/lib/model/address.js +53 -0
- package/lib/model/address.js.map +1 -0
- package/lib/model/country.d.ts +41 -0
- package/lib/model/country.js +29 -0
- package/lib/model/country.js.map +1 -0
- package/lib/model/credit-card-payment-detail.d.ts +24 -0
- package/lib/model/credit-card-payment-detail.js +52 -0
- package/lib/model/credit-card-payment-detail.js.map +1 -0
- package/lib/model/currency.d.ts +41 -0
- package/lib/model/currency.js +29 -0
- package/lib/model/currency.js.map +1 -0
- package/lib/model/index.d.ts +40 -0
- package/lib/model/index.js +63 -0
- package/lib/model/index.js.map +1 -0
- package/lib/model/invoice-collection.d.ts +26 -0
- package/lib/model/invoice-collection.js +61 -0
- package/lib/model/invoice-collection.js.map +1 -0
- package/lib/model/invoice-line-collection.d.ts +26 -0
- package/lib/model/invoice-line-collection.js +61 -0
- package/lib/model/invoice-line-collection.js.map +1 -0
- package/lib/model/invoice-line-summary.d.ts +55 -0
- package/lib/model/invoice-line-summary.js +53 -0
- package/lib/model/invoice-line-summary.js.map +1 -0
- package/lib/model/invoice-summary.d.ts +146 -0
- package/lib/model/invoice-summary.js +87 -0
- package/lib/model/invoice-summary.js.map +1 -0
- package/lib/model/invoice.d.ts +139 -0
- package/lib/model/invoice.js +91 -0
- package/lib/model/invoice.js.map +1 -0
- package/lib/model/other-payment-detail.d.ts +24 -0
- package/lib/model/other-payment-detail.js +52 -0
- package/lib/model/other-payment-detail.js.map +1 -0
- package/lib/model/pay-invoice-details.d.ts +33 -0
- package/lib/model/pay-invoice-details.js +29 -0
- package/lib/model/pay-invoice-details.js.map +1 -0
- package/lib/model/pay-invoice-receipt.d.ts +33 -0
- package/lib/model/pay-invoice-receipt.js +29 -0
- package/lib/model/pay-invoice-receipt.js.map +1 -0
- package/lib/model/payment-detail.d.ts +34 -0
- package/lib/model/payment-detail.js +73 -0
- package/lib/model/payment-detail.js.map +1 -0
- package/lib/model/paypal-payment-detail.d.ts +24 -0
- package/lib/model/paypal-payment-detail.js +52 -0
- package/lib/model/paypal-payment-detail.js.map +1 -0
- package/lib/request/download-pdf-content-request.d.ts +38 -0
- package/lib/request/download-pdf-content-request.js +15 -0
- package/lib/request/download-pdf-content-request.js.map +1 -0
- package/lib/request/get-invoice-request.d.ts +38 -0
- package/lib/request/get-invoice-request.js +15 -0
- package/lib/request/get-invoice-request.js.map +1 -0
- package/lib/request/index.d.ts +22 -0
- package/lib/request/index.js +37 -0
- package/lib/request/index.js.map +1 -0
- package/lib/request/list-invoice-lines-request.d.ts +48 -0
- package/lib/request/list-invoice-lines-request.js +15 -0
- package/lib/request/list-invoice-lines-request.js.map +1 -0
- package/lib/request/list-invoices-request.d.ts +129 -0
- package/lib/request/list-invoices-request.js +54 -0
- package/lib/request/list-invoices-request.js.map +1 -0
- package/lib/request/pay-invoice-request.d.ts +58 -0
- package/lib/request/pay-invoice-request.js +15 -0
- package/lib/request/pay-invoice-request.js.map +1 -0
- package/lib/response/download-pdf-content-response.d.ts +30 -0
- package/lib/response/download-pdf-content-response.js +15 -0
- package/lib/response/download-pdf-content-response.js.map +1 -0
- package/lib/response/get-invoice-response.d.ts +29 -0
- package/lib/response/get-invoice-response.js +15 -0
- package/lib/response/get-invoice-response.js.map +1 -0
- package/lib/response/index.d.ts +22 -0
- package/lib/response/index.js +15 -0
- package/lib/response/index.js.map +1 -0
- package/lib/response/list-invoice-lines-response.d.ts +40 -0
- package/lib/response/list-invoice-lines-response.js +15 -0
- package/lib/response/list-invoice-lines-response.js.map +1 -0
- package/lib/response/list-invoices-response.d.ts +36 -0
- package/lib/response/list-invoices-response.js +15 -0
- package/lib/response/list-invoices-response.js.map +1 -0
- package/lib/response/pay-invoice-response.d.ts +29 -0
- package/lib/response/pay-invoice-response.js +15 -0
- package/lib/response/pay-invoice-response.js.map +1 -0
- package/package.json +29 -0
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Billing Center Gateway API
|
|
3
|
+
* This site describes all the Rest endpoints of Billing Center Gateway.
|
|
4
|
+
* OpenAPI spec version: 20191001
|
|
5
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
/**
|
|
15
|
+
* Address details model
|
|
16
|
+
*/
|
|
17
|
+
export interface Address {
|
|
18
|
+
/**
|
|
19
|
+
* Name of the contact person
|
|
20
|
+
*/
|
|
21
|
+
"contactName"?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Name of the customer company
|
|
24
|
+
*/
|
|
25
|
+
"companyName"?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Address line 1
|
|
28
|
+
*/
|
|
29
|
+
"addressLine1"?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Address line 2
|
|
32
|
+
*/
|
|
33
|
+
"addressLine2"?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Address line 3
|
|
36
|
+
*/
|
|
37
|
+
"addressLine3"?: string;
|
|
38
|
+
/**
|
|
39
|
+
* Address line 4
|
|
40
|
+
*/
|
|
41
|
+
"addressLine4"?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Street name
|
|
44
|
+
*/
|
|
45
|
+
"streetName"?: string;
|
|
46
|
+
/**
|
|
47
|
+
* House no
|
|
48
|
+
*/
|
|
49
|
+
"streetNumber"?: string;
|
|
50
|
+
/**
|
|
51
|
+
* Name of the city
|
|
52
|
+
*/
|
|
53
|
+
"city"?: string;
|
|
54
|
+
"country"?: model.Country;
|
|
55
|
+
/**
|
|
56
|
+
* County name
|
|
57
|
+
*/
|
|
58
|
+
"county"?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Name of the state
|
|
61
|
+
*/
|
|
62
|
+
"state"?: string;
|
|
63
|
+
/**
|
|
64
|
+
* ZIP no
|
|
65
|
+
*/
|
|
66
|
+
"postalCode"?: string;
|
|
67
|
+
/**
|
|
68
|
+
* Name of the province
|
|
69
|
+
*/
|
|
70
|
+
"province"?: string;
|
|
71
|
+
}
|
|
72
|
+
export declare namespace Address {
|
|
73
|
+
function getJsonObj(obj: Address): object;
|
|
74
|
+
function getDeserializedJsonObj(obj: Address): object;
|
|
75
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Billing Center Gateway API
|
|
4
|
+
* This site describes all the Rest endpoints of Billing Center Gateway.
|
|
5
|
+
* OpenAPI spec version: 20191001
|
|
6
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15
|
+
if (k2 === undefined) k2 = k;
|
|
16
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
17
|
+
}) : (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
o[k2] = m[k];
|
|
20
|
+
}));
|
|
21
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
22
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
23
|
+
}) : function(o, v) {
|
|
24
|
+
o["default"] = v;
|
|
25
|
+
});
|
|
26
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
27
|
+
if (mod && mod.__esModule) return mod;
|
|
28
|
+
var result = {};
|
|
29
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
30
|
+
__setModuleDefault(result, mod);
|
|
31
|
+
return result;
|
|
32
|
+
};
|
|
33
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
+
exports.Address = void 0;
|
|
35
|
+
const model = __importStar(require("../model"));
|
|
36
|
+
var Address;
|
|
37
|
+
(function (Address) {
|
|
38
|
+
function getJsonObj(obj) {
|
|
39
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
40
|
+
"country": obj.country ? model.Country.getJsonObj(obj.country) : undefined
|
|
41
|
+
});
|
|
42
|
+
return jsonObj;
|
|
43
|
+
}
|
|
44
|
+
Address.getJsonObj = getJsonObj;
|
|
45
|
+
function getDeserializedJsonObj(obj) {
|
|
46
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
47
|
+
"country": obj.country ? model.Country.getDeserializedJsonObj(obj.country) : undefined
|
|
48
|
+
});
|
|
49
|
+
return jsonObj;
|
|
50
|
+
}
|
|
51
|
+
Address.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
52
|
+
})(Address = exports.Address || (exports.Address = {}));
|
|
53
|
+
//# sourceMappingURL=address.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"address.js","sourceRoot":"","sources":["../../../../../lib/ospgateway/lib/model/address.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA8DlC,IAAiB,OAAO,CAqBvB;AArBD,WAAiB,OAAO;IACtB,SAAgB,UAAU,CAAC,GAAY;QACrC,MAAM,OAAO,mCACR,GAAG,GACH;YACD,SAAS,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS;SAC3E,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IATe,kBAAU,aASzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAY;QACjD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,SAAS,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,sBAAsB,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS;SACvF,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IATe,8BAAsB,yBASrC,CAAA;AACH,CAAC,EArBgB,OAAO,GAAP,eAAO,KAAP,eAAO,QAqBvB"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Billing Center Gateway API
|
|
3
|
+
* This site describes all the Rest endpoints of Billing Center Gateway.
|
|
4
|
+
* OpenAPI spec version: 20191001
|
|
5
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* Country details model
|
|
15
|
+
*/
|
|
16
|
+
export interface Country {
|
|
17
|
+
/**
|
|
18
|
+
* Indentifier of the country. This is a DB side unique id which was generated when the entity was created in the table Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
19
|
+
*/
|
|
20
|
+
"countryId"?: number;
|
|
21
|
+
/**
|
|
22
|
+
* Country code in ISO-3166-1 2-letter format
|
|
23
|
+
*/
|
|
24
|
+
"countryCode"?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Name of the country
|
|
27
|
+
*/
|
|
28
|
+
"countryName"?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Language identifier Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
31
|
+
*/
|
|
32
|
+
"languageId"?: number;
|
|
33
|
+
/**
|
|
34
|
+
* Country code in ISO-3166-1 3-letter format
|
|
35
|
+
*/
|
|
36
|
+
"ascii3CountryCode"?: string;
|
|
37
|
+
}
|
|
38
|
+
export declare namespace Country {
|
|
39
|
+
function getJsonObj(obj: Country): object;
|
|
40
|
+
function getDeserializedJsonObj(obj: Country): object;
|
|
41
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Billing Center Gateway API
|
|
4
|
+
* This site describes all the Rest endpoints of Billing Center Gateway.
|
|
5
|
+
* OpenAPI spec version: 20191001
|
|
6
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.Country = void 0;
|
|
16
|
+
var Country;
|
|
17
|
+
(function (Country) {
|
|
18
|
+
function getJsonObj(obj) {
|
|
19
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
20
|
+
return jsonObj;
|
|
21
|
+
}
|
|
22
|
+
Country.getJsonObj = getJsonObj;
|
|
23
|
+
function getDeserializedJsonObj(obj) {
|
|
24
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
25
|
+
return jsonObj;
|
|
26
|
+
}
|
|
27
|
+
Country.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
28
|
+
})(Country = exports.Country || (exports.Country = {}));
|
|
29
|
+
//# sourceMappingURL=country.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"country.js","sourceRoot":"","sources":["../../../../../lib/ospgateway/lib/model/country.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AA+BH,IAAiB,OAAO,CAWvB;AAXD,WAAiB,OAAO;IACtB,SAAgB,UAAU,CAAC,GAAY;QACrC,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,kBAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAY;QACjD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,8BAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,OAAO,GAAP,eAAO,KAAP,eAAO,QAWvB"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Billing Center Gateway API
|
|
3
|
+
* This site describes all the Rest endpoints of Billing Center Gateway.
|
|
4
|
+
* OpenAPI spec version: 20191001
|
|
5
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
/**
|
|
15
|
+
* Credit card Payment related details
|
|
16
|
+
*/
|
|
17
|
+
export interface CreditCardPaymentDetail extends model.PaymentDetail {
|
|
18
|
+
"paymentMethod": string;
|
|
19
|
+
}
|
|
20
|
+
export declare namespace CreditCardPaymentDetail {
|
|
21
|
+
function getJsonObj(obj: CreditCardPaymentDetail, isParentJsonObj?: boolean): object;
|
|
22
|
+
const paymentMethod = "CREDIT_CARD";
|
|
23
|
+
function getDeserializedJsonObj(obj: CreditCardPaymentDetail, isParentJsonObj?: boolean): object;
|
|
24
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Billing Center Gateway API
|
|
4
|
+
* This site describes all the Rest endpoints of Billing Center Gateway.
|
|
5
|
+
* OpenAPI spec version: 20191001
|
|
6
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15
|
+
if (k2 === undefined) k2 = k;
|
|
16
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
17
|
+
}) : (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
o[k2] = m[k];
|
|
20
|
+
}));
|
|
21
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
22
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
23
|
+
}) : function(o, v) {
|
|
24
|
+
o["default"] = v;
|
|
25
|
+
});
|
|
26
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
27
|
+
if (mod && mod.__esModule) return mod;
|
|
28
|
+
var result = {};
|
|
29
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
30
|
+
__setModuleDefault(result, mod);
|
|
31
|
+
return result;
|
|
32
|
+
};
|
|
33
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
+
exports.CreditCardPaymentDetail = void 0;
|
|
35
|
+
const model = __importStar(require("../model"));
|
|
36
|
+
var CreditCardPaymentDetail;
|
|
37
|
+
(function (CreditCardPaymentDetail) {
|
|
38
|
+
function getJsonObj(obj, isParentJsonObj) {
|
|
39
|
+
const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj ? obj : model.PaymentDetail.getJsonObj(obj))), {});
|
|
40
|
+
return jsonObj;
|
|
41
|
+
}
|
|
42
|
+
CreditCardPaymentDetail.getJsonObj = getJsonObj;
|
|
43
|
+
CreditCardPaymentDetail.paymentMethod = "CREDIT_CARD";
|
|
44
|
+
function getDeserializedJsonObj(obj, isParentJsonObj) {
|
|
45
|
+
const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj
|
|
46
|
+
? obj
|
|
47
|
+
: model.PaymentDetail.getDeserializedJsonObj(obj))), {});
|
|
48
|
+
return jsonObj;
|
|
49
|
+
}
|
|
50
|
+
CreditCardPaymentDetail.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
51
|
+
})(CreditCardPaymentDetail = exports.CreditCardPaymentDetail || (exports.CreditCardPaymentDetail = {}));
|
|
52
|
+
//# sourceMappingURL=credit-card-payment-detail.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"credit-card-payment-detail.js","sourceRoot":"","sources":["../../../../../lib/ospgateway/lib/model/credit-card-payment-detail.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAUlC,IAAiB,uBAAuB,CAuBvC;AAvBD,WAAiB,uBAAuB;IACtC,SAAgB,UAAU,CAAC,GAA4B,EAAE,eAAyB;QAChF,MAAM,OAAO,mCACR,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAE,KAAK,CAAC,aAAa,CAAC,UAAU,CAAC,GAAG,CAA6B,CAAC,GAC1F,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAPe,kCAAU,aAOzB,CAAA;IACY,qCAAa,GAAG,aAAa,CAAC;IAC3C,SAAgB,sBAAsB,CACpC,GAA4B,EAC5B,eAAyB;QAEzB,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,aAAa,CAAC,sBAAsB,CAAC,GAAG,CAA6B,CAAC,GAC9E,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAZe,8CAAsB,yBAYrC,CAAA;AACH,CAAC,EAvBgB,uBAAuB,GAAvB,+BAAuB,KAAvB,+BAAuB,QAuBvC"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Billing Center Gateway API
|
|
3
|
+
* This site describes all the Rest endpoints of Billing Center Gateway.
|
|
4
|
+
* OpenAPI spec version: 20191001
|
|
5
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* Currency details model
|
|
15
|
+
*/
|
|
16
|
+
export interface Currency {
|
|
17
|
+
/**
|
|
18
|
+
* Currency code
|
|
19
|
+
*/
|
|
20
|
+
"currencyCode"?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Currency symbol
|
|
23
|
+
*/
|
|
24
|
+
"currencySymbol"?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Name of the currency
|
|
27
|
+
*/
|
|
28
|
+
"name"?: string;
|
|
29
|
+
/**
|
|
30
|
+
* USD conversion rate of the currency Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
31
|
+
*/
|
|
32
|
+
"usdConversion"?: number;
|
|
33
|
+
/**
|
|
34
|
+
* Round decimal point Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
35
|
+
*/
|
|
36
|
+
"roundDecimalPoint"?: number;
|
|
37
|
+
}
|
|
38
|
+
export declare namespace Currency {
|
|
39
|
+
function getJsonObj(obj: Currency): object;
|
|
40
|
+
function getDeserializedJsonObj(obj: Currency): object;
|
|
41
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Billing Center Gateway API
|
|
4
|
+
* This site describes all the Rest endpoints of Billing Center Gateway.
|
|
5
|
+
* OpenAPI spec version: 20191001
|
|
6
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.Currency = void 0;
|
|
16
|
+
var Currency;
|
|
17
|
+
(function (Currency) {
|
|
18
|
+
function getJsonObj(obj) {
|
|
19
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
20
|
+
return jsonObj;
|
|
21
|
+
}
|
|
22
|
+
Currency.getJsonObj = getJsonObj;
|
|
23
|
+
function getDeserializedJsonObj(obj) {
|
|
24
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
25
|
+
return jsonObj;
|
|
26
|
+
}
|
|
27
|
+
Currency.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
28
|
+
})(Currency = exports.Currency || (exports.Currency = {}));
|
|
29
|
+
//# sourceMappingURL=currency.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"currency.js","sourceRoot":"","sources":["../../../../../lib/ospgateway/lib/model/currency.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AA+BH,IAAiB,QAAQ,CAWxB;AAXD,WAAiB,QAAQ;IACvB,SAAgB,UAAU,CAAC,GAAa;QACtC,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,mBAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAa;QAClD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,+BAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QAWxB"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Billing Center Gateway API
|
|
3
|
+
* This site describes all the Rest endpoints of Billing Center Gateway.
|
|
4
|
+
* OpenAPI spec version: 20191001
|
|
5
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import * as Address from "./address";
|
|
14
|
+
export import Address = Address.Address;
|
|
15
|
+
import * as Country from "./country";
|
|
16
|
+
export import Country = Country.Country;
|
|
17
|
+
import * as Currency from "./currency";
|
|
18
|
+
export import Currency = Currency.Currency;
|
|
19
|
+
import * as Invoice from "./invoice";
|
|
20
|
+
export import Invoice = Invoice.Invoice;
|
|
21
|
+
import * as InvoiceCollection from "./invoice-collection";
|
|
22
|
+
export import InvoiceCollection = InvoiceCollection.InvoiceCollection;
|
|
23
|
+
import * as InvoiceLineCollection from "./invoice-line-collection";
|
|
24
|
+
export import InvoiceLineCollection = InvoiceLineCollection.InvoiceLineCollection;
|
|
25
|
+
import * as InvoiceLineSummary from "./invoice-line-summary";
|
|
26
|
+
export import InvoiceLineSummary = InvoiceLineSummary.InvoiceLineSummary;
|
|
27
|
+
import * as InvoiceSummary from "./invoice-summary";
|
|
28
|
+
export import InvoiceSummary = InvoiceSummary.InvoiceSummary;
|
|
29
|
+
import * as PayInvoiceDetails from "./pay-invoice-details";
|
|
30
|
+
export import PayInvoiceDetails = PayInvoiceDetails.PayInvoiceDetails;
|
|
31
|
+
import * as PayInvoiceReceipt from "./pay-invoice-receipt";
|
|
32
|
+
export import PayInvoiceReceipt = PayInvoiceReceipt.PayInvoiceReceipt;
|
|
33
|
+
import * as PaymentDetail from "./payment-detail";
|
|
34
|
+
export import PaymentDetail = PaymentDetail.PaymentDetail;
|
|
35
|
+
import * as CreditCardPaymentDetail from "./credit-card-payment-detail";
|
|
36
|
+
export import CreditCardPaymentDetail = CreditCardPaymentDetail.CreditCardPaymentDetail;
|
|
37
|
+
import * as OtherPaymentDetail from "./other-payment-detail";
|
|
38
|
+
export import OtherPaymentDetail = OtherPaymentDetail.OtherPaymentDetail;
|
|
39
|
+
import * as PaypalPaymentDetail from "./paypal-payment-detail";
|
|
40
|
+
export import PaypalPaymentDetail = PaypalPaymentDetail.PaypalPaymentDetail;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Billing Center Gateway API
|
|
4
|
+
* This site describes all the Rest endpoints of Billing Center Gateway.
|
|
5
|
+
* OpenAPI spec version: 20191001
|
|
6
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15
|
+
if (k2 === undefined) k2 = k;
|
|
16
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
17
|
+
}) : (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
o[k2] = m[k];
|
|
20
|
+
}));
|
|
21
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
22
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
23
|
+
}) : function(o, v) {
|
|
24
|
+
o["default"] = v;
|
|
25
|
+
});
|
|
26
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
27
|
+
if (mod && mod.__esModule) return mod;
|
|
28
|
+
var result = {};
|
|
29
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
30
|
+
__setModuleDefault(result, mod);
|
|
31
|
+
return result;
|
|
32
|
+
};
|
|
33
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
+
exports.PaypalPaymentDetail = exports.OtherPaymentDetail = exports.CreditCardPaymentDetail = exports.PaymentDetail = exports.PayInvoiceReceipt = exports.PayInvoiceDetails = exports.InvoiceSummary = exports.InvoiceLineSummary = exports.InvoiceLineCollection = exports.InvoiceCollection = exports.Invoice = exports.Currency = exports.Country = exports.Address = void 0;
|
|
35
|
+
const Address = __importStar(require("./address"));
|
|
36
|
+
exports.Address = Address.Address;
|
|
37
|
+
const Country = __importStar(require("./country"));
|
|
38
|
+
exports.Country = Country.Country;
|
|
39
|
+
const Currency = __importStar(require("./currency"));
|
|
40
|
+
exports.Currency = Currency.Currency;
|
|
41
|
+
const Invoice = __importStar(require("./invoice"));
|
|
42
|
+
exports.Invoice = Invoice.Invoice;
|
|
43
|
+
const InvoiceCollection = __importStar(require("./invoice-collection"));
|
|
44
|
+
exports.InvoiceCollection = InvoiceCollection.InvoiceCollection;
|
|
45
|
+
const InvoiceLineCollection = __importStar(require("./invoice-line-collection"));
|
|
46
|
+
exports.InvoiceLineCollection = InvoiceLineCollection.InvoiceLineCollection;
|
|
47
|
+
const InvoiceLineSummary = __importStar(require("./invoice-line-summary"));
|
|
48
|
+
exports.InvoiceLineSummary = InvoiceLineSummary.InvoiceLineSummary;
|
|
49
|
+
const InvoiceSummary = __importStar(require("./invoice-summary"));
|
|
50
|
+
exports.InvoiceSummary = InvoiceSummary.InvoiceSummary;
|
|
51
|
+
const PayInvoiceDetails = __importStar(require("./pay-invoice-details"));
|
|
52
|
+
exports.PayInvoiceDetails = PayInvoiceDetails.PayInvoiceDetails;
|
|
53
|
+
const PayInvoiceReceipt = __importStar(require("./pay-invoice-receipt"));
|
|
54
|
+
exports.PayInvoiceReceipt = PayInvoiceReceipt.PayInvoiceReceipt;
|
|
55
|
+
const PaymentDetail = __importStar(require("./payment-detail"));
|
|
56
|
+
exports.PaymentDetail = PaymentDetail.PaymentDetail;
|
|
57
|
+
const CreditCardPaymentDetail = __importStar(require("./credit-card-payment-detail"));
|
|
58
|
+
exports.CreditCardPaymentDetail = CreditCardPaymentDetail.CreditCardPaymentDetail;
|
|
59
|
+
const OtherPaymentDetail = __importStar(require("./other-payment-detail"));
|
|
60
|
+
exports.OtherPaymentDetail = OtherPaymentDetail.OtherPaymentDetail;
|
|
61
|
+
const PaypalPaymentDetail = __importStar(require("./paypal-payment-detail"));
|
|
62
|
+
exports.PaypalPaymentDetail = PaypalPaymentDetail.PaypalPaymentDetail;
|
|
63
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/ospgateway/lib/model/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,mDAAqC;AACvB,QAAA,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AACxC,mDAAqC;AACvB,QAAA,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AACxC,qDAAuC;AACzB,QAAA,QAAQ,GAAG,QAAQ,CAAC,QAAQ,CAAC;AAC3C,mDAAqC;AACvB,QAAA,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;AACxC,wEAA0D;AAC5C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,iFAAmE;AACrD,QAAA,qBAAqB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC;AAClF,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,kEAAoD;AACtC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,yEAA2D;AAC7C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,yEAA2D;AAC7C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,gEAAkD;AACpC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAE1D,sFAAwE;AAC1D,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC;AACxF,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Billing Center Gateway API
|
|
3
|
+
* This site describes all the Rest endpoints of Billing Center Gateway.
|
|
4
|
+
* OpenAPI spec version: 20191001
|
|
5
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
/**
|
|
15
|
+
* Invoice list
|
|
16
|
+
*/
|
|
17
|
+
export interface InvoiceCollection {
|
|
18
|
+
/**
|
|
19
|
+
* Invoice list elements
|
|
20
|
+
*/
|
|
21
|
+
"items": Array<model.InvoiceSummary>;
|
|
22
|
+
}
|
|
23
|
+
export declare namespace InvoiceCollection {
|
|
24
|
+
function getJsonObj(obj: InvoiceCollection): object;
|
|
25
|
+
function getDeserializedJsonObj(obj: InvoiceCollection): object;
|
|
26
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Billing Center Gateway API
|
|
4
|
+
* This site describes all the Rest endpoints of Billing Center Gateway.
|
|
5
|
+
* OpenAPI spec version: 20191001
|
|
6
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15
|
+
if (k2 === undefined) k2 = k;
|
|
16
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
17
|
+
}) : (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
o[k2] = m[k];
|
|
20
|
+
}));
|
|
21
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
22
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
23
|
+
}) : function(o, v) {
|
|
24
|
+
o["default"] = v;
|
|
25
|
+
});
|
|
26
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
27
|
+
if (mod && mod.__esModule) return mod;
|
|
28
|
+
var result = {};
|
|
29
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
30
|
+
__setModuleDefault(result, mod);
|
|
31
|
+
return result;
|
|
32
|
+
};
|
|
33
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
+
exports.InvoiceCollection = void 0;
|
|
35
|
+
const model = __importStar(require("../model"));
|
|
36
|
+
var InvoiceCollection;
|
|
37
|
+
(function (InvoiceCollection) {
|
|
38
|
+
function getJsonObj(obj) {
|
|
39
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
40
|
+
"items": obj.items
|
|
41
|
+
? obj.items.map(item => {
|
|
42
|
+
return model.InvoiceSummary.getJsonObj(item);
|
|
43
|
+
})
|
|
44
|
+
: undefined
|
|
45
|
+
});
|
|
46
|
+
return jsonObj;
|
|
47
|
+
}
|
|
48
|
+
InvoiceCollection.getJsonObj = getJsonObj;
|
|
49
|
+
function getDeserializedJsonObj(obj) {
|
|
50
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
51
|
+
"items": obj.items
|
|
52
|
+
? obj.items.map(item => {
|
|
53
|
+
return model.InvoiceSummary.getDeserializedJsonObj(item);
|
|
54
|
+
})
|
|
55
|
+
: undefined
|
|
56
|
+
});
|
|
57
|
+
return jsonObj;
|
|
58
|
+
}
|
|
59
|
+
InvoiceCollection.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
60
|
+
})(InvoiceCollection = exports.InvoiceCollection || (exports.InvoiceCollection = {}));
|
|
61
|
+
//# sourceMappingURL=invoice-collection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"invoice-collection.js","sourceRoot":"","sources":["../../../../../lib/ospgateway/lib/model/invoice-collection.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAalC,IAAiB,iBAAiB,CA6BjC;AA7BD,WAAiB,iBAAiB;IAChC,SAAgB,UAAU,CAAC,GAAsB;QAC/C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,OAAO,EAAE,GAAG,CAAC,KAAK;gBAChB,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACnB,OAAO,KAAK,CAAC,cAAc,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC/C,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,4BAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAsB;QAC3D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,OAAO,EAAE,GAAG,CAAC,KAAK;gBAChB,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACnB,OAAO,KAAK,CAAC,cAAc,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAC3D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,wCAAsB,yBAarC,CAAA;AACH,CAAC,EA7BgB,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QA6BjC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Billing Center Gateway API
|
|
3
|
+
* This site describes all the Rest endpoints of Billing Center Gateway.
|
|
4
|
+
* OpenAPI spec version: 20191001
|
|
5
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
/**
|
|
15
|
+
* Invoice line list
|
|
16
|
+
*/
|
|
17
|
+
export interface InvoiceLineCollection {
|
|
18
|
+
/**
|
|
19
|
+
* Invoice line list elements
|
|
20
|
+
*/
|
|
21
|
+
"items": Array<model.InvoiceLineSummary>;
|
|
22
|
+
}
|
|
23
|
+
export declare namespace InvoiceLineCollection {
|
|
24
|
+
function getJsonObj(obj: InvoiceLineCollection): object;
|
|
25
|
+
function getDeserializedJsonObj(obj: InvoiceLineCollection): object;
|
|
26
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Billing Center Gateway API
|
|
4
|
+
* This site describes all the Rest endpoints of Billing Center Gateway.
|
|
5
|
+
* OpenAPI spec version: 20191001
|
|
6
|
+
* Contact: osp_team_oci_cam_ww_grp@oracle.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15
|
+
if (k2 === undefined) k2 = k;
|
|
16
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
17
|
+
}) : (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
o[k2] = m[k];
|
|
20
|
+
}));
|
|
21
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
22
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
23
|
+
}) : function(o, v) {
|
|
24
|
+
o["default"] = v;
|
|
25
|
+
});
|
|
26
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
27
|
+
if (mod && mod.__esModule) return mod;
|
|
28
|
+
var result = {};
|
|
29
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
30
|
+
__setModuleDefault(result, mod);
|
|
31
|
+
return result;
|
|
32
|
+
};
|
|
33
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
+
exports.InvoiceLineCollection = void 0;
|
|
35
|
+
const model = __importStar(require("../model"));
|
|
36
|
+
var InvoiceLineCollection;
|
|
37
|
+
(function (InvoiceLineCollection) {
|
|
38
|
+
function getJsonObj(obj) {
|
|
39
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
40
|
+
"items": obj.items
|
|
41
|
+
? obj.items.map(item => {
|
|
42
|
+
return model.InvoiceLineSummary.getJsonObj(item);
|
|
43
|
+
})
|
|
44
|
+
: undefined
|
|
45
|
+
});
|
|
46
|
+
return jsonObj;
|
|
47
|
+
}
|
|
48
|
+
InvoiceLineCollection.getJsonObj = getJsonObj;
|
|
49
|
+
function getDeserializedJsonObj(obj) {
|
|
50
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
51
|
+
"items": obj.items
|
|
52
|
+
? obj.items.map(item => {
|
|
53
|
+
return model.InvoiceLineSummary.getDeserializedJsonObj(item);
|
|
54
|
+
})
|
|
55
|
+
: undefined
|
|
56
|
+
});
|
|
57
|
+
return jsonObj;
|
|
58
|
+
}
|
|
59
|
+
InvoiceLineCollection.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
60
|
+
})(InvoiceLineCollection = exports.InvoiceLineCollection || (exports.InvoiceLineCollection = {}));
|
|
61
|
+
//# sourceMappingURL=invoice-line-collection.js.map
|