yellowgrid-api-ts 3.2.258 → 3.2.259
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +3 -0
- package/README.md +3 -0
- package/api.ts +68 -2
- package/dist/api.d.ts +69 -3
- package/docs/BillingApi.md +3 -3
- package/docs/Sdr.md +66 -0
- package/docs/SpecialService.md +40 -0
- package/docs/UnconnectedSdr.md +68 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -240,6 +240,7 @@ docs/SMSApi.md
|
|
|
240
240
|
docs/SbcDTO.md
|
|
241
241
|
docs/ScannedItemModel.md
|
|
242
242
|
docs/ScopeModel.md
|
|
243
|
+
docs/Sdr.md
|
|
243
244
|
docs/SdrReferenceType.md
|
|
244
245
|
docs/SeriesDTO.md
|
|
245
246
|
docs/Service.md
|
|
@@ -277,6 +278,7 @@ docs/SmsPayloadModel.md
|
|
|
277
278
|
docs/SmsPhoneNumberModel.md
|
|
278
279
|
docs/SmsResponseModel.md
|
|
279
280
|
docs/SmsWhitelistEntity.md
|
|
281
|
+
docs/SpecialService.md
|
|
280
282
|
docs/StockManagementApi.md
|
|
281
283
|
docs/StockOrderCourierEntity.md
|
|
282
284
|
docs/StockOrderDeductionModel.md
|
|
@@ -351,6 +353,7 @@ docs/TicketSummaryModel.md
|
|
|
351
353
|
docs/TicketTimeDTO.md
|
|
352
354
|
docs/TicketsApi.md
|
|
353
355
|
docs/TokenResponseModel.md
|
|
356
|
+
docs/UnconnectedSdr.md
|
|
354
357
|
docs/UpgradeOrderResponseModel.md
|
|
355
358
|
docs/UpgradeRequestModel.md
|
|
356
359
|
docs/UserEntity.md
|
package/README.md
CHANGED
|
@@ -610,6 +610,7 @@ Class | Method | HTTP request | Description
|
|
|
610
610
|
- [SbcDTO](docs/SbcDTO.md)
|
|
611
611
|
- [ScannedItemModel](docs/ScannedItemModel.md)
|
|
612
612
|
- [ScopeModel](docs/ScopeModel.md)
|
|
613
|
+
- [Sdr](docs/Sdr.md)
|
|
613
614
|
- [SdrReferenceType](docs/SdrReferenceType.md)
|
|
614
615
|
- [SeriesDTO](docs/SeriesDTO.md)
|
|
615
616
|
- [Service](docs/Service.md)
|
|
@@ -645,6 +646,7 @@ Class | Method | HTTP request | Description
|
|
|
645
646
|
- [SmsPhoneNumberModel](docs/SmsPhoneNumberModel.md)
|
|
646
647
|
- [SmsResponseModel](docs/SmsResponseModel.md)
|
|
647
648
|
- [SmsWhitelistEntity](docs/SmsWhitelistEntity.md)
|
|
649
|
+
- [SpecialService](docs/SpecialService.md)
|
|
648
650
|
- [StockOrderCourierEntity](docs/StockOrderCourierEntity.md)
|
|
649
651
|
- [StockOrderDeductionModel](docs/StockOrderDeductionModel.md)
|
|
650
652
|
- [StockOrderDeductionRequestModel](docs/StockOrderDeductionRequestModel.md)
|
|
@@ -715,6 +717,7 @@ Class | Method | HTTP request | Description
|
|
|
715
717
|
- [TicketSummaryModel](docs/TicketSummaryModel.md)
|
|
716
718
|
- [TicketTimeDTO](docs/TicketTimeDTO.md)
|
|
717
719
|
- [TokenResponseModel](docs/TokenResponseModel.md)
|
|
720
|
+
- [UnconnectedSdr](docs/UnconnectedSdr.md)
|
|
718
721
|
- [UpgradeOrderResponseModel](docs/UpgradeOrderResponseModel.md)
|
|
719
722
|
- [UpgradeRequestModel](docs/UpgradeRequestModel.md)
|
|
720
723
|
- [UserEntity](docs/UserEntity.md)
|
package/api.ts
CHANGED
|
@@ -6175,6 +6175,32 @@ export interface ScopeModel {
|
|
|
6175
6175
|
*/
|
|
6176
6176
|
'description'?: string;
|
|
6177
6177
|
}
|
|
6178
|
+
export interface Sdr {
|
|
6179
|
+
'id'?: number;
|
|
6180
|
+
'customerIdentifier': string | null;
|
|
6181
|
+
'fromDate': string;
|
|
6182
|
+
'fromTime'?: string | null;
|
|
6183
|
+
'toDate'?: string | null;
|
|
6184
|
+
'toTime'?: string | null;
|
|
6185
|
+
'refund'?: string | null;
|
|
6186
|
+
'quantity'?: number;
|
|
6187
|
+
'frequency'?: number;
|
|
6188
|
+
'unitCost'?: number;
|
|
6189
|
+
'totalCost'?: number;
|
|
6190
|
+
'chargeTypeClass'?: string | null;
|
|
6191
|
+
'description': string | null;
|
|
6192
|
+
'serviceID'?: string | null;
|
|
6193
|
+
'accountRef'?: string | null;
|
|
6194
|
+
'carrier'?: string | null;
|
|
6195
|
+
'recordID'?: string | null;
|
|
6196
|
+
'currency'?: string | null;
|
|
6197
|
+
'discountReference'?: string | null;
|
|
6198
|
+
'effectiveDate'?: string | null;
|
|
6199
|
+
'partMonthCost'?: number;
|
|
6200
|
+
'filename': string | null;
|
|
6201
|
+
'contentReference': string | null;
|
|
6202
|
+
'filePeriod': string | null;
|
|
6203
|
+
}
|
|
6178
6204
|
|
|
6179
6205
|
export const SdrReferenceType = {
|
|
6180
6206
|
SipTrunk: 'SIP_TRUNK',
|
|
@@ -7125,6 +7151,19 @@ export interface SmsWhitelistEntity {
|
|
|
7125
7151
|
*/
|
|
7126
7152
|
'fqdn'?: string;
|
|
7127
7153
|
}
|
|
7154
|
+
export interface SpecialService {
|
|
7155
|
+
'createdDate'?: string;
|
|
7156
|
+
'id'?: number;
|
|
7157
|
+
'outboundCliId'?: number;
|
|
7158
|
+
'outboundCli': OutboundCli;
|
|
7159
|
+
'baseService': BaseService;
|
|
7160
|
+
'customerRate': CustomerRate;
|
|
7161
|
+
'description': string | null;
|
|
7162
|
+
'hideOnInvoice'?: boolean;
|
|
7163
|
+
'startPeriod': string;
|
|
7164
|
+
'endPeriod'?: string | null;
|
|
7165
|
+
'filePeriod'?: string | null;
|
|
7166
|
+
}
|
|
7128
7167
|
/**
|
|
7129
7168
|
* DistCourierEntity
|
|
7130
7169
|
*/
|
|
@@ -9612,6 +9651,33 @@ export interface TokenResponseModel {
|
|
|
9612
9651
|
*/
|
|
9613
9652
|
'access_token'?: string;
|
|
9614
9653
|
}
|
|
9654
|
+
export interface UnconnectedSdr {
|
|
9655
|
+
'id'?: number;
|
|
9656
|
+
'sdrId'?: number;
|
|
9657
|
+
'sdr': Sdr;
|
|
9658
|
+
'productCode': string | null;
|
|
9659
|
+
'cli'?: string | null;
|
|
9660
|
+
'outboundCliId'?: number | null;
|
|
9661
|
+
'outboundCli'?: OutboundCli;
|
|
9662
|
+
'servicePlanId'?: number | null;
|
|
9663
|
+
'servicePlan'?: ServicePlan;
|
|
9664
|
+
'serviceId'?: number | null;
|
|
9665
|
+
'service'?: Service;
|
|
9666
|
+
'specialServiceId'?: number | null;
|
|
9667
|
+
'specialService'?: SpecialService;
|
|
9668
|
+
'customerCharge'?: number | null;
|
|
9669
|
+
'customerRate'?: CustomerRate;
|
|
9670
|
+
'description'?: string | null;
|
|
9671
|
+
'hideOnInvoice'?: boolean;
|
|
9672
|
+
'unitCharge'?: number | null;
|
|
9673
|
+
'customerId'?: number | null;
|
|
9674
|
+
'servicePlanName'?: string | null;
|
|
9675
|
+
'serviceCode'?: string | null;
|
|
9676
|
+
'sdrDescription'?: string | null;
|
|
9677
|
+
'sdrCost'?: number | null;
|
|
9678
|
+
'remarks'?: string | null;
|
|
9679
|
+
'filePeriod': string | null;
|
|
9680
|
+
}
|
|
9615
9681
|
/**
|
|
9616
9682
|
* EdTechPro Upgrade Response
|
|
9617
9683
|
*/
|
|
@@ -15883,7 +15949,7 @@ export const BillingApiFp = function(configuration?: Configuration) {
|
|
|
15883
15949
|
* @param {*} [options] Override http request option.
|
|
15884
15950
|
* @throws {RequiredError}
|
|
15885
15951
|
*/
|
|
15886
|
-
async getGetUnconnectedServices(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
15952
|
+
async getGetUnconnectedServices(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UnconnectedSdr>>> {
|
|
15887
15953
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getGetUnconnectedServices(options);
|
|
15888
15954
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
15889
15955
|
const localVarOperationServerBasePath = operationServerMap['BillingApi.getGetUnconnectedServices']?.[localVarOperationServerIndex]?.url;
|
|
@@ -16602,7 +16668,7 @@ export const BillingApiFactory = function (configuration?: Configuration, basePa
|
|
|
16602
16668
|
* @param {*} [options] Override http request option.
|
|
16603
16669
|
* @throws {RequiredError}
|
|
16604
16670
|
*/
|
|
16605
|
-
getGetUnconnectedServices(options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
16671
|
+
getGetUnconnectedServices(options?: RawAxiosRequestConfig): AxiosPromise<Array<UnconnectedSdr>> {
|
|
16606
16672
|
return localVarFp.getGetUnconnectedServices(options).then((request) => request(axios, basePath));
|
|
16607
16673
|
},
|
|
16608
16674
|
/**
|
package/dist/api.d.ts
CHANGED
|
@@ -6093,6 +6093,32 @@ export interface ScopeModel {
|
|
|
6093
6093
|
*/
|
|
6094
6094
|
'description'?: string;
|
|
6095
6095
|
}
|
|
6096
|
+
export interface Sdr {
|
|
6097
|
+
'id'?: number;
|
|
6098
|
+
'customerIdentifier': string | null;
|
|
6099
|
+
'fromDate': string;
|
|
6100
|
+
'fromTime'?: string | null;
|
|
6101
|
+
'toDate'?: string | null;
|
|
6102
|
+
'toTime'?: string | null;
|
|
6103
|
+
'refund'?: string | null;
|
|
6104
|
+
'quantity'?: number;
|
|
6105
|
+
'frequency'?: number;
|
|
6106
|
+
'unitCost'?: number;
|
|
6107
|
+
'totalCost'?: number;
|
|
6108
|
+
'chargeTypeClass'?: string | null;
|
|
6109
|
+
'description': string | null;
|
|
6110
|
+
'serviceID'?: string | null;
|
|
6111
|
+
'accountRef'?: string | null;
|
|
6112
|
+
'carrier'?: string | null;
|
|
6113
|
+
'recordID'?: string | null;
|
|
6114
|
+
'currency'?: string | null;
|
|
6115
|
+
'discountReference'?: string | null;
|
|
6116
|
+
'effectiveDate'?: string | null;
|
|
6117
|
+
'partMonthCost'?: number;
|
|
6118
|
+
'filename': string | null;
|
|
6119
|
+
'contentReference': string | null;
|
|
6120
|
+
'filePeriod': string | null;
|
|
6121
|
+
}
|
|
6096
6122
|
export declare const SdrReferenceType: {
|
|
6097
6123
|
readonly SipTrunk: "SIP_TRUNK";
|
|
6098
6124
|
readonly Broadband: "BROADBAND";
|
|
@@ -7001,6 +7027,19 @@ export interface SmsWhitelistEntity {
|
|
|
7001
7027
|
*/
|
|
7002
7028
|
'fqdn'?: string;
|
|
7003
7029
|
}
|
|
7030
|
+
export interface SpecialService {
|
|
7031
|
+
'createdDate'?: string;
|
|
7032
|
+
'id'?: number;
|
|
7033
|
+
'outboundCliId'?: number;
|
|
7034
|
+
'outboundCli': OutboundCli;
|
|
7035
|
+
'baseService': BaseService;
|
|
7036
|
+
'customerRate': CustomerRate;
|
|
7037
|
+
'description': string | null;
|
|
7038
|
+
'hideOnInvoice'?: boolean;
|
|
7039
|
+
'startPeriod': string;
|
|
7040
|
+
'endPeriod'?: string | null;
|
|
7041
|
+
'filePeriod'?: string | null;
|
|
7042
|
+
}
|
|
7004
7043
|
/**
|
|
7005
7044
|
* DistCourierEntity
|
|
7006
7045
|
*/
|
|
@@ -9464,6 +9503,33 @@ export interface TokenResponseModel {
|
|
|
9464
9503
|
*/
|
|
9465
9504
|
'access_token'?: string;
|
|
9466
9505
|
}
|
|
9506
|
+
export interface UnconnectedSdr {
|
|
9507
|
+
'id'?: number;
|
|
9508
|
+
'sdrId'?: number;
|
|
9509
|
+
'sdr': Sdr;
|
|
9510
|
+
'productCode': string | null;
|
|
9511
|
+
'cli'?: string | null;
|
|
9512
|
+
'outboundCliId'?: number | null;
|
|
9513
|
+
'outboundCli'?: OutboundCli;
|
|
9514
|
+
'servicePlanId'?: number | null;
|
|
9515
|
+
'servicePlan'?: ServicePlan;
|
|
9516
|
+
'serviceId'?: number | null;
|
|
9517
|
+
'service'?: Service;
|
|
9518
|
+
'specialServiceId'?: number | null;
|
|
9519
|
+
'specialService'?: SpecialService;
|
|
9520
|
+
'customerCharge'?: number | null;
|
|
9521
|
+
'customerRate'?: CustomerRate;
|
|
9522
|
+
'description'?: string | null;
|
|
9523
|
+
'hideOnInvoice'?: boolean;
|
|
9524
|
+
'unitCharge'?: number | null;
|
|
9525
|
+
'customerId'?: number | null;
|
|
9526
|
+
'servicePlanName'?: string | null;
|
|
9527
|
+
'serviceCode'?: string | null;
|
|
9528
|
+
'sdrDescription'?: string | null;
|
|
9529
|
+
'sdrCost'?: number | null;
|
|
9530
|
+
'remarks'?: string | null;
|
|
9531
|
+
'filePeriod': string | null;
|
|
9532
|
+
}
|
|
9467
9533
|
/**
|
|
9468
9534
|
* EdTechPro Upgrade Response
|
|
9469
9535
|
*/
|
|
@@ -11890,7 +11956,7 @@ export declare const BillingApiFp: (configuration?: Configuration) => {
|
|
|
11890
11956
|
* @param {*} [options] Override http request option.
|
|
11891
11957
|
* @throws {RequiredError}
|
|
11892
11958
|
*/
|
|
11893
|
-
getGetUnconnectedServices(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
11959
|
+
getGetUnconnectedServices(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UnconnectedSdr>>>;
|
|
11894
11960
|
/**
|
|
11895
11961
|
* Is Bundle Customer
|
|
11896
11962
|
* @param {number} [billCustomerId] Customer ID
|
|
@@ -12381,7 +12447,7 @@ export declare const BillingApiFactory: (configuration?: Configuration, basePath
|
|
|
12381
12447
|
* @param {*} [options] Override http request option.
|
|
12382
12448
|
* @throws {RequiredError}
|
|
12383
12449
|
*/
|
|
12384
|
-
getGetUnconnectedServices(options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
12450
|
+
getGetUnconnectedServices(options?: RawAxiosRequestConfig): AxiosPromise<Array<UnconnectedSdr>>;
|
|
12385
12451
|
/**
|
|
12386
12452
|
* Is Bundle Customer
|
|
12387
12453
|
* @param {number} [billCustomerId] Customer ID
|
|
@@ -12872,7 +12938,7 @@ export declare class BillingApi extends BaseAPI {
|
|
|
12872
12938
|
* @param {*} [options] Override http request option.
|
|
12873
12939
|
* @throws {RequiredError}
|
|
12874
12940
|
*/
|
|
12875
|
-
getGetUnconnectedServices(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12941
|
+
getGetUnconnectedServices(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UnconnectedSdr[], any, {}>>;
|
|
12876
12942
|
/**
|
|
12877
12943
|
* Is Bundle Customer
|
|
12878
12944
|
* @param {number} [billCustomerId] Customer ID
|
package/docs/BillingApi.md
CHANGED
|
@@ -1859,7 +1859,7 @@ No authorization required
|
|
|
1859
1859
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
1860
1860
|
|
|
1861
1861
|
# **getGetUnconnectedServices**
|
|
1862
|
-
> Array<
|
|
1862
|
+
> Array<UnconnectedSdr> getGetUnconnectedServices()
|
|
1863
1863
|
|
|
1864
1864
|
Get Unconnected Services
|
|
1865
1865
|
|
|
@@ -1883,7 +1883,7 @@ This endpoint does not have any parameters.
|
|
|
1883
1883
|
|
|
1884
1884
|
### Return type
|
|
1885
1885
|
|
|
1886
|
-
**Array<
|
|
1886
|
+
**Array<UnconnectedSdr>**
|
|
1887
1887
|
|
|
1888
1888
|
### Authorization
|
|
1889
1889
|
|
|
@@ -1898,7 +1898,7 @@ No authorization required
|
|
|
1898
1898
|
### HTTP response details
|
|
1899
1899
|
| Status code | Description | Response headers |
|
|
1900
1900
|
|-------------|-------------|------------------|
|
|
1901
|
-
|**200** |
|
|
1901
|
+
|**200** | Unconnected SDR | - |
|
|
1902
1902
|
|**400** | Bad Request | - |
|
|
1903
1903
|
|**401** | Unauthorised | - |
|
|
1904
1904
|
|**403** | Access Denied | - |
|
package/docs/Sdr.md
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# Sdr
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **number** | | [optional] [default to undefined]
|
|
9
|
+
**customerIdentifier** | **string** | | [default to undefined]
|
|
10
|
+
**fromDate** | **string** | | [default to undefined]
|
|
11
|
+
**fromTime** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**toDate** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**toTime** | **string** | | [optional] [default to undefined]
|
|
14
|
+
**refund** | **string** | | [optional] [default to undefined]
|
|
15
|
+
**quantity** | **number** | | [optional] [default to undefined]
|
|
16
|
+
**frequency** | **number** | | [optional] [default to undefined]
|
|
17
|
+
**unitCost** | **number** | | [optional] [default to undefined]
|
|
18
|
+
**totalCost** | **number** | | [optional] [default to undefined]
|
|
19
|
+
**chargeTypeClass** | **string** | | [optional] [default to undefined]
|
|
20
|
+
**description** | **string** | | [default to undefined]
|
|
21
|
+
**serviceID** | **string** | | [optional] [default to undefined]
|
|
22
|
+
**accountRef** | **string** | | [optional] [default to undefined]
|
|
23
|
+
**carrier** | **string** | | [optional] [default to undefined]
|
|
24
|
+
**recordID** | **string** | | [optional] [default to undefined]
|
|
25
|
+
**currency** | **string** | | [optional] [default to undefined]
|
|
26
|
+
**discountReference** | **string** | | [optional] [default to undefined]
|
|
27
|
+
**effectiveDate** | **string** | | [optional] [default to undefined]
|
|
28
|
+
**partMonthCost** | **number** | | [optional] [default to undefined]
|
|
29
|
+
**filename** | **string** | | [default to undefined]
|
|
30
|
+
**contentReference** | **string** | | [default to undefined]
|
|
31
|
+
**filePeriod** | **string** | | [default to undefined]
|
|
32
|
+
|
|
33
|
+
## Example
|
|
34
|
+
|
|
35
|
+
```typescript
|
|
36
|
+
import { Sdr } from 'yellowgrid-api-ts';
|
|
37
|
+
|
|
38
|
+
const instance: Sdr = {
|
|
39
|
+
id,
|
|
40
|
+
customerIdentifier,
|
|
41
|
+
fromDate,
|
|
42
|
+
fromTime,
|
|
43
|
+
toDate,
|
|
44
|
+
toTime,
|
|
45
|
+
refund,
|
|
46
|
+
quantity,
|
|
47
|
+
frequency,
|
|
48
|
+
unitCost,
|
|
49
|
+
totalCost,
|
|
50
|
+
chargeTypeClass,
|
|
51
|
+
description,
|
|
52
|
+
serviceID,
|
|
53
|
+
accountRef,
|
|
54
|
+
carrier,
|
|
55
|
+
recordID,
|
|
56
|
+
currency,
|
|
57
|
+
discountReference,
|
|
58
|
+
effectiveDate,
|
|
59
|
+
partMonthCost,
|
|
60
|
+
filename,
|
|
61
|
+
contentReference,
|
|
62
|
+
filePeriod,
|
|
63
|
+
};
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# SpecialService
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**createdDate** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**id** | **number** | | [optional] [default to undefined]
|
|
10
|
+
**outboundCliId** | **number** | | [optional] [default to undefined]
|
|
11
|
+
**outboundCli** | [**OutboundCli**](OutboundCli.md) | | [default to undefined]
|
|
12
|
+
**baseService** | [**BaseService**](BaseService.md) | | [default to undefined]
|
|
13
|
+
**customerRate** | [**CustomerRate**](CustomerRate.md) | | [default to undefined]
|
|
14
|
+
**description** | **string** | | [default to undefined]
|
|
15
|
+
**hideOnInvoice** | **boolean** | | [optional] [default to undefined]
|
|
16
|
+
**startPeriod** | **string** | | [default to undefined]
|
|
17
|
+
**endPeriod** | **string** | | [optional] [default to undefined]
|
|
18
|
+
**filePeriod** | **string** | | [optional] [default to undefined]
|
|
19
|
+
|
|
20
|
+
## Example
|
|
21
|
+
|
|
22
|
+
```typescript
|
|
23
|
+
import { SpecialService } from 'yellowgrid-api-ts';
|
|
24
|
+
|
|
25
|
+
const instance: SpecialService = {
|
|
26
|
+
createdDate,
|
|
27
|
+
id,
|
|
28
|
+
outboundCliId,
|
|
29
|
+
outboundCli,
|
|
30
|
+
baseService,
|
|
31
|
+
customerRate,
|
|
32
|
+
description,
|
|
33
|
+
hideOnInvoice,
|
|
34
|
+
startPeriod,
|
|
35
|
+
endPeriod,
|
|
36
|
+
filePeriod,
|
|
37
|
+
};
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# UnconnectedSdr
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **number** | | [optional] [default to undefined]
|
|
9
|
+
**sdrId** | **number** | | [optional] [default to undefined]
|
|
10
|
+
**sdr** | [**Sdr**](Sdr.md) | | [default to undefined]
|
|
11
|
+
**productCode** | **string** | | [default to undefined]
|
|
12
|
+
**cli** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**outboundCliId** | **number** | | [optional] [default to undefined]
|
|
14
|
+
**outboundCli** | [**OutboundCli**](OutboundCli.md) | | [optional] [default to undefined]
|
|
15
|
+
**servicePlanId** | **number** | | [optional] [default to undefined]
|
|
16
|
+
**servicePlan** | [**ServicePlan**](ServicePlan.md) | | [optional] [default to undefined]
|
|
17
|
+
**serviceId** | **number** | | [optional] [default to undefined]
|
|
18
|
+
**service** | [**Service**](Service.md) | | [optional] [default to undefined]
|
|
19
|
+
**specialServiceId** | **number** | | [optional] [default to undefined]
|
|
20
|
+
**specialService** | [**SpecialService**](SpecialService.md) | | [optional] [default to undefined]
|
|
21
|
+
**customerCharge** | **number** | | [optional] [default to undefined]
|
|
22
|
+
**customerRate** | [**CustomerRate**](CustomerRate.md) | | [optional] [default to undefined]
|
|
23
|
+
**description** | **string** | | [optional] [default to undefined]
|
|
24
|
+
**hideOnInvoice** | **boolean** | | [optional] [default to undefined]
|
|
25
|
+
**unitCharge** | **number** | | [optional] [default to undefined]
|
|
26
|
+
**customerId** | **number** | | [optional] [default to undefined]
|
|
27
|
+
**servicePlanName** | **string** | | [optional] [default to undefined]
|
|
28
|
+
**serviceCode** | **string** | | [optional] [default to undefined]
|
|
29
|
+
**sdrDescription** | **string** | | [optional] [default to undefined]
|
|
30
|
+
**sdrCost** | **number** | | [optional] [default to undefined]
|
|
31
|
+
**remarks** | **string** | | [optional] [default to undefined]
|
|
32
|
+
**filePeriod** | **string** | | [default to undefined]
|
|
33
|
+
|
|
34
|
+
## Example
|
|
35
|
+
|
|
36
|
+
```typescript
|
|
37
|
+
import { UnconnectedSdr } from 'yellowgrid-api-ts';
|
|
38
|
+
|
|
39
|
+
const instance: UnconnectedSdr = {
|
|
40
|
+
id,
|
|
41
|
+
sdrId,
|
|
42
|
+
sdr,
|
|
43
|
+
productCode,
|
|
44
|
+
cli,
|
|
45
|
+
outboundCliId,
|
|
46
|
+
outboundCli,
|
|
47
|
+
servicePlanId,
|
|
48
|
+
servicePlan,
|
|
49
|
+
serviceId,
|
|
50
|
+
service,
|
|
51
|
+
specialServiceId,
|
|
52
|
+
specialService,
|
|
53
|
+
customerCharge,
|
|
54
|
+
customerRate,
|
|
55
|
+
description,
|
|
56
|
+
hideOnInvoice,
|
|
57
|
+
unitCharge,
|
|
58
|
+
customerId,
|
|
59
|
+
servicePlanName,
|
|
60
|
+
serviceCode,
|
|
61
|
+
sdrDescription,
|
|
62
|
+
sdrCost,
|
|
63
|
+
remarks,
|
|
64
|
+
filePeriod,
|
|
65
|
+
};
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|