yellowgrid-api-ts 3.2.254 → 3.2.256

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.
Files changed (52) hide show
  1. package/.openapi-generator/FILES +45 -1
  2. package/README.md +109 -2
  3. package/api.ts +4924 -86
  4. package/dist/api.d.ts +2454 -62
  5. package/dist/api.js +5269 -128
  6. package/docs/BaseService.md +36 -0
  7. package/docs/BillingApi.md +3517 -25
  8. package/docs/Bundle.md +34 -0
  9. package/docs/BundleCustomer.md +34 -0
  10. package/docs/CallTariff.md +34 -0
  11. package/docs/CallTariffPlan.md +36 -0
  12. package/docs/CallTariffResponse.md +26 -0
  13. package/docs/Cdr.md +112 -0
  14. package/docs/ConnectionRequest.md +36 -0
  15. package/docs/ConnectionType.md +28 -0
  16. package/docs/ContactDetail.md +58 -0
  17. package/docs/Customer.md +98 -0
  18. package/docs/CustomerRate.md +22 -0
  19. package/docs/CustomerRateType.md +12 -0
  20. package/docs/InboundCli.md +50 -0
  21. package/docs/InboundTariffPlan.md +32 -0
  22. package/docs/InboundTariffPlanResponse.md +28 -0
  23. package/docs/MultiTenantSipTrunkRequest.md +22 -0
  24. package/docs/OutboundCli.md +70 -0
  25. package/docs/PostAddBroadbandRequest.md +28 -0
  26. package/docs/PostAddCallTariffToCallTariffPlanRequest.md +34 -0
  27. package/docs/PostAddEthernetRequest.md +28 -0
  28. package/docs/PostAddRecurringChargeRequest.md +30 -0
  29. package/docs/PostAddServiceToServicePlanRequest.md +30 -0
  30. package/docs/PostAddSipTrunkDDIsRequest.md +30 -0
  31. package/docs/PostDisconnectDDIRequest.md +20 -0
  32. package/docs/PostGetBaseServicesRequest.md +22 -0
  33. package/docs/PostGetPriceGroupsRequest.md +22 -0
  34. package/docs/PostGetServicePlansRequest.md +22 -0
  35. package/docs/PostGetSipTrunksBillingRequest.md +34 -0
  36. package/docs/PostUpdateConnectionRequest.md +22 -0
  37. package/docs/PostUpdateRecurringChargeRequest.md +30 -0
  38. package/docs/PriceGroup.md +30 -0
  39. package/docs/PriceGroupResponse.md +24 -0
  40. package/docs/ProcessedCdr.md +96 -0
  41. package/docs/PutAddCallTariffToCallTariffPlanRequest.md +30 -0
  42. package/docs/PutAddServiceToServicePlanRequest.md +26 -0
  43. package/docs/{PutTransferConnectionRequest.md → PutConnectionSearchRequest.md} +3 -3
  44. package/docs/PutGetBaseServicesRequest.md +28 -0
  45. package/docs/PutGetCallTariffPlanRequest.md +28 -0
  46. package/docs/PutGetPriceGroupsRequest.md +28 -0
  47. package/docs/RecurringCharge.md +48 -0
  48. package/docs/SdrReferenceType.md +24 -0
  49. package/docs/Service.md +42 -0
  50. package/docs/ServicePlan.md +36 -0
  51. package/docs/TariffRate.md +30 -0
  52. package/package.json +1 -1
package/dist/api.d.ts CHANGED
@@ -1044,6 +1044,17 @@ export declare const AxisDataDTOTypeEnum: {
1044
1044
  readonly Log: "log";
1045
1045
  };
1046
1046
  export type AxisDataDTOTypeEnum = typeof AxisDataDTOTypeEnum[keyof typeof AxisDataDTOTypeEnum];
1047
+ export interface BaseService {
1048
+ 'createdDate'?: string;
1049
+ 'id'?: number;
1050
+ 'serviceCode'?: string | null;
1051
+ 'dataType': string | null;
1052
+ 'originalDescription': string | null;
1053
+ 'cost'?: number;
1054
+ 'startDate'?: string;
1055
+ 'endDate'?: string | null;
1056
+ 'filePeriod'?: string | null;
1057
+ }
1047
1058
  /**
1048
1059
  * Basic Order Item
1049
1060
  */
@@ -1225,6 +1236,26 @@ export interface BatchEntity {
1225
1236
  */
1226
1237
  'mac'?: string;
1227
1238
  }
1239
+ export interface Bundle {
1240
+ 'createdDate'?: string;
1241
+ 'id'?: number;
1242
+ 'name': string | null;
1243
+ 'category': string | null;
1244
+ 'description': string | null;
1245
+ 'customers'?: Array<Customer> | null;
1246
+ 'bundleCustomers'?: Array<BundleCustomer> | null;
1247
+ 'filePeriod'?: string | null;
1248
+ }
1249
+ export interface BundleCustomer {
1250
+ 'createdDate'?: string;
1251
+ 'id'?: number;
1252
+ 'bundleId'?: number;
1253
+ 'bundle': Bundle;
1254
+ 'customerId'?: number;
1255
+ 'customer': Customer;
1256
+ 'endDate'?: string | null;
1257
+ 'filePeriod'?: string | null;
1258
+ }
1228
1259
  /**
1229
1260
  * Call Barring
1230
1261
  */
@@ -1250,6 +1281,82 @@ export interface CallBarringModel {
1250
1281
  */
1251
1282
  'block087Calls'?: boolean;
1252
1283
  }
1284
+ export interface CallTariff {
1285
+ 'createdDate'?: string;
1286
+ 'id'?: number;
1287
+ 'callTariffPlanId'?: number | null;
1288
+ 'inboundTariffPlanId'?: number | null;
1289
+ 'priceGroupId'?: number;
1290
+ 'priceGroup': PriceGroup;
1291
+ 'tariffRate': TariffRate;
1292
+ 'filePeriod'?: string | null;
1293
+ }
1294
+ export interface CallTariffPlan {
1295
+ 'createdDate'?: string;
1296
+ 'id'?: number;
1297
+ 'name': string | null;
1298
+ 'unknownDestinationsRate': CustomerRate;
1299
+ 'ngcsAccessChargePerMin'?: number;
1300
+ 'ngcsAccessChargePerCall'?: number;
1301
+ 'callTariffs'?: Array<CallTariff> | null;
1302
+ 'filePeriod'?: string | null;
1303
+ 'closed'?: boolean;
1304
+ }
1305
+ export interface CallTariffResponse {
1306
+ 'id'?: number;
1307
+ 'priceGroupId'?: number;
1308
+ 'priceGroup'?: PriceGroupResponse;
1309
+ 'tariffRate'?: TariffRate;
1310
+ }
1311
+ export interface Cdr {
1312
+ 'id'?: number;
1313
+ 'callType': string | null;
1314
+ 'callCause'?: string | null;
1315
+ 'customerIdentifier': string | null;
1316
+ 'nonChargedParty': string | null;
1317
+ 'callDate': string;
1318
+ 'callTime': string;
1319
+ 'duration'?: number | null;
1320
+ 'bytesTransmitted'?: number | null;
1321
+ 'bytesReceived'?: number | null;
1322
+ 'description'?: string | null;
1323
+ 'chargecode'?: string | null;
1324
+ 'timeBand'?: string | null;
1325
+ 'salesprice'?: number | null;
1326
+ 'salespricePreBundle'?: number | null;
1327
+ 'extension'?: string | null;
1328
+ 'ddi'?: string | null;
1329
+ 'groupingID'?: string | null;
1330
+ 'callClass'?: string | null;
1331
+ 'carrier'?: string | null;
1332
+ 'recording'?: boolean | null;
1333
+ 'vat'?: string | null;
1334
+ 'countryOfOrigin'?: string | null;
1335
+ 'network'?: string | null;
1336
+ 'retailTariffCode'?: string | null;
1337
+ 'remoteNetwork'?: string | null;
1338
+ 'apn'?: string | null;
1339
+ 'divertedNumber'?: string | null;
1340
+ 'ringTime'?: number | null;
1341
+ 'recordID'?: string | null;
1342
+ 'currency'?: string | null;
1343
+ 'presentationNumber'?: string | null;
1344
+ 'networkAccessReference'?: string | null;
1345
+ 'ngcsAccessCharge'?: number | null;
1346
+ 'ngcsServiceCharge'?: number | null;
1347
+ 'totalBytesTransferred'?: number | null;
1348
+ 'userID'?: string | null;
1349
+ 'onwardBillingReference'?: string | null;
1350
+ 'contractName'?: string | null;
1351
+ 'bundleName'?: string | null;
1352
+ 'bundleAllowance'?: number | null;
1353
+ 'discountReference'?: string | null;
1354
+ 'routingCode'?: string | null;
1355
+ 'filename': string | null;
1356
+ 'contentReference': string | null;
1357
+ 'processedCdr'?: ProcessedCdr;
1358
+ 'filePeriod': string | null;
1359
+ }
1253
1360
  /**
1254
1361
  * Client Details
1255
1362
  */
@@ -1329,6 +1436,46 @@ export interface CompanyContractModel {
1329
1436
  */
1330
1437
  'timeRemaining'?: string;
1331
1438
  }
1439
+ export interface ConnectionRequest {
1440
+ 'customerId': number;
1441
+ 'reference': string | null;
1442
+ 'connectionDate': string;
1443
+ 'servicePlanId': number;
1444
+ 'zeroRated'?: boolean | null;
1445
+ 'callTariffPlanId'?: number | null;
1446
+ 'inboundTariffPlanId'?: number | null;
1447
+ 'invoiceDescription'?: string | null;
1448
+ 'mtSipTrunkRequest'?: MultiTenantSipTrunkRequest;
1449
+ }
1450
+ export interface ConnectionType {
1451
+ 'createdDate'?: string;
1452
+ 'id'?: number;
1453
+ 'name': string | null;
1454
+ 'description'?: string | null;
1455
+ 'accountCode': string | null;
1456
+ }
1457
+ export interface ContactDetail {
1458
+ 'customerName': string | null;
1459
+ 'contactName'?: string | null;
1460
+ 'address1'?: string | null;
1461
+ 'address2'?: string | null;
1462
+ 'address3'?: string | null;
1463
+ 'address4'?: string | null;
1464
+ 'postCode'?: string | null;
1465
+ 'country'?: string | null;
1466
+ 'phone1'?: string | null;
1467
+ 'email'?: string | null;
1468
+ 'siteInfo'?: string | null;
1469
+ 'siteContactName'?: string | null;
1470
+ 'siteAddress1'?: string | null;
1471
+ 'siteAddress2'?: string | null;
1472
+ 'siteAddress3'?: string | null;
1473
+ 'siteAddress4'?: string | null;
1474
+ 'sitePostcode'?: string | null;
1475
+ 'siteCountry'?: string | null;
1476
+ 'sitePhone1'?: string | null;
1477
+ 'siteEmail'?: string | null;
1478
+ }
1332
1479
  /**
1333
1480
  * Order Contact Info
1334
1481
  */
@@ -1868,6 +2015,48 @@ export interface CrmNoteModel {
1868
2015
  */
1869
2016
  'callId'?: number;
1870
2017
  }
2018
+ export interface Customer {
2019
+ 'createdDate'?: string;
2020
+ 'id'?: number;
2021
+ 'customerCode': string | null;
2022
+ 'parentCustomerCode'?: string | null;
2023
+ 'customerName': string | null;
2024
+ 'accountId'?: string | null;
2025
+ 'contactName'?: string | null;
2026
+ 'address1'?: string | null;
2027
+ 'address2'?: string | null;
2028
+ 'address3'?: string | null;
2029
+ 'address4'?: string | null;
2030
+ 'postCode'?: string | null;
2031
+ 'country'?: string | null;
2032
+ 'phone1'?: string | null;
2033
+ 'email'?: string | null;
2034
+ 'ddEnabled'?: boolean | null;
2035
+ 'acClosedDate'?: string | null;
2036
+ 'siteInfo'?: string | null;
2037
+ 'siteContactName'?: string | null;
2038
+ 'siteAddress1'?: string | null;
2039
+ 'siteAddress2'?: string | null;
2040
+ 'siteAddress3'?: string | null;
2041
+ 'siteAddress4'?: string | null;
2042
+ 'sitePostcode'?: string | null;
2043
+ 'siteCountry'?: string | null;
2044
+ 'sitePhone1'?: string | null;
2045
+ 'siteEmail'?: string | null;
2046
+ 'vatCode'?: string | null;
2047
+ 'outboundClis'?: Array<OutboundCli> | null;
2048
+ 'inboundClis'?: Array<InboundCli> | null;
2049
+ 'bundles'?: Array<Bundle> | null;
2050
+ 'bundleCustomers'?: Array<BundleCustomer> | null;
2051
+ 'ddiBilling'?: boolean;
2052
+ 'lastInvoiceNumber'?: string | null;
2053
+ 'username'?: string | null;
2054
+ 'sshKey'?: string | null;
2055
+ 'directCustomer'?: boolean;
2056
+ 'parentCustomer'?: boolean;
2057
+ 'childCustomer'?: boolean;
2058
+ 'acClosed'?: boolean;
2059
+ }
1871
2060
  /**
1872
2061
  * Customer Coordinates
1873
2062
  */
@@ -2075,6 +2264,16 @@ export interface CustomerPriceListEnum {
2075
2264
  */
2076
2265
  'name'?: string;
2077
2266
  }
2267
+ export interface CustomerRate {
2268
+ 'markup'?: CustomerRateType;
2269
+ 'amount'?: number;
2270
+ }
2271
+ export declare const CustomerRateType: {
2272
+ readonly Fixed: "FIXED";
2273
+ readonly MarkupPercent: "MARKUP_PERCENT";
2274
+ readonly MarkupFixed: "MARKUP_FIXED";
2275
+ };
2276
+ export type CustomerRateType = typeof CustomerRateType[keyof typeof CustomerRateType];
2078
2277
  /**
2079
2278
  * Customer Summary Report
2080
2279
  */
@@ -2779,6 +2978,40 @@ export declare const HostingRegionDTOCodeEnum: {
2779
2978
  readonly UsWestOr1: "US-WEST-OR-1";
2780
2979
  };
2781
2980
  export type HostingRegionDTOCodeEnum = typeof HostingRegionDTOCodeEnum[keyof typeof HostingRegionDTOCodeEnum];
2981
+ export interface InboundCli {
2982
+ 'createdDate'?: string;
2983
+ 'id'?: number;
2984
+ 'cli': string | null;
2985
+ 'customerId'?: number;
2986
+ 'customer': Customer;
2987
+ 'prefix': string | null;
2988
+ 'phoneNumber': string | null;
2989
+ 'operator': string | null;
2990
+ 'inboundTariffPlanId'?: number;
2991
+ 'inboundTariffPlan'?: InboundTariffPlan;
2992
+ 'invoiceDescription'?: string | null;
2993
+ 'connected'?: boolean;
2994
+ 'disconnectedDate'?: string | null;
2995
+ 'lastInvoicedPeriod'?: string | null;
2996
+ 'planName'?: string | null;
2997
+ 'filePeriod'?: string | null;
2998
+ }
2999
+ export interface InboundTariffPlan {
3000
+ 'createdDate'?: string;
3001
+ 'id'?: number;
3002
+ 'name': string | null;
3003
+ 'rate': TariffRate;
3004
+ 'terminationOverrideTariffs'?: Array<CallTariff> | null;
3005
+ 'filePeriod'?: string | null;
3006
+ 'closed'?: boolean;
3007
+ }
3008
+ export interface InboundTariffPlanResponse {
3009
+ 'id'?: number;
3010
+ 'name'?: string | null;
3011
+ 'rate'?: TariffRate;
3012
+ 'callTariffs'?: Array<CallTariffResponse> | null;
3013
+ 'closed'?: boolean;
3014
+ }
2782
3015
  /**
2783
3016
  * Installation Passwords
2784
3017
  */
