Skip to content

Commit 0636972

Browse files
committed
Generated ts 2021-05-20 for Linkcard.
1 parent 5ec52c8 commit 0636972

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

linkcard-20210520/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alicloud/linkcard20210520",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "",
55
"main": "dist/client.js",
66
"scripts": {
@@ -21,8 +21,8 @@
2121
"dependencies": {
2222
"@alicloud/tea-typescript": "^1.7.1",
2323
"@alicloud/tea-util": "^1.4.4",
24-
"@alicloud/openapi-client": "^0.4.1",
25-
"@alicloud/openapi-util": "^0.2.9",
24+
"@alicloud/openapi-client": "^0.4.4",
25+
"@alicloud/openapi-util": "^0.3.0",
2626
"@alicloud/endpoint-util": "^0.0.1"
2727
},
2828
"files": [

linkcard-20210520/src/client.ts

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1061,7 +1061,7 @@ export class ListOrderResponse extends $tea.Model {
10611061

10621062
export class RebindResumeSingleCardRequest extends $tea.Model {
10631063
iccid?: string;
1064-
optMsisdns?: { [key: string]: any };
1064+
optMsisdns?: string[];
10651065
static names(): { [key: string]: string } {
10661066
return {
10671067
iccid: 'Iccid',
@@ -1072,7 +1072,7 @@ export class RebindResumeSingleCardRequest extends $tea.Model {
10721072
static types(): { [key: string]: any } {
10731073
return {
10741074
iccid: 'string',
1075-
optMsisdns: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
1075+
optMsisdns: { 'type': 'array', 'itemType': 'string' },
10761076
};
10771077
}
10781078

@@ -1260,7 +1260,7 @@ export class RenewResponse extends $tea.Model {
12601260

12611261
export class ResumeSingleCardRequest extends $tea.Model {
12621262
iccid?: string;
1263-
optMsisdns?: { [key: string]: any };
1263+
optMsisdns?: string[];
12641264
static names(): { [key: string]: string } {
12651265
return {
12661266
iccid: 'Iccid',
@@ -1271,7 +1271,7 @@ export class ResumeSingleCardRequest extends $tea.Model {
12711271
static types(): { [key: string]: any } {
12721272
return {
12731273
iccid: 'string',
1274-
optMsisdns: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
1274+
optMsisdns: { 'type': 'array', 'itemType': 'string' },
12751275
};
12761276
}
12771277

@@ -1447,7 +1447,7 @@ export class SetCardStopRuleResponse extends $tea.Model {
14471447

14481448
export class StopSingleCardRequest extends $tea.Model {
14491449
iccid?: string;
1450-
optMsisdns?: { [key: string]: any };
1450+
optMsisdns?: string[];
14511451
static names(): { [key: string]: string } {
14521452
return {
14531453
iccid: 'Iccid',
@@ -1458,7 +1458,7 @@ export class StopSingleCardRequest extends $tea.Model {
14581458
static types(): { [key: string]: any } {
14591459
return {
14601460
iccid: 'string',
1461-
optMsisdns: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
1461+
optMsisdns: { 'type': 'array', 'itemType': 'string' },
14621462
};
14631463
}
14641464

@@ -2487,6 +2487,8 @@ export class ListOrderResponseBodyDataListDeliveryInfo extends $tea.Model {
24872487

24882488
export class ListOrderResponseBodyDataList extends $tea.Model {
24892489
aliFee?: string;
2490+
apnName?: string;
2491+
apnRegion?: string;
24902492
billingCycle?: string;
24912493
buyNum?: number;
24922494
cardPayCount?: number;
@@ -2507,10 +2509,13 @@ export class ListOrderResponseBodyDataList extends $tea.Model {
25072509
poolCapacity?: string;
25082510
poolCapacityUnit?: string;
25092511
poolNo?: string;
2512+
resourceQuantity?: number;
25102513
vendor?: string;
25112514
static names(): { [key: string]: string } {
25122515
return {
25132516
aliFee: 'AliFee',
2517+
apnName: 'ApnName',
2518+
apnRegion: 'ApnRegion',
25142519
billingCycle: 'BillingCycle',
25152520
buyNum: 'BuyNum',
25162521
cardPayCount: 'CardPayCount',
@@ -2531,13 +2536,16 @@ export class ListOrderResponseBodyDataList extends $tea.Model {
25312536
poolCapacity: 'PoolCapacity',
25322537
poolCapacityUnit: 'PoolCapacityUnit',
25332538
poolNo: 'PoolNo',
2539+
resourceQuantity: 'ResourceQuantity',
25342540
vendor: 'Vendor',
25352541
};
25362542
}
25372543

25382544
static types(): { [key: string]: any } {
25392545
return {
25402546
aliFee: 'string',
2547+
apnName: 'string',
2548+
apnRegion: 'string',
25412549
billingCycle: 'string',
25422550
buyNum: 'number',
25432551
cardPayCount: 'number',
@@ -2558,6 +2566,7 @@ export class ListOrderResponseBodyDataList extends $tea.Model {
25582566
poolCapacity: 'string',
25592567
poolCapacityUnit: 'string',
25602568
poolNo: 'string',
2569+
resourceQuantity: 'number',
25612570
vendor: 'string',
25622571
};
25632572
}

0 commit comments

Comments
 (0)