@@ -3435,6 +3668,10 @@ export declare const MultiTenantChangeResponseModelTypeEnum: {
3435
3668
  readonly CallBarring: "Call Barring";
3436
3669
  };
3437
3670
  export type MultiTenantChangeResponseModelTypeEnum = typeof MultiTenantChangeResponseModelTypeEnum[keyof typeof MultiTenantChangeResponseModelTypeEnum];
3671
+ export interface MultiTenantSipTrunkRequest {
3672
+ 'isPrimary': boolean;
3673
+ 'mtPrimarySipTrunkId'?: number | null;
3674
+ }
3438
3675
  /**
3439
3676
  * Navigation Endpoint
3440
3677
  */
@@ -4461,6 +4698,34 @@ export interface OrderedItemModel {
4461
4698
  */
4462
4699
  'returnedStock'?: number;
4463
4700
  }
4701
+ export interface OutboundCli {
4702
+ 'createdDate'?: string;
4703
+ 'id'?: number;
4704
+ 'cli': string | null;
4705
+ 'customerId'?: number;
4706
+ 'customer'?: Customer;
4707
+ 'operator'?: string | null;
4708
+ 'callTariffPlanId'?: number | null;
4709
+ 'callTariffPlan'?: CallTariffPlan;
4710
+ 'servicePlanId'?: number;
4711
+ 'servicePlan'?: ServicePlan;
4712
+ 'invoiceDescription'?: string | null;
4713
+ 'inboundTariffPlanId'?: number | null;
4714
+ 'inboundTariffPlan'?: InboundTariffPlan;
4715
+ 'inboundInvoiceDescription'?: string | null;
4716
+ 'serviceID'?: string | null;
4717
+ 'connectedDate'?: string;
4718
+ 'disconnectedDate'?: string | null;
4719
+ 'lastTrafficPeriod'?: string | null;
4720
+ 'filePeriod'?: string | null;
4721
+ 'sipTrunkSdrRefId'?: number | null;
4722
+ 'isMtPrimarySipTrunk'?: boolean;
4723
+ 'mtPrimarySipTrunkId'?: number | null;
4724
+ 'zeroRated'?: boolean;
4725
+ 'connected'?: boolean;
4726
+ 'futureConnection'?: boolean;
4727
+ 'sdrRefType'?: SdrReferenceType;
4728
+ }
4464
4729
  /**
4465
4730
  * 3CX Partner Details
4466
4731
  */
@@ -4818,25 +5083,96 @@ export interface PortalLoginModel {
4818
5083
  */
4819
5084
  'redirect_uri'?: string;
4820
5085
  }
5086
+ export interface PostAddBroadbandRequest {
5087
+ 'customerId'?: number | null;
5088
+ 'orderId'?: number;
5089
+ /**
5090
+ * Date Time
5091
+ */
5092
+ 'connectionDate'?: string | null;
5093
+ 'servicePlanName'?: string;
5094
+ 'invoiceDescription'?: string | null;
5095
+ }
5096
+ export interface PostAddCallTariffToCallTariffPlanRequest {
5097
+ 'planName'?: string;
5098
+ 'priceGroupName'?: string;
5099
+ 'tariffRateMarkup'?: string;
5100
+ 'tariffRateDay'?: number;
5101
+ 'tariffRateEvening'?: number;
5102
+ 'tariffRateWeekend'?: number;
5103
+ 'tariffRateMinimum'?: number;
5104
+ 'tariffRateSetup'?: number;
5105
+ }
5106
+ export interface PostAddEthernetRequest {
5107
+ 'customerId'?: number | null;
5108
+ 'cesRef'?: string;
5109
+ /**
5110
+ * Date Time
5111
+ */
5112
+ 'connectionDate'?: string | null;
5113
+ 'servicePlanName'?: string;
5114
+ 'invoiceDescription'?: string | null;
5115
+ }
4821
5116
  export interface PostAddOrderNoteRequest {
4822
5117
  /**
4823
5118
  * Order Note
4824
5119
  */
4825
5120
  'note'?: string;
4826
5121
  }
5122
+ export interface PostAddRecurringChargeRequest {
5123
+ 'reference'?: string;
5124
+ 'description'?: string;
5125
+ 'customerCharge'?: number;
5126
+ 'quantity'?: number;
5127
+ /**
5128
+ * Date Time
5129
+ */
5130
+ 'endPeriod'?: string | null;
5131
+ 'accountCode'?: string | null;
5132
+ }
5133
+ export interface PostAddServiceToServicePlanRequest {
5134
+ 'serviceCode'?: string;
5135
+ 'planGroup'?: string;
5136
+ 'customerRate_Markup'?: string;
5137
+ 'customerRate_Amount'?: number;
5138
+ 'description'?: string | null;
5139
+ 'hideOnInvoice'?: boolean | null;
5140
+ }
5141
+ export interface PostAddSipTrunkDDIsRequest {
5142
+ 'startDDI'?: Array<string>;
5143
+ 'sipTrunkSdrRefId'?: string;
5144
+ /**
5145
+ * Date Time
5146
+ */
5147
+ 'connectionDate'?: string | null;
5148
+ 'endDDI'?: Array<string> | null;
5149
+ 'inboundTariffPlanName'?: Array<string> | null;
5150
+ 'invoiceDescription'?: Array<string> | null;
5151
+ }
4827
5152
  export interface PostAddWebhook200Response {
4828
5153
  'url'?: string;
4829
5154
  }
5155
+ export interface PostDisconnectDDIRequest {
5156
+ 'id'?: number;
5157
+ }
4830
5158
  /**
4831
5159
  * @type PostGenerateReport200Response
4832
5160
  */
4833
5161
  export type PostGenerateReport200Response = GraphDTO | TableDTO;
5162
+ export interface PostGetBaseServicesRequest {
5163
+ 'serviceCode'?: string | null;
5164
+ 'originalDescription'?: string;
5165
+ }
4834
5166
  export interface PostGetClientCredentialsRequest {
4835
5167
  /**
4836
5168
  * OAuth 2.0 scopes
4837
5169
  */
4838
5170
  'scopes'?: Array<string>;
4839
5171
  }
5172
+ export interface PostGetPriceGroupsRequest {
5173
+ 'name'?: string;
5174
+ 'description'?: string;
5175
+ }
4840
5176
  export interface PostGetProductForCustomerRequest {
4841
5177
  /**
4842
5178
  * Quantity
@@ -4859,6 +5195,38 @@ export interface PostGetProductForCustomerRequest {
4859
5195
  */
4860
5196
  'renewalYears'?: number | null;
4861
5197
  }
5198
+ export interface PostGetServicePlansRequest {
5199
+ 'name'?: string;
5200
+ 'planGroup'?: PostGetServicePlansRequestPlanGroupEnum;
5201
+ }
5202
+ export declare const PostGetServicePlansRequestPlanGroupEnum: {
5203
+ readonly SipTrunks: "SIP Trunks";
5204
+ readonly Broadband: "Broadband";
5205
+ readonly Ethernet: "Ethernet";
5206
+ readonly Mobile: "Mobile";
5207
+ readonly Wlr: "WLR";
5208
+ readonly Horizon: "Horizon";
5209
+ readonly Nts: "NTS";
5210
+ readonly Hosting: "Hosting";
5211
+ readonly Crm: "CRM";
5212
+ readonly StarterBundle: "Starter Bundle";
5213
+ readonly Other: "Other";
5214
+ readonly RecurringCharges: "Recurring Charges";
5215
+ };
5216
+ export type PostGetServicePlansRequestPlanGroupEnum = typeof PostGetServicePlansRequestPlanGroupEnum[keyof typeof PostGetServicePlansRequestPlanGroupEnum];
5217
+ export interface PostGetSipTrunksBillingRequest {
5218
+ 'parentEndpointId'?: string | null;
5219
+ 'endpointId'?: string;
5220
+ /**
5221
+ * Date Time
5222
+ */
5223
+ 'connectionDate'?: string | null;
5224
+ 'servicePlanName'?: string;
5225
+ 'callTariffPlanName'?: string;
5226
+ 'invoiceDescription'?: string | null;
5227
+ 'isMtPrimarySipTrunk'?: boolean | null;
5228
+ 'mtPrimarySipTrunkId'?: number | null;
5229
+ }
4862
5230
  export interface PostSendWelcomeEmailRequest {
4863
5231
  /**
4864
5232
  * email
@@ -4871,6 +5239,34 @@ export interface PostSplitOrderRequest {
4871
5239
  */
4872
5240
  'itemIds'?: Array<number>;
4873
5241
  }
5242
+ export interface PostUpdateConnectionRequest {
5243
+ 'property'?: string;
5244
+ 'value'?: string;
5245
+ }
5246
+ export interface PostUpdateRecurringChargeRequest {
5247
+ 'reference'?: string | null;
5248
+ 'description'?: string | null;
5249
+ 'customerCharge'?: number | null;
5250
+ 'quantity'?: number | null;
5251
+ /**
5252
+ * Date Time
5253
+ */
5254
+ 'endPeriod'?: string | null;
5255
+ 'accountCode'?: string | null;
5256
+ }
5257
+ export interface PriceGroup {
5258
+ 'createdDate'?: string;
5259
+ 'id'?: number;
5260
+ 'name': string | null;
5261
+ 'category': string | null;
5262
+ 'description': string | null;
5263
+ 'filePeriod'?: string | null;
5264
+ }
5265
+ export interface PriceGroupResponse {
5266
+ 'id'?: number;
5267
+ 'name'?: string | null;
5268
+ 'description'?: string | null;
5269
+ }
4874
5270
  /**
4875
5271
  * Price & Stock List
4876
5272
  */
@@ -4950,6 +5346,47 @@ export interface PrizesEntity {
4950
5346
  */
4951
5347
  'image'?: string;
4952
5348
  }
5349
+ export interface ProcessedCdr {
5350
+ 'id'?: number;
5351
+ 'cdrId'?: number;
5352
+ 'cdr'?: Cdr;
5353
+ 'contentReference'?: string | null;
5354
+ 'callClass'?: string | null;
5355
+ 'inbound'?: boolean;
5356
+ 'cli'?: string | null;
5357
+ 'presentationNumber'?: string | null;
5358
+ 'outboundCliId'?: number | null;
5359
+ 'outboundCli'?: OutboundCli;
5360
+ 'mtPrimaryOutboundCliId'?: number | null;
5361
+ 'mtPrimaryOutboundCli'?: OutboundCli;
5362
+ 'callTariffPlanId'?: number | null;
5363
+ 'callTariffPlan'?: CallTariffPlan;
5364
+ 'inboundTariffPlanId'?: number | null;
5365
+ 'inboundTariffPlan'?: InboundTariffPlan;
5366
+ 'callTariffId'?: number | null;
5367
+ 'callTariff'?: CallTariff;
5368
+ 'customerChargePreRounded'?: number | null;
5369
+ 'customerCharge'?: number | null;
5370
+ 'customerChargePostBundle'?: number | null;
5371
+ 'bundleName'?: string | null;
5372
+ 'customerId'?: number | null;
5373
+ 'tariffPlanName'?: string | null;
5374
+ 'chargecode'?: string | null;
5375
+ 'priceGroupName'?: string | null;
5376
+ 'unknownDestRate'?: CustomerRate;
5377
+ 'ngcsAcsChgPerMin'?: number | null;
5378
+ 'ngcsAcsChgPerCall'?: number | null;
5379
+ 'customerNGCSAcssChg'?: number | null;
5380
+ 'customerRate'?: CustomerRate;
5381
+ 'salesprice'?: number | null;
5382
+ 'callDateTime'?: string | null;
5383
+ 'duration'?: number | null;
5384
+ 'ngcsServiceCharge'?: number | null;
5385
+ 'cdrDescription'?: string | null;
5386
+ 'calledNumber'?: string | null;
5387
+ 'remarks'?: string | null;
5388
+ 'filePeriod'?: string | null;
5389
+ }
4953
5390
  /**
4954
5391
  * Product Detailed Summary
4955
5392
  */
@@ -5334,6 +5771,20 @@ export interface ProvisioningRequestEntity {
5334
5771
  */
5335
5772
  'auth'?: string;
5336
5773
  }
5774
+ export interface PutAddCallTariffToCallTariffPlanRequest {
5775
+ 'tariffRateMarkup'?: string;
5776
+ 'tariffRateDay'?: number;
5777
+ 'tariffRateEvening'?: number;
5778
+ 'tariffRateWeekend'?: number;
5779
+ 'tariffRateMinimum'?: number;
5780
+ 'tariffRateSetup'?: number;
5781
+ }
5782
+ export interface PutAddServiceToServicePlanRequest {
5783
+ 'customerRate_Markup'?: string;
5784
+ 'customerRate_Amount'?: number;
5785
+ 'description'?: string | null;
5786
+ 'hideOnInvoice'?: boolean | null;
5787
+ }
5337
5788
  export interface PutAllocateItemsRequest {
5338
5789
  /**
5339
5790
  * Items
@@ -5350,12 +5801,33 @@ export interface PutAllocateItemsRequestItemsInner {
5350
5801
  */
5351
5802
  'quantity'?: number;
5352
5803
  }
5353
- export interface PutTransferConnectionRequest {
5804
+ export interface PutConnectionSearchRequest {
5354
5805
  /**
5355
5806
  * Customer ID
5356
5807
  */
5357
5808
  'customerId'?: number;
5358
5809
  }
5810
+ export interface PutGetBaseServicesRequest {
5811
+ 'property'?: string;
5812
+ 'value'?: string;
5813
+ 'serviceCodeAdmin'?: string | null;
5814
+ 'description'?: string | null;
5815
+ 'dataType'?: string | null;
5816
+ }
5817
+ export interface PutGetCallTariffPlanRequest {
5818
+ 'name'?: string;
5819
+ 'unknownDestinationsRateType'?: string;
5820
+ 'unknownDestinationsRateAmount'?: number;
5821
+ 'ngcsAccessChargePerMin'?: number;
5822
+ 'ngcsAccessChargePerCall'?: number;
5823
+ }
5824
+ export interface PutGetPriceGroupsRequest {
5825
+ 'property'?: string;
5826
+ 'value'?: string;
5827
+ 'unknownDestinationsRateAmount'?: number;
5828
+ 'ngcsAccessChargePerMin'?: number;
5829
+ 'ngcsAccessChargePerCall'?: number;
5830
+ }
5359
5831
  /**
5360
5832
  * Azure Recordings Backup
5361
5833
  */
@@ -5394,6 +5866,23 @@ export interface RecordingsBackupInfoDTO {
5394
5866
  */
5395
5867
  'storage'?: TcxRemoteStorageModel | null;
5396
5868
  }
5869
+ export interface RecurringCharge {
5870
+ 'createdDate'?: string;
5871
+ 'id'?: number;
5872
+ 'customerId'?: number;
5873
+ 'customer': Customer;
5874
+ 'phoneNumber': string | null;
5875
+ 'description': string | null;
5876
+ 'channelPartnerBuy'?: number;
5877
+ 'customerCharge'?: number;
5878
+ 'frequency'?: number;
5879
+ 'startDate': string;
5880
+ 'endDate'?: string | null;
5881
+ 'quantity'?: number;
5882
+ 'accountCode'?: string | null;
5883
+ 'filePeriod'?: string | null;
5884
+ 'isActive'?: boolean;
5885
+ }
5397
5886
  /**
5398
5887
  * Remote Storage
5399
5888
  */
@@ -5604,6 +6093,18 @@ export interface ScopeModel {
5604
6093
  */
5605
6094
  'description'?: string;
5606
6095
  }
6096
+ export declare const SdrReferenceType: {
6097
+ readonly SipTrunk: "SIP_TRUNK";
6098
+ readonly Broadband: "BROADBAND";
6099
+ readonly Ethernet: "ETHERNET";
6100
+ readonly Mobile: "MOBILE";
6101
+ readonly Wlr: "WLR";
6102
+ readonly Hzn: "HZN";
6103
+ readonly Nts: "NTS";
6104
+ readonly Hosting: "HOSTING";
6105
+ readonly Crm: "CRM";
6106
+ };
6107
+ export type SdrReferenceType = typeof SdrReferenceType[keyof typeof SdrReferenceType];
5607
6108
  /**
5608
6109
  * Graph Series Data
5609
6110
  */
@@ -5629,6 +6130,20 @@ export declare const SeriesDTOTypeEnum: {
5629
6130
  readonly Line: "line";
5630
6131
  };
5631
6132
  export type SeriesDTOTypeEnum = typeof SeriesDTOTypeEnum[keyof typeof SeriesDTOTypeEnum];
6133
+ export interface Service {
6134
+ 'createdDate'?: string;
6135
+ 'id'?: number;
6136
+ 'servicePlanId'?: number;
6137
+ 'servicePlan'?: ServicePlan;
6138
+ 'baseServiceId'?: number;
6139
+ 'baseService'?: BaseService;
6140
+ 'customerRate'?: CustomerRate;
6141
+ 'description'?: string | null;
6142
+ 'hideOnInvoice'?: boolean;
6143
+ 'bureauRate'?: string | null;
6144
+ 'filePeriod'?: string | null;
6145
+ 'common'?: boolean;
6146
+ }
5632
6147
  /**
5633
6148
  * Service Health DTO
5634
6149
  */
@@ -5642,6 +6157,17 @@ export declare const ServiceHealthDTOGlobalStatusEnum: {
5642
6157
  readonly NUMBER_2: 2;
5643
6158
  };
5644
6159
  export type ServiceHealthDTOGlobalStatusEnum = typeof ServiceHealthDTOGlobalStatusEnum[keyof typeof ServiceHealthDTOGlobalStatusEnum];
6160
+ export interface ServicePlan {
6161
+ 'createdDate'?: string;
6162
+ 'id'?: number;
6163
+ 'name': string | null;
6164
+ 'services'?: Array<Service> | null;
6165
+ 'filePeriod'?: string | null;
6166
+ 'planGroup'?: string | null;
6167
+ 'connectionTypeId'?: number | null;
6168
+ 'connectionType'?: ConnectionType;
6169
+ 'closed'?: boolean;
6170
+ }
5645
6171
  /**
5646
6172
  * Service Status DTO
5647
6173
  */
@@ -7520,6 +8046,14 @@ export interface TableRowDTO {
7520
8046
  */
7521
8047
  'data'?: Array<TableDataDTO>;
7522
8048
  }
8049
+ export interface TariffRate {
8050
+ 'markup'?: CustomerRateType;
8051
+ 'day'?: number;
8052
+ 'evening'?: number;
8053
+ 'weekend'?: number;
8054
+ 'minimum'?: number;
8055
+ 'setup'?: number;
8056
+ }
7523
8057
  /**
7524
8058
  * 3CX Wizard Restore From Backup
7525
8059
  */
@@ -10624,6 +11158,93 @@ export type PatchSetPrizePromoStateEnum = typeof PatchSetPrizePromoStateEnum[key
10624
11158
  * BillingApi - axios parameter creator
10625
11159
  */
10626
11160
  export declare const BillingApiAxiosParamCreator: (configuration?: Configuration) => {
11161
+ /**
11162
+ * Delete Call Tariff
11163
+ * @param {string} priceGroupName Price Group Name
11164
+ * @param {*} [options] Override http request option.
11165
+ * @throws {RequiredError}
11166
+ */
11167
+ deleteAddCallTariffToCallTariffPlan: (priceGroupName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11168
+ /**
11169
+ * Delete Recurring Charges
11170
+ * @param {number} id Recurring Charge ID
11171
+ * @param {number} [billCustomerId] Customer ID
11172
+ * @param {*} [options] Override http request option.
11173
+ * @throws {RequiredError}
11174
+ */
11175
+ deleteAddRecurringCharge: (id: number, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11176
+ /**
11177
+ * Delete Service
11178
+ * @param {string} planGroup Plan Group
11179
+ * @param {string} serviceCode Service Code
11180
+ * @param {*} [options] Override http request option.
11181
+ * @throws {RequiredError}
11182
+ */
11183
+ deleteAddServiceToServicePlan: (planGroup: string, serviceCode: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11184
+ /**
11185
+ * Delete Customer
11186
+ * @param {number} [billCustomerId] Customer ID
11187
+ * @param {*} [options] Override http request option.
11188
+ * @throws {RequiredError}
11189
+ */
11190
+ deleteCloseAccount: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11191
+ /**
11192
+ * Delete Base Service
11193
+ * @param {number} baseServiceId Base Service Plan ID
11194
+ * @param {*} [options] Override http request option.
11195
+ * @throws {RequiredError}
11196
+ */
11197
+ deleteGetBaseServices: (baseServiceId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11198
+ /**
11199
+ * Delete Call Tariff Plan
11200
+ * @param {number} callTariffPlanId Call Tariff Plan ID
11201
+ * @param {*} [options] Override http request option.
11202
+ * @throws {RequiredError}
11203
+ */
11204
+ deleteGetCallTariffPlan: (callTariffPlanId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11205
+ /**
11206
+ * Delete Price Group
11207
+ * @param {number} priceGroupId Price Group ID
11208
+ * @param {*} [options] Override http request option.
11209
+ * @throws {RequiredError}
11210
+ */
11211
+ deleteGetPriceGroups: (priceGroupId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11212
+ /**
11213
+ * Delete Service Plan
11214
+ * @param {number} servicePlanId Service Plan ID
11215
+ * @param {*} [options] Override http request option.
11216
+ * @throws {RequiredError}
11217
+ */
11218
+ deleteGetServicePlan: (servicePlanId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11219
+ /**
11220
+ * Get Recurring Charges
11221
+ * @param {number} [billCustomerId] Customer ID
11222
+ * @param {*} [options] Override http request option.
11223
+ * @throws {RequiredError}
11224
+ */
11225
+ getAddRecurringCharge: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11226
+ /**
11227
+ * Get Service
11228
+ * @param {number} id Service ID
11229
+ * @param {*} [options] Override http request option.
11230
+ * @throws {RequiredError}
11231
+ */
11232
+ getAddServiceToServicePlan: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11233
+ /**
11234
+ * Get SIP Trunk DDIs
11235
+ * @param {number} [connectionId] Connection ID
11236
+ * @param {number} [billCustomerId] Customer ID
11237
+ * @param {*} [options] Override http request option.
11238
+ * @throws {RequiredError}
11239
+ */
11240
+ getAddSipTrunkDDIs: (connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11241
+ /**
11242
+ * Connection Search
11243
+ * @param {string} search Search
11244
+ * @param {*} [options] Override http request option.
11245
+ * @throws {RequiredError}
11246
+ */
11247
+ getConnectionSearch: (search: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10627
11248
  /**
10628
11249
  * Get Billing Customers
10629
11250
  * @summary Get Billing Customers
@@ -10632,94 +11253,1865 @@ export declare const BillingApiAxiosParamCreator: (configuration?: Configuration
10632
11253
  */
10633
11254
  getGetAllCustomer: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10634
11255
  /**
10635
- * Transfer Billing Connection
10636
- * @param {PutTransferConnectionRequest} putTransferConnectionRequest Transfer Request
10637
- * @param {number} [id] Connection ID
10638
- * @param {string} [cli] CLI
10639
- * @param {boolean} [skipDDis] Skip DDIs
11256
+ * Get All MT SIP Trunks
11257
+ * @param {number} [billCustomerId] Customer ID
10640
11258
  * @param {*} [options] Override http request option.
10641
11259
  * @throws {RequiredError}
10642
11260
  */
10643
- putTransferConnection: (putTransferConnectionRequest: PutTransferConnectionRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10644
- };
10645
- /**
10646
- * BillingApi - functional programming interface
10647
- */
10648
- export declare const BillingApiFp: (configuration?: Configuration) => {
11261
+ getGetAllMtSipTrunks: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10649
11262
  /**
10650
- * Get Billing Customers
10651
- * @summary Get Billing Customers
11263
+ * Get All SIP Trunks
11264
+ * @param {number} [billCustomerId] Customer ID
10652
11265
  * @param {*} [options] Override http request option.
10653
11266
  * @throws {RequiredError}
10654
11267
  */
10655
- getGetAllCustomer(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
10656
- [key: string]: {
10657
- [key: string]: string;
10658
- };
10659
- }>>;
11268
+ getGetAllSipTrunks: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10660
11269
  /**
10661
- * Transfer Billing Connection
10662
- * @param {PutTransferConnectionRequest} putTransferConnectionRequest Transfer Request
10663
- * @param {number} [id] Connection ID
10664
- * @param {string} [cli] CLI
10665
- * @param {boolean} [skipDDis] Skip DDIs
11270
+ * Get Base Services
10666
11271
  * @param {*} [options] Override http request option.
10667
11272
  * @throws {RequiredError}
10668
11273
  */
10669
- putTransferConnection(putTransferConnectionRequest: PutTransferConnectionRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
10670
- };
10671
- /**
10672
- * BillingApi - factory interface
10673
- */
10674
- export declare const BillingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
11274
+ getGetBaseServices: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10675
11275
  /**
10676
- * Get Billing Customers
10677
- * @summary Get Billing Customers
11276
+ * Get Customer
11277
+ * @param {number} [billCustomerId] Customer ID
10678
11278
  * @param {*} [options] Override http request option.
10679
11279
  * @throws {RequiredError}
10680
11280
  */
10681
- getGetAllCustomer(options?: RawAxiosRequestConfig): AxiosPromise<{
10682
- [key: string]: {
10683
- [key: string]: string;
10684
- };
10685
- }>;
11281
+ getGetBillingCustomerDetails: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10686
11282
  /**
10687
- * Transfer Billing Connection
10688
- * @param {PutTransferConnectionRequest} putTransferConnectionRequest Transfer Request
10689
- * @param {number} [id] Connection ID
10690
- * @param {string} [cli] CLI
10691
- * @param {boolean} [skipDDis] Skip DDIs
11283
+ * Get Bundle Calls With Cost
10692
11284
  * @param {*} [options] Override http request option.
10693
11285
  * @throws {RequiredError}
10694
11286
  */
10695
- putTransferConnection(putTransferConnectionRequest: PutTransferConnectionRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<object>;
10696
- };
10697
- /**
10698
- * BillingApi - object-oriented interface
10699
- */
10700
- export declare class BillingApi extends BaseAPI {
11287
+ getGetBundleCallsWithCost: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10701
11288
  /**
10702
- * Get Billing Customers
10703
- * @summary Get Billing Customers
11289
+ * Get Call Tariff
11290
+ * @param {number} callTariffPlanId Call Tariff Plan ID
10704
11291
  * @param {*} [options] Override http request option.
10705
11292
  * @throws {RequiredError}
10706
11293
  */
10707
- getGetAllCustomer(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
10708
- [key: string]: {
10709
- [key: string]: string;
10710
- };
10711
- }, any, {}>>;
11294
+ getGetCallTariffPlan: (callTariffPlanId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10712
11295
  /**
10713
- * Transfer Billing Connection
10714
- * @param {PutTransferConnectionRequest} putTransferConnectionRequest Transfer Request
10715
- * @param {number} [id] Connection ID
10716
- * @param {string} [cli] CLI
10717
- * @param {boolean} [skipDDis] Skip DDIs
11296
+ * Get Call Tariffs
10718
11297
  * @param {*} [options] Override http request option.
10719
11298
  * @throws {RequiredError}
10720
11299
  */
10721
- putTransferConnection(putTransferConnectionRequest: PutTransferConnectionRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
10722
- }
11300
+ getGetCallTariffs: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11301
+ /**
11302
+ * Get Call Tariffs Detailed
11303
+ * @param {*} [options] Override http request option.
11304
+ * @throws {RequiredError}
11305
+ */
11306
+ getGetCallTariffsDetails: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11307
+ /**
11308
+ * Get Children
11309
+ * @param {number} [billCustomerId] Customer ID
11310
+ * @param {*} [options] Override http request option.
11311
+ * @throws {RequiredError}
11312
+ */
11313
+ getGetChildren: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11314
+ /**
11315
+ * Get Connections
11316
+ * @param {GetGetConnectionsTypeEnum} [type] Connection Type
11317
+ * @param {number} [billCustomerId] Customer ID
11318
+ * @param {*} [options] Override http request option.
11319
+ * @throws {RequiredError}
11320
+ */
11321
+ getGetConnections: (type?: GetGetConnectionsTypeEnum, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11322
+ /**
11323
+ * Get Customer (Global)
11324
+ * @param {string} [accountId] Account ID
11325
+ * @param {number} [customerId] Customer ID
11326
+ * @param {string} [customerCode] Customer Code
11327
+ * @param {*} [options] Override http request option.
11328
+ * @throws {RequiredError}
11329
+ */
11330
+ getGetCustomer: (accountId?: string, customerId?: number, customerCode?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11331
+ /**
11332
+ * Get Inbound Tariffs
11333
+ * @param {*} [options] Override http request option.
11334
+ * @throws {RequiredError}
11335
+ */
11336
+ getGetInboundTariffs: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11337
+ /**
11338
+ * Get Inbound Tariffs Detailed
11339
+ * @param {*} [options] Override http request option.
11340
+ * @throws {RequiredError}
11341
+ */
11342
+ getGetInboundTariffsDetails: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11343
+ /**
11344
+ * Get Price Groups
11345
+ * @param {*} [options] Override http request option.
11346
+ * @throws {RequiredError}
11347
+ */
11348
+ getGetPriceGroups: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11349
+ /**
11350
+ * Get Service Plan
11351
+ * @param {number} servicePlanId Service Plan ID
11352
+ * @param {*} [options] Override http request option.
11353
+ * @throws {RequiredError}
11354
+ */
11355
+ getGetServicePlan: (servicePlanId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11356
+ /**
11357
+ * Get Service Plans
11358
+ * @param {*} [options] Override http request option.
11359
+ * @throws {RequiredError}
11360
+ */
11361
+ getGetServicePlans: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11362
+ /**
11363
+ * Get Service Plans Detailed
11364
+ * @param {GetGetServicesPlanDetailsTypeEnum} [type] Connection Type
11365
+ * @param {*} [options] Override http request option.
11366
+ * @throws {RequiredError}
11367
+ */
11368
+ getGetServicesPlanDetails: (type?: GetGetServicesPlanDetailsTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11369
+ /**
11370
+ * Get SIP Trunk List
11371
+ * @param {number} [billCustomerId] Customer ID
11372
+ * @param {*} [options] Override http request option.
11373
+ * @throws {RequiredError}
11374
+ */
11375
+ getGetSipTrunkList: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11376
+ /**
11377
+ * Get SIP Trunk Billing
11378
+ * @param {number} [billCustomerId] Customer ID
11379
+ * @param {*} [options] Override http request option.
11380
+ * @throws {RequiredError}
11381
+ */
11382
+ getGetSipTrunksBilling: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11383
+ /**
11384
+ * Get Unconnected Calls
11385
+ * @param {*} [options] Override http request option.
11386
+ * @throws {RequiredError}
11387
+ */
11388
+ getGetUnconnectedCalls: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11389
+ /**
11390
+ * Get Unconnected Services
11391
+ * @param {*} [options] Override http request option.
11392
+ * @throws {RequiredError}
11393
+ */
11394
+ getGetUnconnectedServices: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11395
+ /**
11396
+ * Is Bundle Customer
11397
+ * @param {number} [billCustomerId] Customer ID
11398
+ * @param {*} [options] Override http request option.
11399
+ * @throws {RequiredError}
11400
+ */
11401
+ getIsBundleCustomer: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11402
+ /**
11403
+ * Add Broadband
11404
+ * @param {PostAddBroadbandRequest} postAddBroadbandRequest
11405
+ * @param {number} [billCustomerId] Customer ID
11406
+ * @param {*} [options] Override http request option.
11407
+ * @throws {RequiredError}
11408
+ */
11409
+ postAddBroadband: (postAddBroadbandRequest: PostAddBroadbandRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11410
+ /**
11411
+ * Add Call Tariff To Call Tariff Plan
11412
+ * @param {PostAddCallTariffToCallTariffPlanRequest} postAddCallTariffToCallTariffPlanRequest
11413
+ * @param {*} [options] Override http request option.
11414
+ * @throws {RequiredError}
11415
+ */
11416
+ postAddCallTariffToCallTariffPlan: (postAddCallTariffToCallTariffPlanRequest: PostAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11417
+ /**
11418
+ * Add Child Customer
11419
+ * @param {ContactDetail} contactDetail
11420
+ * @param {number} [billCustomerId] Customer ID
11421
+ * @param {number} [customerId] Child Customer ID
11422
+ * @param {*} [options] Override http request option.
11423
+ * @throws {RequiredError}
11424
+ */
11425
+ postAddChildCustomer: (contactDetail: ContactDetail, billCustomerId?: number, customerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11426
+ /**
11427
+ * Add Ethernet
11428
+ * @param {PostAddEthernetRequest} postAddEthernetRequest
11429
+ * @param {number} [billCustomerId] Customer ID
11430
+ * @param {*} [options] Override http request option.
11431
+ * @throws {RequiredError}
11432
+ */
11433
+ postAddEthernet: (postAddEthernetRequest: PostAddEthernetRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11434
+ /**
11435
+ * Add Recurring Charge
11436
+ * @param {PostAddRecurringChargeRequest} postAddRecurringChargeRequest
11437
+ * @param {number} [billCustomerId] Customer ID
11438
+ * @param {*} [options] Override http request option.
11439
+ * @throws {RequiredError}
11440
+ */
11441
+ postAddRecurringCharge: (postAddRecurringChargeRequest: PostAddRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11442
+ /**
11443
+ * Add Service To Service Plan
11444
+ * @param {PostAddServiceToServicePlanRequest} postAddServiceToServicePlanRequest
11445
+ * @param {*} [options] Override http request option.
11446
+ * @throws {RequiredError}
11447
+ */
11448
+ postAddServiceToServicePlan: (postAddServiceToServicePlanRequest: PostAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11449
+ /**
11450
+ * Add SIP Trunk DDIs
11451
+ * @param {PostAddSipTrunkDDIsRequest} postAddSipTrunkDDIsRequest
11452
+ * @param {number} [billCustomerId] Customer ID
11453
+ * @param {*} [options] Override http request option.
11454
+ * @throws {RequiredError}
11455
+ */
11456
+ postAddSipTrunkDDIs: (postAddSipTrunkDDIsRequest: PostAddSipTrunkDDIsRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11457
+ /**
11458
+ * Disconnect Connection
11459
+ * @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
11460
+ * @param {number} [billCustomerId] Customer ID
11461
+ * @param {*} [options] Override http request option.
11462
+ * @throws {RequiredError}
11463
+ */
11464
+ postDisconnectConnection: (postDisconnectDDIRequest: PostDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11465
+ /**
11466
+ * Disconnect DDI
11467
+ * @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
11468
+ * @param {number} [billCustomerId] Customer ID
11469
+ * @param {*} [options] Override http request option.
11470
+ * @throws {RequiredError}
11471
+ */
11472
+ postDisconnectDDI: (postDisconnectDDIRequest: PostDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11473
+ /**
11474
+ * Add Base Service
11475
+ * @param {PostGetBaseServicesRequest} postGetBaseServicesRequest
11476
+ * @param {*} [options] Override http request option.
11477
+ * @throws {RequiredError}
11478
+ */
11479
+ postGetBaseServices: (postGetBaseServicesRequest: PostGetBaseServicesRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11480
+ /**
11481
+ * Add Call Tariff
11482
+ * @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
11483
+ * @param {*} [options] Override http request option.
11484
+ * @throws {RequiredError}
11485
+ */
11486
+ postGetCallTariffPlan: (putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11487
+ /**
11488
+ * Add Connection
11489
+ * @param {number} [billCustomerId] Customer ID
11490
+ * @param {ConnectionRequest} [connectionRequest]
11491
+ * @param {*} [options] Override http request option.
11492
+ * @throws {RequiredError}
11493
+ */
11494
+ postGetConnections: (billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11495
+ /**
11496
+ * Add Price Group
11497
+ * @param {PostGetPriceGroupsRequest} postGetPriceGroupsRequest
11498
+ * @param {*} [options] Override http request option.
11499
+ * @throws {RequiredError}
11500
+ */
11501
+ postGetPriceGroups: (postGetPriceGroupsRequest: PostGetPriceGroupsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11502
+ /**
11503
+ * Add Service Plan
11504
+ * @param {PostGetServicePlansRequest} postGetServicePlansRequest
11505
+ * @param {*} [options] Override http request option.
11506
+ * @throws {RequiredError}
11507
+ */
11508
+ postGetServicePlans: (postGetServicePlansRequest: PostGetServicePlansRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11509
+ /**
11510
+ * Add SIP Trunk billing
11511
+ * @param {PostGetSipTrunksBillingRequest} postGetSipTrunksBillingRequest
11512
+ * @param {number} [billCustomerId] Customer ID
11513
+ * @param {*} [options] Override http request option.
11514
+ * @throws {RequiredError}
11515
+ */
11516
+ postGetSipTrunksBilling: (postGetSipTrunksBillingRequest: PostGetSipTrunksBillingRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11517
+ /**
11518
+ * Send Invoices
11519
+ * @param {*} [options] Override http request option.
11520
+ * @throws {RequiredError}
11521
+ */
11522
+ postSendInvoices: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11523
+ /**
11524
+ * Update Connection
11525
+ * @param {PostUpdateConnectionRequest} postUpdateConnectionRequest
11526
+ * @param {number} [connectionId] Connection ID
11527
+ * @param {number} [billCustomerId] Customer ID
11528
+ * @param {*} [options] Override http request option.
11529
+ * @throws {RequiredError}
11530
+ */
11531
+ postUpdateConnection: (postUpdateConnectionRequest: PostUpdateConnectionRequest, connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11532
+ /**
11533
+ * Update Recurring Charge
11534
+ * @param {number} id Recurring Charge ID
11535
+ * @param {PostUpdateRecurringChargeRequest} postUpdateRecurringChargeRequest
11536
+ * @param {number} [billCustomerId] Customer ID
11537
+ * @param {*} [options] Override http request option.
11538
+ * @throws {RequiredError}
11539
+ */
11540
+ postUpdateRecurringCharge: (id: number, postUpdateRecurringChargeRequest: PostUpdateRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11541
+ /**
11542
+ * Update Call Tariff
11543
+ * @param {number} callTariffPlanId Call Tariff ID
11544
+ * @param {PutAddCallTariffToCallTariffPlanRequest} putAddCallTariffToCallTariffPlanRequest
11545
+ * @param {*} [options] Override http request option.
11546
+ * @throws {RequiredError}
11547
+ */
11548
+ putAddCallTariffToCallTariffPlan: (callTariffPlanId: number, putAddCallTariffToCallTariffPlanRequest: PutAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11549
+ /**
11550
+ * Update Service
11551
+ * @param {number} id Service ID
11552
+ * @param {PutAddServiceToServicePlanRequest} putAddServiceToServicePlanRequest
11553
+ * @param {*} [options] Override http request option.
11554
+ * @throws {RequiredError}
11555
+ */
11556
+ putAddServiceToServicePlan: (id: number, putAddServiceToServicePlanRequest: PutAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11557
+ /**
11558
+ * Transfer Billing Connection
11559
+ * @param {PutConnectionSearchRequest} putConnectionSearchRequest Transfer Request
11560
+ * @param {number} [id] Connection ID
11561
+ * @param {string} [cli] CLI
11562
+ * @param {boolean} [skipDDis] Skip DDIs
11563
+ * @param {*} [options] Override http request option.
11564
+ * @throws {RequiredError}
11565
+ */
11566
+ putConnectionSearch: (putConnectionSearchRequest: PutConnectionSearchRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11567
+ /**
11568
+ * Convert Child To Parent
11569
+ * @param {number} [billCustomerId] Customer ID
11570
+ * @param {*} [options] Override http request option.
11571
+ * @throws {RequiredError}
11572
+ */
11573
+ putConvertChildToParent: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11574
+ /**
11575
+ * Disable Bundles
11576
+ * @param {number} [billCustomerId] Customer ID
11577
+ * @param {*} [options] Override http request option.
11578
+ * @throws {RequiredError}
11579
+ */
11580
+ putDisableBundles: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11581
+ /**
11582
+ * Disable DDI Billing
11583
+ * @param {number} [billCustomerId] Customer ID
11584
+ * @param {*} [options] Override http request option.
11585
+ * @throws {RequiredError}
11586
+ */
11587
+ putDisableDdiBilling: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11588
+ /**
11589
+ * Enable Bundles
11590
+ * @param {number} [billCustomerId] Customer ID
11591
+ * @param {*} [options] Override http request option.
11592
+ * @throws {RequiredError}
11593
+ */
11594
+ putEnableBundles: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11595
+ /**
11596
+ * Enable DDI Billing
11597
+ * @param {number} [billCustomerId] Customer ID
11598
+ * @param {*} [options] Override http request option.
11599
+ * @throws {RequiredError}
11600
+ */
11601
+ putEnableDdiBilling: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11602
+ /**
11603
+ * Update Base Service
11604
+ * @param {number} baseServiceId Base Service Plan ID
11605
+ * @param {PutGetBaseServicesRequest} putGetBaseServicesRequest
11606
+ * @param {*} [options] Override http request option.
11607
+ * @throws {RequiredError}
11608
+ */
11609
+ putGetBaseServices: (baseServiceId: number, putGetBaseServicesRequest: PutGetBaseServicesRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11610
+ /**
11611
+ * Update Call Tariff
11612
+ * @param {number} callTariffPlanId Call Tariff Plan ID
11613
+ * @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
11614
+ * @param {*} [options] Override http request option.
11615
+ * @throws {RequiredError}
11616
+ */
11617
+ putGetCallTariffPlan: (callTariffPlanId: number, putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11618
+ /**
11619
+ * Update Connection
11620
+ * @param {number} connectionId Connection ID
11621
+ * @param {number} [billCustomerId] Customer ID
11622
+ * @param {ConnectionRequest} [connectionRequest]
11623
+ * @param {*} [options] Override http request option.
11624
+ * @throws {RequiredError}
11625
+ */
11626
+ putGetConnections: (connectionId: number, billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11627
+ /**
11628
+ * Update Price Group
11629
+ * @param {number} priceGroupId Price Group ID
11630
+ * @param {PutGetPriceGroupsRequest} putGetPriceGroupsRequest
11631
+ * @param {*} [options] Override http request option.
11632
+ * @throws {RequiredError}
11633
+ */
11634
+ putGetPriceGroups: (priceGroupId: number, putGetPriceGroupsRequest: PutGetPriceGroupsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11635
+ };
11636
+ /**
11637
+ * BillingApi - functional programming interface
11638
+ */
11639
+ export declare const BillingApiFp: (configuration?: Configuration) => {
11640
+ /**
11641
+ * Delete Call Tariff
11642
+ * @param {string} priceGroupName Price Group Name
11643
+ * @param {*} [options] Override http request option.
11644
+ * @throws {RequiredError}
11645
+ */
11646
+ deleteAddCallTariffToCallTariffPlan(priceGroupName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
11647
+ /**
11648
+ * Delete Recurring Charges
11649
+ * @param {number} id Recurring Charge ID
11650
+ * @param {number} [billCustomerId] Customer ID
11651
+ * @param {*} [options] Override http request option.
11652
+ * @throws {RequiredError}
11653
+ */
11654
+ deleteAddRecurringCharge(id: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
11655
+ /**
11656
+ * Delete Service
11657
+ * @param {string} planGroup Plan Group
11658
+ * @param {string} serviceCode Service Code
11659
+ * @param {*} [options] Override http request option.
11660
+ * @throws {RequiredError}
11661
+ */
11662
+ deleteAddServiceToServicePlan(planGroup: string, serviceCode: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
11663
+ /**
11664
+ * Delete Customer
11665
+ * @param {number} [billCustomerId] Customer ID
11666
+ * @param {*} [options] Override http request option.
11667
+ * @throws {RequiredError}
11668
+ */
11669
+ deleteCloseAccount(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
11670
+ /**
11671
+ * Delete Base Service
11672
+ * @param {number} baseServiceId Base Service Plan ID
11673
+ * @param {*} [options] Override http request option.
11674
+ * @throws {RequiredError}
11675
+ */
11676
+ deleteGetBaseServices(baseServiceId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
11677
+ /**
11678
+ * Delete Call Tariff Plan
11679
+ * @param {number} callTariffPlanId Call Tariff Plan ID
11680
+ * @param {*} [options] Override http request option.
11681
+ * @throws {RequiredError}
11682
+ */
11683
+ deleteGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
11684
+ /**
11685
+ * Delete Price Group
11686
+ * @param {number} priceGroupId Price Group ID
11687
+ * @param {*} [options] Override http request option.
11688
+ * @throws {RequiredError}
11689
+ */
11690
+ deleteGetPriceGroups(priceGroupId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
11691
+ /**
11692
+ * Delete Service Plan
11693
+ * @param {number} servicePlanId Service Plan ID
11694
+ * @param {*} [options] Override http request option.
11695
+ * @throws {RequiredError}
11696
+ */
11697
+ deleteGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
11698
+ /**
11699
+ * Get Recurring Charges
11700
+ * @param {number} [billCustomerId] Customer ID
11701
+ * @param {*} [options] Override http request option.
11702
+ * @throws {RequiredError}
11703
+ */
11704
+ getAddRecurringCharge(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RecurringCharge>>>;
11705
+ /**
11706
+ * Get Service
11707
+ * @param {number} id Service ID
11708
+ * @param {*} [options] Override http request option.
11709
+ * @throws {RequiredError}
11710
+ */
11711
+ getAddServiceToServicePlan(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Service>>;
11712
+ /**
11713
+ * Get SIP Trunk DDIs
11714
+ * @param {number} [connectionId] Connection ID
11715
+ * @param {number} [billCustomerId] Customer ID
11716
+ * @param {*} [options] Override http request option.
11717
+ * @throws {RequiredError}
11718
+ */
11719
+ getAddSipTrunkDDIs(connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OutboundCli>>>;
11720
+ /**
11721
+ * Connection Search
11722
+ * @param {string} search Search
11723
+ * @param {*} [options] Override http request option.
11724
+ * @throws {RequiredError}
11725
+ */
11726
+ getConnectionSearch(search: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OutboundCli>>>;
11727
+ /**
11728
+ * Get Billing Customers
11729
+ * @summary Get Billing Customers
11730
+ * @param {*} [options] Override http request option.
11731
+ * @throws {RequiredError}
11732
+ */
11733
+ getGetAllCustomer(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
11734
+ [key: string]: {
11735
+ [key: string]: string;
11736
+ };
11737
+ }>>;
11738
+ /**
11739
+ * Get All MT SIP Trunks
11740
+ * @param {number} [billCustomerId] Customer ID
11741
+ * @param {*} [options] Override http request option.
11742
+ * @throws {RequiredError}
11743
+ */
11744
+ getGetAllMtSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Array<string>>>>;
11745
+ /**
11746
+ * Get All SIP Trunks
11747
+ * @param {number} [billCustomerId] Customer ID
11748
+ * @param {*} [options] Override http request option.
11749
+ * @throws {RequiredError}
11750
+ */
11751
+ getGetAllSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Array<string>>>>;
11752
+ /**
11753
+ * Get Base Services
11754
+ * @param {*} [options] Override http request option.
11755
+ * @throws {RequiredError}
11756
+ */
11757
+ getGetBaseServices(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BaseService>>>;
11758
+ /**
11759
+ * Get Customer
11760
+ * @param {number} [billCustomerId] Customer ID
11761
+ * @param {*} [options] Override http request option.
11762
+ * @throws {RequiredError}
11763
+ */
11764
+ getGetBillingCustomerDetails(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Customer>>;
11765
+ /**
11766
+ * Get Bundle Calls With Cost
11767
+ * @param {*} [options] Override http request option.
11768
+ * @throws {RequiredError}
11769
+ */
11770
+ getGetBundleCallsWithCost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProcessedCdr>>>;
11771
+ /**
11772
+ * Get Call Tariff
11773
+ * @param {number} callTariffPlanId Call Tariff Plan ID
11774
+ * @param {*} [options] Override http request option.
11775
+ * @throws {RequiredError}
11776
+ */
11777
+ getGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallTariffPlan>>;
11778
+ /**
11779
+ * Get Call Tariffs
11780
+ * @param {*} [options] Override http request option.
11781
+ * @throws {RequiredError}
11782
+ */
11783
+ getGetCallTariffs(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CallTariffPlan>>>;
11784
+ /**
11785
+ * Get Call Tariffs Detailed
11786
+ * @param {*} [options] Override http request option.
11787
+ * @throws {RequiredError}
11788
+ */
11789
+ getGetCallTariffsDetails(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CallTariffPlan>>>;
11790
+ /**
11791
+ * Get Children
11792
+ * @param {number} [billCustomerId] Customer ID
11793
+ * @param {*} [options] Override http request option.
11794
+ * @throws {RequiredError}
11795
+ */
11796
+ getGetChildren(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<object>>>;
11797
+ /**
11798
+ * Get Connections
11799
+ * @param {GetGetConnectionsTypeEnum} [type] Connection Type
11800
+ * @param {number} [billCustomerId] Customer ID
11801
+ * @param {*} [options] Override http request option.
11802
+ * @throws {RequiredError}
11803
+ */
11804
+ getGetConnections(type?: GetGetConnectionsTypeEnum, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OutboundCli>>>;
11805
+ /**
11806
+ * Get Customer (Global)
11807
+ * @param {string} [accountId] Account ID
11808
+ * @param {number} [customerId] Customer ID
11809
+ * @param {string} [customerCode] Customer Code
11810
+ * @param {*} [options] Override http request option.
11811
+ * @throws {RequiredError}
11812
+ */
11813
+ getGetCustomer(accountId?: string, customerId?: number, customerCode?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Customer>>;
11814
+ /**
11815
+ * Get Inbound Tariffs
11816
+ * @param {*} [options] Override http request option.
11817
+ * @throws {RequiredError}
11818
+ */
11819
+ getGetInboundTariffs(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
11820
+ /**
11821
+ * Get Inbound Tariffs Detailed
11822
+ * @param {*} [options] Override http request option.
11823
+ * @throws {RequiredError}
11824
+ */
11825
+ getGetInboundTariffsDetails(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<InboundTariffPlanResponse>>>;
11826
+ /**
11827
+ * Get Price Groups
11828
+ * @param {*} [options] Override http request option.
11829
+ * @throws {RequiredError}
11830
+ */
11831
+ getGetPriceGroups(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PriceGroup>>>;
11832
+ /**
11833
+ * Get Service Plan
11834
+ * @param {number} servicePlanId Service Plan ID
11835
+ * @param {*} [options] Override http request option.
11836
+ * @throws {RequiredError}
11837
+ */
11838
+ getGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServicePlan>>;
11839
+ /**
11840
+ * Get Service Plans
11841
+ * @param {*} [options] Override http request option.
11842
+ * @throws {RequiredError}
11843
+ */
11844
+ getGetServicePlans(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ServicePlan>>>;
11845
+ /**
11846
+ * Get Service Plans Detailed
11847
+ * @param {GetGetServicesPlanDetailsTypeEnum} [type] Connection Type
11848
+ * @param {*} [options] Override http request option.
11849
+ * @throws {RequiredError}
11850
+ */
11851
+ getGetServicesPlanDetails(type?: GetGetServicesPlanDetailsTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ServicePlan>>>;
11852
+ /**
11853
+ * Get SIP Trunk List
11854
+ * @param {number} [billCustomerId] Customer ID
11855
+ * @param {*} [options] Override http request option.
11856
+ * @throws {RequiredError}
11857
+ */
11858
+ getGetSipTrunkList(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Array<string>>>>;
11859
+ /**
11860
+ * Get SIP Trunk Billing
11861
+ * @param {number} [billCustomerId] Customer ID
11862
+ * @param {*} [options] Override http request option.
11863
+ * @throws {RequiredError}
11864
+ */
11865
+ getGetSipTrunksBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
11866
+ /**
11867
+ * Get Unconnected Calls
11868
+ * @param {*} [options] Override http request option.
11869
+ * @throws {RequiredError}
11870
+ */
11871
+ getGetUnconnectedCalls(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProcessedCdr>>>;
11872
+ /**
11873
+ * Get Unconnected Services
11874
+ * @param {*} [options] Override http request option.
11875
+ * @throws {RequiredError}
11876
+ */
11877
+ getGetUnconnectedServices(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProcessedCdr>>>;
11878
+ /**
11879
+ * Is Bundle Customer
11880
+ * @param {number} [billCustomerId] Customer ID
11881
+ * @param {*} [options] Override http request option.
11882
+ * @throws {RequiredError}
11883
+ */
11884
+ getIsBundleCustomer(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
11885
+ /**
11886
+ * Add Broadband
11887
+ * @param {PostAddBroadbandRequest} postAddBroadbandRequest
11888
+ * @param {number} [billCustomerId] Customer ID
11889
+ * @param {*} [options] Override http request option.
11890
+ * @throws {RequiredError}
11891
+ */
11892
+ postAddBroadband(postAddBroadbandRequest: PostAddBroadbandRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
11893
+ /**
11894
+ * Add Call Tariff To Call Tariff Plan
11895
+ * @param {PostAddCallTariffToCallTariffPlanRequest} postAddCallTariffToCallTariffPlanRequest
11896
+ * @param {*} [options] Override http request option.
11897
+ * @throws {RequiredError}
11898
+ */
11899
+ postAddCallTariffToCallTariffPlan(postAddCallTariffToCallTariffPlanRequest: PostAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallTariffPlan>>;
11900
+ /**
11901
+ * Add Child Customer
11902
+ * @param {ContactDetail} contactDetail
11903
+ * @param {number} [billCustomerId] Customer ID
11904
+ * @param {number} [customerId] Child Customer ID
11905
+ * @param {*} [options] Override http request option.
11906
+ * @throws {RequiredError}
11907
+ */
11908
+ postAddChildCustomer(contactDetail: ContactDetail, billCustomerId?: number, customerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Customer>>;
11909
+ /**
11910
+ * Add Ethernet
11911
+ * @param {PostAddEthernetRequest} postAddEthernetRequest
11912
+ * @param {number} [billCustomerId] Customer ID
11913
+ * @param {*} [options] Override http request option.
11914
+ * @throws {RequiredError}
11915
+ */
11916
+ postAddEthernet(postAddEthernetRequest: PostAddEthernetRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
11917
+ /**
11918
+ * Add Recurring Charge
11919
+ * @param {PostAddRecurringChargeRequest} postAddRecurringChargeRequest
11920
+ * @param {number} [billCustomerId] Customer ID
11921
+ * @param {*} [options] Override http request option.
11922
+ * @throws {RequiredError}
11923
+ */
11924
+ postAddRecurringCharge(postAddRecurringChargeRequest: PostAddRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecurringCharge>>;
11925
+ /**
11926
+ * Add Service To Service Plan
11927
+ * @param {PostAddServiceToServicePlanRequest} postAddServiceToServicePlanRequest
11928
+ * @param {*} [options] Override http request option.
11929
+ * @throws {RequiredError}
11930
+ */
11931
+ postAddServiceToServicePlan(postAddServiceToServicePlanRequest: PostAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Service>>;
11932
+ /**
11933
+ * Add SIP Trunk DDIs
11934
+ * @param {PostAddSipTrunkDDIsRequest} postAddSipTrunkDDIsRequest
11935
+ * @param {number} [billCustomerId] Customer ID
11936
+ * @param {*} [options] Override http request option.
11937
+ * @throws {RequiredError}
11938
+ */
11939
+ postAddSipTrunkDDIs(postAddSipTrunkDDIsRequest: PostAddSipTrunkDDIsRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OutboundCli>>>;
11940
+ /**
11941
+ * Disconnect Connection
11942
+ * @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
11943
+ * @param {number} [billCustomerId] Customer ID
11944
+ * @param {*} [options] Override http request option.
11945
+ * @throws {RequiredError}
11946
+ */
11947
+ postDisconnectConnection(postDisconnectDDIRequest: PostDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
11948
+ /**
11949
+ * Disconnect DDI
11950
+ * @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
11951
+ * @param {number} [billCustomerId] Customer ID
11952
+ * @param {*} [options] Override http request option.
11953
+ * @throws {RequiredError}
11954
+ */
11955
+ postDisconnectDDI(postDisconnectDDIRequest: PostDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
11956
+ /**
11957
+ * Add Base Service
11958
+ * @param {PostGetBaseServicesRequest} postGetBaseServicesRequest
11959
+ * @param {*} [options] Override http request option.
11960
+ * @throws {RequiredError}
11961
+ */
11962
+ postGetBaseServices(postGetBaseServicesRequest: PostGetBaseServicesRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Service>>;
11963
+ /**
11964
+ * Add Call Tariff
11965
+ * @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
11966
+ * @param {*} [options] Override http request option.
11967
+ * @throws {RequiredError}
11968
+ */
11969
+ postGetCallTariffPlan(putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallTariffPlan>>;
11970
+ /**
11971
+ * Add Connection
11972
+ * @param {number} [billCustomerId] Customer ID
11973
+ * @param {ConnectionRequest} [connectionRequest]
11974
+ * @param {*} [options] Override http request option.
11975
+ * @throws {RequiredError}
11976
+ */
11977
+ postGetConnections(billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
11978
+ /**
11979
+ * Add Price Group
11980
+ * @param {PostGetPriceGroupsRequest} postGetPriceGroupsRequest
11981
+ * @param {*} [options] Override http request option.
11982
+ * @throws {RequiredError}
11983
+ */
11984
+ postGetPriceGroups(postGetPriceGroupsRequest: PostGetPriceGroupsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PriceGroup>>;
11985
+ /**
11986
+ * Add Service Plan
11987
+ * @param {PostGetServicePlansRequest} postGetServicePlansRequest
11988
+ * @param {*} [options] Override http request option.
11989
+ * @throws {RequiredError}
11990
+ */
11991
+ postGetServicePlans(postGetServicePlansRequest: PostGetServicePlansRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServicePlan>>;
11992
+ /**
11993
+ * Add SIP Trunk billing
11994
+ * @param {PostGetSipTrunksBillingRequest} postGetSipTrunksBillingRequest
11995
+ * @param {number} [billCustomerId] Customer ID
11996
+ * @param {*} [options] Override http request option.
11997
+ * @throws {RequiredError}
11998
+ */
11999
+ postGetSipTrunksBilling(postGetSipTrunksBillingRequest: PostGetSipTrunksBillingRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
12000
+ /**
12001
+ * Send Invoices
12002
+ * @param {*} [options] Override http request option.
12003
+ * @throws {RequiredError}
12004
+ */
12005
+ postSendInvoices(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
12006
+ /**
12007
+ * Update Connection
12008
+ * @param {PostUpdateConnectionRequest} postUpdateConnectionRequest
12009
+ * @param {number} [connectionId] Connection ID
12010
+ * @param {number} [billCustomerId] Customer ID
12011
+ * @param {*} [options] Override http request option.
12012
+ * @throws {RequiredError}
12013
+ */
12014
+ postUpdateConnection(postUpdateConnectionRequest: PostUpdateConnectionRequest, connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
12015
+ /**
12016
+ * Update Recurring Charge
12017
+ * @param {number} id Recurring Charge ID
12018
+ * @param {PostUpdateRecurringChargeRequest} postUpdateRecurringChargeRequest
12019
+ * @param {number} [billCustomerId] Customer ID
12020
+ * @param {*} [options] Override http request option.
12021
+ * @throws {RequiredError}
12022
+ */
12023
+ postUpdateRecurringCharge(id: number, postUpdateRecurringChargeRequest: PostUpdateRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecurringCharge>>;
12024
+ /**
12025
+ * Update Call Tariff
12026
+ * @param {number} callTariffPlanId Call Tariff ID
12027
+ * @param {PutAddCallTariffToCallTariffPlanRequest} putAddCallTariffToCallTariffPlanRequest
12028
+ * @param {*} [options] Override http request option.
12029
+ * @throws {RequiredError}
12030
+ */
12031
+ putAddCallTariffToCallTariffPlan(callTariffPlanId: number, putAddCallTariffToCallTariffPlanRequest: PutAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallTariffPlan>>;
12032
+ /**
12033
+ * Update Service
12034
+ * @param {number} id Service ID
12035
+ * @param {PutAddServiceToServicePlanRequest} putAddServiceToServicePlanRequest
12036
+ * @param {*} [options] Override http request option.
12037
+ * @throws {RequiredError}
12038
+ */
12039
+ putAddServiceToServicePlan(id: number, putAddServiceToServicePlanRequest: PutAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Service>>;
12040
+ /**
12041
+ * Transfer Billing Connection
12042
+ * @param {PutConnectionSearchRequest} putConnectionSearchRequest Transfer Request
12043
+ * @param {number} [id] Connection ID
12044
+ * @param {string} [cli] CLI
12045
+ * @param {boolean} [skipDDis] Skip DDIs
12046
+ * @param {*} [options] Override http request option.
12047
+ * @throws {RequiredError}
12048
+ */
12049
+ putConnectionSearch(putConnectionSearchRequest: PutConnectionSearchRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
12050
+ /**
12051
+ * Convert Child To Parent
12052
+ * @param {number} [billCustomerId] Customer ID
12053
+ * @param {*} [options] Override http request option.
12054
+ * @throws {RequiredError}
12055
+ */
12056
+ putConvertChildToParent(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Customer>>;
12057
+ /**
12058
+ * Disable Bundles
12059
+ * @param {number} [billCustomerId] Customer ID
12060
+ * @param {*} [options] Override http request option.
12061
+ * @throws {RequiredError}
12062
+ */
12063
+ putDisableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
12064
+ /**
12065
+ * Disable DDI Billing
12066
+ * @param {number} [billCustomerId] Customer ID
12067
+ * @param {*} [options] Override http request option.
12068
+ * @throws {RequiredError}
12069
+ */
12070
+ putDisableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
12071
+ /**
12072
+ * Enable Bundles
12073
+ * @param {number} [billCustomerId] Customer ID
12074
+ * @param {*} [options] Override http request option.
12075
+ * @throws {RequiredError}
12076
+ */
12077
+ putEnableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
12078
+ /**
12079
+ * Enable DDI Billing
12080
+ * @param {number} [billCustomerId] Customer ID
12081
+ * @param {*} [options] Override http request option.
12082
+ * @throws {RequiredError}
12083
+ */
12084
+ putEnableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
12085
+ /**
12086
+ * Update Base Service
12087
+ * @param {number} baseServiceId Base Service Plan ID
12088
+ * @param {PutGetBaseServicesRequest} putGetBaseServicesRequest
12089
+ * @param {*} [options] Override http request option.
12090
+ * @throws {RequiredError}
12091
+ */
12092
+ putGetBaseServices(baseServiceId: number, putGetBaseServicesRequest: PutGetBaseServicesRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BaseService>>;
12093
+ /**
12094
+ * Update Call Tariff
12095
+ * @param {number} callTariffPlanId Call Tariff Plan ID
12096
+ * @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
12097
+ * @param {*} [options] Override http request option.
12098
+ * @throws {RequiredError}
12099
+ */
12100
+ putGetCallTariffPlan(callTariffPlanId: number, putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallTariffPlan>>;
12101
+ /**
12102
+ * Update Connection
12103
+ * @param {number} connectionId Connection ID
12104
+ * @param {number} [billCustomerId] Customer ID
12105
+ * @param {ConnectionRequest} [connectionRequest]
12106
+ * @param {*} [options] Override http request option.
12107
+ * @throws {RequiredError}
12108
+ */
12109
+ putGetConnections(connectionId: number, billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
12110
+ /**
12111
+ * Update Price Group
12112
+ * @param {number} priceGroupId Price Group ID
12113
+ * @param {PutGetPriceGroupsRequest} putGetPriceGroupsRequest
12114
+ * @param {*} [options] Override http request option.
12115
+ * @throws {RequiredError}
12116
+ */
12117
+ putGetPriceGroups(priceGroupId: number, putGetPriceGroupsRequest: PutGetPriceGroupsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PriceGroup>>;
12118
+ };
12119
+ /**
12120
+ * BillingApi - factory interface
12121
+ */
12122
+ export declare const BillingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
12123
+ /**
12124
+ * Delete Call Tariff
12125
+ * @param {string} priceGroupName Price Group Name
12126
+ * @param {*} [options] Override http request option.
12127
+ * @throws {RequiredError}
12128
+ */
12129
+ deleteAddCallTariffToCallTariffPlan(priceGroupName: string, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
12130
+ /**
12131
+ * Delete Recurring Charges
12132
+ * @param {number} id Recurring Charge ID
12133
+ * @param {number} [billCustomerId] Customer ID
12134
+ * @param {*} [options] Override http request option.
12135
+ * @throws {RequiredError}
12136
+ */
12137
+ deleteAddRecurringCharge(id: number, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<number>;
12138
+ /**
12139
+ * Delete Service
12140
+ * @param {string} planGroup Plan Group
12141
+ * @param {string} serviceCode Service Code
12142
+ * @param {*} [options] Override http request option.
12143
+ * @throws {RequiredError}
12144
+ */
12145
+ deleteAddServiceToServicePlan(planGroup: string, serviceCode: string, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
12146
+ /**
12147
+ * Delete Customer
12148
+ * @param {number} [billCustomerId] Customer ID
12149
+ * @param {*} [options] Override http request option.
12150
+ * @throws {RequiredError}
12151
+ */
12152
+ deleteCloseAccount(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<number>;
12153
+ /**
12154
+ * Delete Base Service
12155
+ * @param {number} baseServiceId Base Service Plan ID
12156
+ * @param {*} [options] Override http request option.
12157
+ * @throws {RequiredError}
12158
+ */
12159
+ deleteGetBaseServices(baseServiceId: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
12160
+ /**
12161
+ * Delete Call Tariff Plan
12162
+ * @param {number} callTariffPlanId Call Tariff Plan ID
12163
+ * @param {*} [options] Override http request option.
12164
+ * @throws {RequiredError}
12165
+ */
12166
+ deleteGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
12167
+ /**
12168
+ * Delete Price Group
12169
+ * @param {number} priceGroupId Price Group ID
12170
+ * @param {*} [options] Override http request option.
12171
+ * @throws {RequiredError}
12172
+ */
12173
+ deleteGetPriceGroups(priceGroupId: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
12174
+ /**
12175
+ * Delete Service Plan
12176
+ * @param {number} servicePlanId Service Plan ID
12177
+ * @param {*} [options] Override http request option.
12178
+ * @throws {RequiredError}
12179
+ */
12180
+ deleteGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): AxiosPromise<number>;
12181
+ /**
12182
+ * Get Recurring Charges
12183
+ * @param {number} [billCustomerId] Customer ID
12184
+ * @param {*} [options] Override http request option.
12185
+ * @throws {RequiredError}
12186
+ */
12187
+ getAddRecurringCharge(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<RecurringCharge>>;
12188
+ /**
12189
+ * Get Service
12190
+ * @param {number} id Service ID
12191
+ * @param {*} [options] Override http request option.
12192
+ * @throws {RequiredError}
12193
+ */
12194
+ getAddServiceToServicePlan(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Service>;
12195
+ /**
12196
+ * Get SIP Trunk DDIs
12197
+ * @param {number} [connectionId] Connection ID
12198
+ * @param {number} [billCustomerId] Customer ID
12199
+ * @param {*} [options] Override http request option.
12200
+ * @throws {RequiredError}
12201
+ */
12202
+ getAddSipTrunkDDIs(connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<OutboundCli>>;
12203
+ /**
12204
+ * Connection Search
12205
+ * @param {string} search Search
12206
+ * @param {*} [options] Override http request option.
12207
+ * @throws {RequiredError}
12208
+ */
12209
+ getConnectionSearch(search: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<OutboundCli>>;
12210
+ /**
12211
+ * Get Billing Customers
12212
+ * @summary Get Billing Customers
12213
+ * @param {*} [options] Override http request option.
12214
+ * @throws {RequiredError}
12215
+ */
12216
+ getGetAllCustomer(options?: RawAxiosRequestConfig): AxiosPromise<{
12217
+ [key: string]: {
12218
+ [key: string]: string;
12219
+ };
12220
+ }>;
12221
+ /**
12222
+ * Get All MT SIP Trunks
12223
+ * @param {number} [billCustomerId] Customer ID
12224
+ * @param {*} [options] Override http request option.
12225
+ * @throws {RequiredError}
12226
+ */
12227
+ getGetAllMtSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<Array<string>>>;
12228
+ /**
12229
+ * Get All SIP Trunks
12230
+ * @param {number} [billCustomerId] Customer ID
12231
+ * @param {*} [options] Override http request option.
12232
+ * @throws {RequiredError}
12233
+ */
12234
+ getGetAllSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<Array<string>>>;
12235
+ /**
12236
+ * Get Base Services
12237
+ * @param {*} [options] Override http request option.
12238
+ * @throws {RequiredError}
12239
+ */
12240
+ getGetBaseServices(options?: RawAxiosRequestConfig): AxiosPromise<Array<BaseService>>;
12241
+ /**
12242
+ * Get Customer
12243
+ * @param {number} [billCustomerId] Customer ID
12244
+ * @param {*} [options] Override http request option.
12245
+ * @throws {RequiredError}
12246
+ */
12247
+ getGetBillingCustomerDetails(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Customer>;
12248
+ /**
12249
+ * Get Bundle Calls With Cost
12250
+ * @param {*} [options] Override http request option.
12251
+ * @throws {RequiredError}
12252
+ */
12253
+ getGetBundleCallsWithCost(options?: RawAxiosRequestConfig): AxiosPromise<Array<ProcessedCdr>>;
12254
+ /**
12255
+ * Get Call Tariff
12256
+ * @param {number} callTariffPlanId Call Tariff Plan ID
12257
+ * @param {*} [options] Override http request option.
12258
+ * @throws {RequiredError}
12259
+ */
12260
+ getGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): AxiosPromise<CallTariffPlan>;
12261
+ /**
12262
+ * Get Call Tariffs
12263
+ * @param {*} [options] Override http request option.
12264
+ * @throws {RequiredError}
12265
+ */
12266
+ getGetCallTariffs(options?: RawAxiosRequestConfig): AxiosPromise<Array<CallTariffPlan>>;
12267
+ /**
12268
+ * Get Call Tariffs Detailed
12269
+ * @param {*} [options] Override http request option.
12270
+ * @throws {RequiredError}
12271
+ */
12272
+ getGetCallTariffsDetails(options?: RawAxiosRequestConfig): AxiosPromise<Array<CallTariffPlan>>;
12273
+ /**
12274
+ * Get Children
12275
+ * @param {number} [billCustomerId] Customer ID
12276
+ * @param {*} [options] Override http request option.
12277
+ * @throws {RequiredError}
12278
+ */
12279
+ getGetChildren(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<object>>;
12280
+ /**
12281
+ * Get Connections
12282
+ * @param {GetGetConnectionsTypeEnum} [type] Connection Type
12283
+ * @param {number} [billCustomerId] Customer ID
12284
+ * @param {*} [options] Override http request option.
12285
+ * @throws {RequiredError}
12286
+ */
12287
+ getGetConnections(type?: GetGetConnectionsTypeEnum, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<OutboundCli>>;
12288
+ /**
12289
+ * Get Customer (Global)
12290
+ * @param {string} [accountId] Account ID
12291
+ * @param {number} [customerId] Customer ID
12292
+ * @param {string} [customerCode] Customer Code
12293
+ * @param {*} [options] Override http request option.
12294
+ * @throws {RequiredError}
12295
+ */
12296
+ getGetCustomer(accountId?: string, customerId?: number, customerCode?: string, options?: RawAxiosRequestConfig): AxiosPromise<Customer>;
12297
+ /**
12298
+ * Get Inbound Tariffs
12299
+ * @param {*} [options] Override http request option.
12300
+ * @throws {RequiredError}
12301
+ */
12302
+ getGetInboundTariffs(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
12303
+ /**
12304
+ * Get Inbound Tariffs Detailed
12305
+ * @param {*} [options] Override http request option.
12306
+ * @throws {RequiredError}
12307
+ */
12308
+ getGetInboundTariffsDetails(options?: RawAxiosRequestConfig): AxiosPromise<Array<InboundTariffPlanResponse>>;
12309
+ /**
12310
+ * Get Price Groups
12311
+ * @param {*} [options] Override http request option.
12312
+ * @throws {RequiredError}
12313
+ */
12314
+ getGetPriceGroups(options?: RawAxiosRequestConfig): AxiosPromise<Array<PriceGroup>>;
12315
+ /**
12316
+ * Get Service Plan
12317
+ * @param {number} servicePlanId Service Plan ID
12318
+ * @param {*} [options] Override http request option.
12319
+ * @throws {RequiredError}
12320
+ */
12321
+ getGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): AxiosPromise<ServicePlan>;
12322
+ /**
12323
+ * Get Service Plans
12324
+ * @param {*} [options] Override http request option.
12325
+ * @throws {RequiredError}
12326
+ */
12327
+ getGetServicePlans(options?: RawAxiosRequestConfig): AxiosPromise<Array<ServicePlan>>;
12328
+ /**
12329
+ * Get Service Plans Detailed
12330
+ * @param {GetGetServicesPlanDetailsTypeEnum} [type] Connection Type
12331
+ * @param {*} [options] Override http request option.
12332
+ * @throws {RequiredError}
12333
+ */
12334
+ getGetServicesPlanDetails(type?: GetGetServicesPlanDetailsTypeEnum, options?: RawAxiosRequestConfig): AxiosPromise<Array<ServicePlan>>;
12335
+ /**
12336
+ * Get SIP Trunk List
12337
+ * @param {number} [billCustomerId] Customer ID
12338
+ * @param {*} [options] Override http request option.
12339
+ * @throws {RequiredError}
12340
+ */
12341
+ getGetSipTrunkList(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<Array<string>>>;
12342
+ /**
12343
+ * Get SIP Trunk Billing
12344
+ * @param {number} [billCustomerId] Customer ID
12345
+ * @param {*} [options] Override http request option.
12346
+ * @throws {RequiredError}
12347
+ */
12348
+ getGetSipTrunksBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
12349
+ /**
12350
+ * Get Unconnected Calls
12351
+ * @param {*} [options] Override http request option.
12352
+ * @throws {RequiredError}
12353
+ */
12354
+ getGetUnconnectedCalls(options?: RawAxiosRequestConfig): AxiosPromise<Array<ProcessedCdr>>;
12355
+ /**
12356
+ * Get Unconnected Services
12357
+ * @param {*} [options] Override http request option.
12358
+ * @throws {RequiredError}
12359
+ */
12360
+ getGetUnconnectedServices(options?: RawAxiosRequestConfig): AxiosPromise<Array<ProcessedCdr>>;
12361
+ /**
12362
+ * Is Bundle Customer
12363
+ * @param {number} [billCustomerId] Customer ID
12364
+ * @param {*} [options] Override http request option.
12365
+ * @throws {RequiredError}
12366
+ */
12367
+ getIsBundleCustomer(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
12368
+ /**
12369
+ * Add Broadband
12370
+ * @param {PostAddBroadbandRequest} postAddBroadbandRequest
12371
+ * @param {number} [billCustomerId] Customer ID
12372
+ * @param {*} [options] Override http request option.
12373
+ * @throws {RequiredError}
12374
+ */
12375
+ postAddBroadband(postAddBroadbandRequest: PostAddBroadbandRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
12376
+ /**
12377
+ * Add Call Tariff To Call Tariff Plan
12378
+ * @param {PostAddCallTariffToCallTariffPlanRequest} postAddCallTariffToCallTariffPlanRequest
12379
+ * @param {*} [options] Override http request option.
12380
+ * @throws {RequiredError}
12381
+ */
12382
+ postAddCallTariffToCallTariffPlan(postAddCallTariffToCallTariffPlanRequest: PostAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<CallTariffPlan>;
12383
+ /**
12384
+ * Add Child Customer
12385
+ * @param {ContactDetail} contactDetail
12386
+ * @param {number} [billCustomerId] Customer ID
12387
+ * @param {number} [customerId] Child Customer ID
12388
+ * @param {*} [options] Override http request option.
12389
+ * @throws {RequiredError}
12390
+ */
12391
+ postAddChildCustomer(contactDetail: ContactDetail, billCustomerId?: number, customerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Customer>;
12392
+ /**
12393
+ * Add Ethernet
12394
+ * @param {PostAddEthernetRequest} postAddEthernetRequest
12395
+ * @param {number} [billCustomerId] Customer ID
12396
+ * @param {*} [options] Override http request option.
12397
+ * @throws {RequiredError}
12398
+ */
12399
+ postAddEthernet(postAddEthernetRequest: PostAddEthernetRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
12400
+ /**
12401
+ * Add Recurring Charge
12402
+ * @param {PostAddRecurringChargeRequest} postAddRecurringChargeRequest
12403
+ * @param {number} [billCustomerId] Customer ID
12404
+ * @param {*} [options] Override http request option.
12405
+ * @throws {RequiredError}
12406
+ */
12407
+ postAddRecurringCharge(postAddRecurringChargeRequest: PostAddRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<RecurringCharge>;
12408
+ /**
12409
+ * Add Service To Service Plan
12410
+ * @param {PostAddServiceToServicePlanRequest} postAddServiceToServicePlanRequest
12411
+ * @param {*} [options] Override http request option.
12412
+ * @throws {RequiredError}
12413
+ */
12414
+ postAddServiceToServicePlan(postAddServiceToServicePlanRequest: PostAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<Service>;
12415
+ /**
12416
+ * Add SIP Trunk DDIs
12417
+ * @param {PostAddSipTrunkDDIsRequest} postAddSipTrunkDDIsRequest
12418
+ * @param {number} [billCustomerId] Customer ID
12419
+ * @param {*} [options] Override http request option.
12420
+ * @throws {RequiredError}
12421
+ */
12422
+ postAddSipTrunkDDIs(postAddSipTrunkDDIsRequest: PostAddSipTrunkDDIsRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<OutboundCli>>;
12423
+ /**
12424
+ * Disconnect Connection
12425
+ * @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
12426
+ * @param {number} [billCustomerId] Customer ID
12427
+ * @param {*} [options] Override http request option.
12428
+ * @throws {RequiredError}
12429
+ */
12430
+ postDisconnectConnection(postDisconnectDDIRequest: PostDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<number>;
12431
+ /**
12432
+ * Disconnect DDI
12433
+ * @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
12434
+ * @param {number} [billCustomerId] Customer ID
12435
+ * @param {*} [options] Override http request option.
12436
+ * @throws {RequiredError}
12437
+ */
12438
+ postDisconnectDDI(postDisconnectDDIRequest: PostDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<number>;
12439
+ /**
12440
+ * Add Base Service
12441
+ * @param {PostGetBaseServicesRequest} postGetBaseServicesRequest
12442
+ * @param {*} [options] Override http request option.
12443
+ * @throws {RequiredError}
12444
+ */
12445
+ postGetBaseServices(postGetBaseServicesRequest: PostGetBaseServicesRequest, options?: RawAxiosRequestConfig): AxiosPromise<Service>;
12446
+ /**
12447
+ * Add Call Tariff
12448
+ * @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
12449
+ * @param {*} [options] Override http request option.
12450
+ * @throws {RequiredError}
12451
+ */
12452
+ postGetCallTariffPlan(putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<CallTariffPlan>;
12453
+ /**
12454
+ * Add Connection
12455
+ * @param {number} [billCustomerId] Customer ID
12456
+ * @param {ConnectionRequest} [connectionRequest]
12457
+ * @param {*} [options] Override http request option.
12458
+ * @throws {RequiredError}
12459
+ */
12460
+ postGetConnections(billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
12461
+ /**
12462
+ * Add Price Group
12463
+ * @param {PostGetPriceGroupsRequest} postGetPriceGroupsRequest
12464
+ * @param {*} [options] Override http request option.
12465
+ * @throws {RequiredError}
12466
+ */
12467
+ postGetPriceGroups(postGetPriceGroupsRequest: PostGetPriceGroupsRequest, options?: RawAxiosRequestConfig): AxiosPromise<PriceGroup>;
12468
+ /**
12469
+ * Add Service Plan
12470
+ * @param {PostGetServicePlansRequest} postGetServicePlansRequest
12471
+ * @param {*} [options] Override http request option.
12472
+ * @throws {RequiredError}
12473
+ */
12474
+ postGetServicePlans(postGetServicePlansRequest: PostGetServicePlansRequest, options?: RawAxiosRequestConfig): AxiosPromise<ServicePlan>;
12475
+ /**
12476
+ * Add SIP Trunk billing
12477
+ * @param {PostGetSipTrunksBillingRequest} postGetSipTrunksBillingRequest
12478
+ * @param {number} [billCustomerId] Customer ID
12479
+ * @param {*} [options] Override http request option.
12480
+ * @throws {RequiredError}
12481
+ */
12482
+ postGetSipTrunksBilling(postGetSipTrunksBillingRequest: PostGetSipTrunksBillingRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
12483
+ /**
12484
+ * Send Invoices
12485
+ * @param {*} [options] Override http request option.
12486
+ * @throws {RequiredError}
12487
+ */
12488
+ postSendInvoices(options?: RawAxiosRequestConfig): AxiosPromise<string>;
12489
+ /**
12490
+ * Update Connection
12491
+ * @param {PostUpdateConnectionRequest} postUpdateConnectionRequest
12492
+ * @param {number} [connectionId] Connection ID
12493
+ * @param {number} [billCustomerId] Customer ID
12494
+ * @param {*} [options] Override http request option.
12495
+ * @throws {RequiredError}
12496
+ */
12497
+ postUpdateConnection(postUpdateConnectionRequest: PostUpdateConnectionRequest, connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<object>;
12498
+ /**
12499
+ * Update Recurring Charge
12500
+ * @param {number} id Recurring Charge ID
12501
+ * @param {PostUpdateRecurringChargeRequest} postUpdateRecurringChargeRequest
12502
+ * @param {number} [billCustomerId] Customer ID
12503
+ * @param {*} [options] Override http request option.
12504
+ * @throws {RequiredError}
12505
+ */
12506
+ postUpdateRecurringCharge(id: number, postUpdateRecurringChargeRequest: PostUpdateRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<RecurringCharge>;
12507
+ /**
12508
+ * Update Call Tariff
12509
+ * @param {number} callTariffPlanId Call Tariff ID
12510
+ * @param {PutAddCallTariffToCallTariffPlanRequest} putAddCallTariffToCallTariffPlanRequest
12511
+ * @param {*} [options] Override http request option.
12512
+ * @throws {RequiredError}
12513
+ */
12514
+ putAddCallTariffToCallTariffPlan(callTariffPlanId: number, putAddCallTariffToCallTariffPlanRequest: PutAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<CallTariffPlan>;
12515
+ /**
12516
+ * Update Service
12517
+ * @param {number} id Service ID
12518
+ * @param {PutAddServiceToServicePlanRequest} putAddServiceToServicePlanRequest
12519
+ * @param {*} [options] Override http request option.
12520
+ * @throws {RequiredError}
12521
+ */
12522
+ putAddServiceToServicePlan(id: number, putAddServiceToServicePlanRequest: PutAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<Service>;
12523
+ /**
12524
+ * Transfer Billing Connection
12525
+ * @param {PutConnectionSearchRequest} putConnectionSearchRequest Transfer Request
12526
+ * @param {number} [id] Connection ID
12527
+ * @param {string} [cli] CLI
12528
+ * @param {boolean} [skipDDis] Skip DDIs
12529
+ * @param {*} [options] Override http request option.
12530
+ * @throws {RequiredError}
12531
+ */
12532
+ putConnectionSearch(putConnectionSearchRequest: PutConnectionSearchRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
12533
+ /**
12534
+ * Convert Child To Parent
12535
+ * @param {number} [billCustomerId] Customer ID
12536
+ * @param {*} [options] Override http request option.
12537
+ * @throws {RequiredError}
12538
+ */
12539
+ putConvertChildToParent(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Customer>;
12540
+ /**
12541
+ * Disable Bundles
12542
+ * @param {number} [billCustomerId] Customer ID
12543
+ * @param {*} [options] Override http request option.
12544
+ * @throws {RequiredError}
12545
+ */
12546
+ putDisableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
12547
+ /**
12548
+ * Disable DDI Billing
12549
+ * @param {number} [billCustomerId] Customer ID
12550
+ * @param {*} [options] Override http request option.
12551
+ * @throws {RequiredError}
12552
+ */
12553
+ putDisableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
12554
+ /**
12555
+ * Enable Bundles
12556
+ * @param {number} [billCustomerId] Customer ID
12557
+ * @param {*} [options] Override http request option.
12558
+ * @throws {RequiredError}
12559
+ */
12560
+ putEnableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
12561
+ /**
12562
+ * Enable DDI Billing
12563
+ * @param {number} [billCustomerId] Customer ID
12564
+ * @param {*} [options] Override http request option.
12565
+ * @throws {RequiredError}
12566
+ */
12567
+ putEnableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
12568
+ /**
12569
+ * Update Base Service
12570
+ * @param {number} baseServiceId Base Service Plan ID
12571
+ * @param {PutGetBaseServicesRequest} putGetBaseServicesRequest
12572
+ * @param {*} [options] Override http request option.
12573
+ * @throws {RequiredError}
12574
+ */
12575
+ putGetBaseServices(baseServiceId: number, putGetBaseServicesRequest: PutGetBaseServicesRequest, options?: RawAxiosRequestConfig): AxiosPromise<BaseService>;
12576
+ /**
12577
+ * Update Call Tariff
12578
+ * @param {number} callTariffPlanId Call Tariff Plan ID
12579
+ * @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
12580
+ * @param {*} [options] Override http request option.
12581
+ * @throws {RequiredError}
12582
+ */
12583
+ putGetCallTariffPlan(callTariffPlanId: number, putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<CallTariffPlan>;
12584
+ /**
12585
+ * Update Connection
12586
+ * @param {number} connectionId Connection ID
12587
+ * @param {number} [billCustomerId] Customer ID
12588
+ * @param {ConnectionRequest} [connectionRequest]
12589
+ * @param {*} [options] Override http request option.
12590
+ * @throws {RequiredError}
12591
+ */
12592
+ putGetConnections(connectionId: number, billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
12593
+ /**
12594
+ * Update Price Group
12595
+ * @param {number} priceGroupId Price Group ID
12596
+ * @param {PutGetPriceGroupsRequest} putGetPriceGroupsRequest
12597
+ * @param {*} [options] Override http request option.
12598
+ * @throws {RequiredError}
12599
+ */
12600
+ putGetPriceGroups(priceGroupId: number, putGetPriceGroupsRequest: PutGetPriceGroupsRequest, options?: RawAxiosRequestConfig): AxiosPromise<PriceGroup>;
12601
+ };
12602
+ /**
12603
+ * BillingApi - object-oriented interface
12604
+ */
12605
+ export declare class BillingApi extends BaseAPI {
12606
+ /**
12607
+ * Delete Call Tariff
12608
+ * @param {string} priceGroupName Price Group Name
12609
+ * @param {*} [options] Override http request option.
12610
+ * @throws {RequiredError}
12611
+ */
12612
+ deleteAddCallTariffToCallTariffPlan(priceGroupName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
12613
+ /**
12614
+ * Delete Recurring Charges
12615
+ * @param {number} id Recurring Charge ID
12616
+ * @param {number} [billCustomerId] Customer ID
12617
+ * @param {*} [options] Override http request option.
12618
+ * @throws {RequiredError}
12619
+ */
12620
+ deleteAddRecurringCharge(id: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any, {}>>;
12621
+ /**
12622
+ * Delete Service
12623
+ * @param {string} planGroup Plan Group
12624
+ * @param {string} serviceCode Service Code
12625
+ * @param {*} [options] Override http request option.
12626
+ * @throws {RequiredError}
12627
+ */
12628
+ deleteAddServiceToServicePlan(planGroup: string, serviceCode: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
12629
+ /**
12630
+ * Delete Customer
12631
+ * @param {number} [billCustomerId] Customer ID
12632
+ * @param {*} [options] Override http request option.
12633
+ * @throws {RequiredError}
12634
+ */
12635
+ deleteCloseAccount(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any, {}>>;
12636
+ /**
12637
+ * Delete Base Service
12638
+ * @param {number} baseServiceId Base Service Plan ID
12639
+ * @param {*} [options] Override http request option.
12640
+ * @throws {RequiredError}
12641
+ */
12642
+ deleteGetBaseServices(baseServiceId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
12643
+ /**
12644
+ * Delete Call Tariff Plan
12645
+ * @param {number} callTariffPlanId Call Tariff Plan ID
12646
+ * @param {*} [options] Override http request option.
12647
+ * @throws {RequiredError}
12648
+ */
12649
+ deleteGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
12650
+ /**
12651
+ * Delete Price Group
12652
+ * @param {number} priceGroupId Price Group ID
12653
+ * @param {*} [options] Override http request option.
12654
+ * @throws {RequiredError}
12655
+ */
12656
+ deleteGetPriceGroups(priceGroupId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
12657
+ /**
12658
+ * Delete Service Plan
12659
+ * @param {number} servicePlanId Service Plan ID
12660
+ * @param {*} [options] Override http request option.
12661
+ * @throws {RequiredError}
12662
+ */
12663
+ deleteGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any, {}>>;
12664
+ /**
12665
+ * Get Recurring Charges
12666
+ * @param {number} [billCustomerId] Customer ID
12667
+ * @param {*} [options] Override http request option.
12668
+ * @throws {RequiredError}
12669
+ */
12670
+ getAddRecurringCharge(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RecurringCharge[], any, {}>>;
12671
+ /**
12672
+ * Get Service
12673
+ * @param {number} id Service ID
12674
+ * @param {*} [options] Override http request option.
12675
+ * @throws {RequiredError}
12676
+ */
12677
+ getAddServiceToServicePlan(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Service, any, {}>>;
12678
+ /**
12679
+ * Get SIP Trunk DDIs
12680
+ * @param {number} [connectionId] Connection ID
12681
+ * @param {number} [billCustomerId] Customer ID
12682
+ * @param {*} [options] Override http request option.
12683
+ * @throws {RequiredError}
12684
+ */
12685
+ getAddSipTrunkDDIs(connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli[], any, {}>>;
12686
+ /**
12687
+ * Connection Search
12688
+ * @param {string} search Search
12689
+ * @param {*} [options] Override http request option.
12690
+ * @throws {RequiredError}
12691
+ */
12692
+ getConnectionSearch(search: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli[], any, {}>>;
12693
+ /**
12694
+ * Get Billing Customers
12695
+ * @summary Get Billing Customers
12696
+ * @param {*} [options] Override http request option.
12697
+ * @throws {RequiredError}
12698
+ */
12699
+ getGetAllCustomer(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
12700
+ [key: string]: {
12701
+ [key: string]: string;
12702
+ };
12703
+ }, any, {}>>;
12704
+ /**
12705
+ * Get All MT SIP Trunks
12706
+ * @param {number} [billCustomerId] Customer ID
12707
+ * @param {*} [options] Override http request option.
12708
+ * @throws {RequiredError}
12709
+ */
12710
+ getGetAllMtSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[][], any, {}>>;
12711
+ /**
12712
+ * Get All SIP Trunks
12713
+ * @param {number} [billCustomerId] Customer ID
12714
+ * @param {*} [options] Override http request option.
12715
+ * @throws {RequiredError}
12716
+ */
12717
+ getGetAllSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[][], any, {}>>;
12718
+ /**
12719
+ * Get Base Services
12720
+ * @param {*} [options] Override http request option.
12721
+ * @throws {RequiredError}
12722
+ */
12723
+ getGetBaseServices(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseService[], any, {}>>;
12724
+ /**
12725
+ * Get Customer
12726
+ * @param {number} [billCustomerId] Customer ID
12727
+ * @param {*} [options] Override http request option.
12728
+ * @throws {RequiredError}
12729
+ */
12730
+ getGetBillingCustomerDetails(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Customer, any, {}>>;
12731
+ /**
12732
+ * Get Bundle Calls With Cost
12733
+ * @param {*} [options] Override http request option.
12734
+ * @throws {RequiredError}
12735
+ */
12736
+ getGetBundleCallsWithCost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessedCdr[], any, {}>>;
12737
+ /**
12738
+ * Get Call Tariff
12739
+ * @param {number} callTariffPlanId Call Tariff Plan ID
12740
+ * @param {*} [options] Override http request option.
12741
+ * @throws {RequiredError}
12742
+ */
12743
+ getGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan, any, {}>>;
12744
+ /**
12745
+ * Get Call Tariffs
12746
+ * @param {*} [options] Override http request option.
12747
+ * @throws {RequiredError}
12748
+ */
12749
+ getGetCallTariffs(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan[], any, {}>>;
12750
+ /**
12751
+ * Get Call Tariffs Detailed
12752
+ * @param {*} [options] Override http request option.
12753
+ * @throws {RequiredError}
12754
+ */
12755
+ getGetCallTariffsDetails(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan[], any, {}>>;
12756
+ /**
12757
+ * Get Children
12758
+ * @param {number} [billCustomerId] Customer ID
12759
+ * @param {*} [options] Override http request option.
12760
+ * @throws {RequiredError}
12761
+ */
12762
+ getGetChildren(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object[], any, {}>>;
12763
+ /**
12764
+ * Get Connections
12765
+ * @param {GetGetConnectionsTypeEnum} [type] Connection Type
12766
+ * @param {number} [billCustomerId] Customer ID
12767
+ * @param {*} [options] Override http request option.
12768
+ * @throws {RequiredError}
12769
+ */
12770
+ getGetConnections(type?: GetGetConnectionsTypeEnum, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli[], any, {}>>;
12771
+ /**
12772
+ * Get Customer (Global)
12773
+ * @param {string} [accountId] Account ID
12774
+ * @param {number} [customerId] Customer ID
12775
+ * @param {string} [customerCode] Customer Code
12776
+ * @param {*} [options] Override http request option.
12777
+ * @throws {RequiredError}
12778
+ */
12779
+ getGetCustomer(accountId?: string, customerId?: number, customerCode?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Customer, any, {}>>;
12780
+ /**
12781
+ * Get Inbound Tariffs
12782
+ * @param {*} [options] Override http request option.
12783
+ * @throws {RequiredError}
12784
+ */
12785
+ getGetInboundTariffs(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any, {}>>;
12786
+ /**
12787
+ * Get Inbound Tariffs Detailed
12788
+ * @param {*} [options] Override http request option.
12789
+ * @throws {RequiredError}
12790
+ */
12791
+ getGetInboundTariffsDetails(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InboundTariffPlanResponse[], any, {}>>;
12792
+ /**
12793
+ * Get Price Groups
12794
+ * @param {*} [options] Override http request option.
12795
+ * @throws {RequiredError}
12796
+ */
12797
+ getGetPriceGroups(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PriceGroup[], any, {}>>;
12798
+ /**
12799
+ * Get Service Plan
12800
+ * @param {number} servicePlanId Service Plan ID
12801
+ * @param {*} [options] Override http request option.
12802
+ * @throws {RequiredError}
12803
+ */
12804
+ getGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServicePlan, any, {}>>;
12805
+ /**
12806
+ * Get Service Plans
12807
+ * @param {*} [options] Override http request option.
12808
+ * @throws {RequiredError}
12809
+ */
12810
+ getGetServicePlans(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServicePlan[], any, {}>>;
12811
+ /**
12812
+ * Get Service Plans Detailed
12813
+ * @param {GetGetServicesPlanDetailsTypeEnum} [type] Connection Type
12814
+ * @param {*} [options] Override http request option.
12815
+ * @throws {RequiredError}
12816
+ */
12817
+ getGetServicesPlanDetails(type?: GetGetServicesPlanDetailsTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServicePlan[], any, {}>>;
12818
+ /**
12819
+ * Get SIP Trunk List
12820
+ * @param {number} [billCustomerId] Customer ID
12821
+ * @param {*} [options] Override http request option.
12822
+ * @throws {RequiredError}
12823
+ */
12824
+ getGetSipTrunkList(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[][], any, {}>>;
12825
+ /**
12826
+ * Get SIP Trunk Billing
12827
+ * @param {number} [billCustomerId] Customer ID
12828
+ * @param {*} [options] Override http request option.
12829
+ * @throws {RequiredError}
12830
+ */
12831
+ getGetSipTrunksBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any, {}>>;
12832
+ /**
12833
+ * Get Unconnected Calls
12834
+ * @param {*} [options] Override http request option.
12835
+ * @throws {RequiredError}
12836
+ */
12837
+ getGetUnconnectedCalls(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessedCdr[], any, {}>>;
12838
+ /**
12839
+ * Get Unconnected Services
12840
+ * @param {*} [options] Override http request option.
12841
+ * @throws {RequiredError}
12842
+ */
12843
+ getGetUnconnectedServices(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessedCdr[], any, {}>>;
12844
+ /**
12845
+ * Is Bundle Customer
12846
+ * @param {number} [billCustomerId] Customer ID
12847
+ * @param {*} [options] Override http request option.
12848
+ * @throws {RequiredError}
12849
+ */
12850
+ getIsBundleCustomer(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
12851
+ /**
12852
+ * Add Broadband
12853
+ * @param {PostAddBroadbandRequest} postAddBroadbandRequest
12854
+ * @param {number} [billCustomerId] Customer ID
12855
+ * @param {*} [options] Override http request option.
12856
+ * @throws {RequiredError}
12857
+ */
12858
+ postAddBroadband(postAddBroadbandRequest: PostAddBroadbandRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
12859
+ /**
12860
+ * Add Call Tariff To Call Tariff Plan
12861
+ * @param {PostAddCallTariffToCallTariffPlanRequest} postAddCallTariffToCallTariffPlanRequest
12862
+ * @param {*} [options] Override http request option.
12863
+ * @throws {RequiredError}
12864
+ */
12865
+ postAddCallTariffToCallTariffPlan(postAddCallTariffToCallTariffPlanRequest: PostAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan, any, {}>>;
12866
+ /**
12867
+ * Add Child Customer
12868
+ * @param {ContactDetail} contactDetail
12869
+ * @param {number} [billCustomerId] Customer ID
12870
+ * @param {number} [customerId] Child Customer ID
12871
+ * @param {*} [options] Override http request option.
12872
+ * @throws {RequiredError}
12873
+ */
12874
+ postAddChildCustomer(contactDetail: ContactDetail, billCustomerId?: number, customerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Customer, any, {}>>;
12875
+ /**
12876
+ * Add Ethernet
12877
+ * @param {PostAddEthernetRequest} postAddEthernetRequest
12878
+ * @param {number} [billCustomerId] Customer ID
12879
+ * @param {*} [options] Override http request option.
12880
+ * @throws {RequiredError}
12881
+ */
12882
+ postAddEthernet(postAddEthernetRequest: PostAddEthernetRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
12883
+ /**
12884
+ * Add Recurring Charge
12885
+ * @param {PostAddRecurringChargeRequest} postAddRecurringChargeRequest
12886
+ * @param {number} [billCustomerId] Customer ID
12887
+ * @param {*} [options] Override http request option.
12888
+ * @throws {RequiredError}
12889
+ */
12890
+ postAddRecurringCharge(postAddRecurringChargeRequest: PostAddRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RecurringCharge, any, {}>>;
12891
+ /**
12892
+ * Add Service To Service Plan
12893
+ * @param {PostAddServiceToServicePlanRequest} postAddServiceToServicePlanRequest
12894
+ * @param {*} [options] Override http request option.
12895
+ * @throws {RequiredError}
12896
+ */
12897
+ postAddServiceToServicePlan(postAddServiceToServicePlanRequest: PostAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Service, any, {}>>;
12898
+ /**
12899
+ * Add SIP Trunk DDIs
12900
+ * @param {PostAddSipTrunkDDIsRequest} postAddSipTrunkDDIsRequest
12901
+ * @param {number} [billCustomerId] Customer ID
12902
+ * @param {*} [options] Override http request option.
12903
+ * @throws {RequiredError}
12904
+ */
12905
+ postAddSipTrunkDDIs(postAddSipTrunkDDIsRequest: PostAddSipTrunkDDIsRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli[], any, {}>>;
12906
+ /**
12907
+ * Disconnect Connection
12908
+ * @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
12909
+ * @param {number} [billCustomerId] Customer ID
12910
+ * @param {*} [options] Override http request option.
12911
+ * @throws {RequiredError}
12912
+ */
12913
+ postDisconnectConnection(postDisconnectDDIRequest: PostDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any, {}>>;
12914
+ /**
12915
+ * Disconnect DDI
12916
+ * @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
12917
+ * @param {number} [billCustomerId] Customer ID
12918
+ * @param {*} [options] Override http request option.
12919
+ * @throws {RequiredError}
12920
+ */
12921
+ postDisconnectDDI(postDisconnectDDIRequest: PostDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any, {}>>;
12922
+ /**
12923
+ * Add Base Service
12924
+ * @param {PostGetBaseServicesRequest} postGetBaseServicesRequest
12925
+ * @param {*} [options] Override http request option.
12926
+ * @throws {RequiredError}
12927
+ */
12928
+ postGetBaseServices(postGetBaseServicesRequest: PostGetBaseServicesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Service, any, {}>>;
12929
+ /**
12930
+ * Add Call Tariff
12931
+ * @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
12932
+ * @param {*} [options] Override http request option.
12933
+ * @throws {RequiredError}
12934
+ */
12935
+ postGetCallTariffPlan(putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan, any, {}>>;
12936
+ /**
12937
+ * Add Connection
12938
+ * @param {number} [billCustomerId] Customer ID
12939
+ * @param {ConnectionRequest} [connectionRequest]
12940
+ * @param {*} [options] Override http request option.
12941
+ * @throws {RequiredError}
12942
+ */
12943
+ postGetConnections(billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
12944
+ /**
12945
+ * Add Price Group
12946
+ * @param {PostGetPriceGroupsRequest} postGetPriceGroupsRequest
12947
+ * @param {*} [options] Override http request option.
12948
+ * @throws {RequiredError}
12949
+ */
12950
+ postGetPriceGroups(postGetPriceGroupsRequest: PostGetPriceGroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PriceGroup, any, {}>>;
12951
+ /**
12952
+ * Add Service Plan
12953
+ * @param {PostGetServicePlansRequest} postGetServicePlansRequest
12954
+ * @param {*} [options] Override http request option.
12955
+ * @throws {RequiredError}
12956
+ */
12957
+ postGetServicePlans(postGetServicePlansRequest: PostGetServicePlansRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServicePlan, any, {}>>;
12958
+ /**
12959
+ * Add SIP Trunk billing
12960
+ * @param {PostGetSipTrunksBillingRequest} postGetSipTrunksBillingRequest
12961
+ * @param {number} [billCustomerId] Customer ID
12962
+ * @param {*} [options] Override http request option.
12963
+ * @throws {RequiredError}
12964
+ */
12965
+ postGetSipTrunksBilling(postGetSipTrunksBillingRequest: PostGetSipTrunksBillingRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
12966
+ /**
12967
+ * Send Invoices
12968
+ * @param {*} [options] Override http request option.
12969
+ * @throws {RequiredError}
12970
+ */
12971
+ postSendInvoices(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
12972
+ /**
12973
+ * Update Connection
12974
+ * @param {PostUpdateConnectionRequest} postUpdateConnectionRequest
12975
+ * @param {number} [connectionId] Connection ID
12976
+ * @param {number} [billCustomerId] Customer ID
12977
+ * @param {*} [options] Override http request option.
12978
+ * @throws {RequiredError}
12979
+ */
12980
+ postUpdateConnection(postUpdateConnectionRequest: PostUpdateConnectionRequest, connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
12981
+ /**
12982
+ * Update Recurring Charge
12983
+ * @param {number} id Recurring Charge ID
12984
+ * @param {PostUpdateRecurringChargeRequest} postUpdateRecurringChargeRequest
12985
+ * @param {number} [billCustomerId] Customer ID
12986
+ * @param {*} [options] Override http request option.
12987
+ * @throws {RequiredError}
12988
+ */
12989
+ postUpdateRecurringCharge(id: number, postUpdateRecurringChargeRequest: PostUpdateRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RecurringCharge, any, {}>>;
12990
+ /**
12991
+ * Update Call Tariff
12992
+ * @param {number} callTariffPlanId Call Tariff ID
12993
+ * @param {PutAddCallTariffToCallTariffPlanRequest} putAddCallTariffToCallTariffPlanRequest
12994
+ * @param {*} [options] Override http request option.
12995
+ * @throws {RequiredError}
12996
+ */
12997
+ putAddCallTariffToCallTariffPlan(callTariffPlanId: number, putAddCallTariffToCallTariffPlanRequest: PutAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan, any, {}>>;
12998
+ /**
12999
+ * Update Service
13000
+ * @param {number} id Service ID
13001
+ * @param {PutAddServiceToServicePlanRequest} putAddServiceToServicePlanRequest
13002
+ * @param {*} [options] Override http request option.
13003
+ * @throws {RequiredError}
13004
+ */
13005
+ putAddServiceToServicePlan(id: number, putAddServiceToServicePlanRequest: PutAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Service, any, {}>>;
13006
+ /**
13007
+ * Transfer Billing Connection
13008
+ * @param {PutConnectionSearchRequest} putConnectionSearchRequest Transfer Request
13009
+ * @param {number} [id] Connection ID
13010
+ * @param {string} [cli] CLI
13011
+ * @param {boolean} [skipDDis] Skip DDIs
13012
+ * @param {*} [options] Override http request option.
13013
+ * @throws {RequiredError}
13014
+ */
13015
+ putConnectionSearch(putConnectionSearchRequest: PutConnectionSearchRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
13016
+ /**
13017
+ * Convert Child To Parent
13018
+ * @param {number} [billCustomerId] Customer ID
13019
+ * @param {*} [options] Override http request option.
13020
+ * @throws {RequiredError}
13021
+ */
13022
+ putConvertChildToParent(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Customer, any, {}>>;
13023
+ /**
13024
+ * Disable Bundles
13025
+ * @param {number} [billCustomerId] Customer ID
13026
+ * @param {*} [options] Override http request option.
13027
+ * @throws {RequiredError}
13028
+ */
13029
+ putDisableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
13030
+ /**
13031
+ * Disable DDI Billing
13032
+ * @param {number} [billCustomerId] Customer ID
13033
+ * @param {*} [options] Override http request option.
13034
+ * @throws {RequiredError}
13035
+ */
13036
+ putDisableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
13037
+ /**
13038
+ * Enable Bundles
13039
+ * @param {number} [billCustomerId] Customer ID
13040
+ * @param {*} [options] Override http request option.
13041
+ * @throws {RequiredError}
13042
+ */
13043
+ putEnableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
13044
+ /**
13045
+ * Enable DDI Billing
13046
+ * @param {number} [billCustomerId] Customer ID
13047
+ * @param {*} [options] Override http request option.
13048
+ * @throws {RequiredError}
13049
+ */
13050
+ putEnableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
13051
+ /**
13052
+ * Update Base Service
13053
+ * @param {number} baseServiceId Base Service Plan ID
13054
+ * @param {PutGetBaseServicesRequest} putGetBaseServicesRequest
13055
+ * @param {*} [options] Override http request option.
13056
+ * @throws {RequiredError}
13057
+ */
13058
+ putGetBaseServices(baseServiceId: number, putGetBaseServicesRequest: PutGetBaseServicesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseService, any, {}>>;
13059
+ /**
13060
+ * Update Call Tariff
13061
+ * @param {number} callTariffPlanId Call Tariff Plan ID
13062
+ * @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
13063
+ * @param {*} [options] Override http request option.
13064
+ * @throws {RequiredError}
13065
+ */
13066
+ putGetCallTariffPlan(callTariffPlanId: number, putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan, any, {}>>;
13067
+ /**
13068
+ * Update Connection
13069
+ * @param {number} connectionId Connection ID
13070
+ * @param {number} [billCustomerId] Customer ID
13071
+ * @param {ConnectionRequest} [connectionRequest]
13072
+ * @param {*} [options] Override http request option.
13073
+ * @throws {RequiredError}
13074
+ */
13075
+ putGetConnections(connectionId: number, billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
13076
+ /**
13077
+ * Update Price Group
13078
+ * @param {number} priceGroupId Price Group ID
13079
+ * @param {PutGetPriceGroupsRequest} putGetPriceGroupsRequest
13080
+ * @param {*} [options] Override http request option.
13081
+ * @throws {RequiredError}
13082
+ */
13083
+ putGetPriceGroups(priceGroupId: number, putGetPriceGroupsRequest: PutGetPriceGroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PriceGroup, any, {}>>;
13084
+ }
13085
+ export declare const GetGetConnectionsTypeEnum: {
13086
+ readonly SipTrunks: "SIP Trunks";
13087
+ readonly Broadband: "Broadband";
13088
+ readonly Ethernet: "Ethernet";
13089
+ readonly Mobile: "Mobile";
13090
+ readonly Wlr: "WLR";
13091
+ readonly Horizon: "Horizon";
13092
+ readonly Nts: "NTS";
13093
+ readonly Hosting: "Hosting";
13094
+ readonly Crm: "CRM";
13095
+ readonly StarterBundle: "Starter Bundle";
13096
+ readonly Other: "Other";
13097
+ readonly RecurringCharges: "Recurring Charges";
13098
+ };
13099
+ export type GetGetConnectionsTypeEnum = typeof GetGetConnectionsTypeEnum[keyof typeof GetGetConnectionsTypeEnum];
13100
+ export declare const GetGetServicesPlanDetailsTypeEnum: {
13101
+ readonly SipTrunks: "SIP Trunks";
13102
+ readonly Broadband: "Broadband";
13103
+ readonly Ethernet: "Ethernet";
13104
+ readonly Mobile: "Mobile";
13105
+ readonly Wlr: "WLR";
13106
+ readonly Horizon: "Horizon";
13107
+ readonly Nts: "NTS";
13108
+ readonly Hosting: "Hosting";
13109
+ readonly Crm: "CRM";
13110
+ readonly StarterBundle: "Starter Bundle";
13111
+ readonly Other: "Other";
13112
+ readonly RecurringCharges: "Recurring Charges";
13113
+ };
13114
+ export type GetGetServicesPlanDetailsTypeEnum = typeof GetGetServicesPlanDetailsTypeEnum[keyof typeof GetGetServicesPlanDetailsTypeEnum];
10723
13115
  /**
10724
13116
  * CRMApi - axios parameter creator
10725
13117
  */