Skip to content

Commit 238bdde

Browse files
committed
Update module.
1 parent 7af8191 commit 238bdde

File tree

2 files changed

+57
-1
lines changed

2 files changed

+57
-1
lines changed

btripopen-20220520/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alicloud/btripopen20220520",
3-
"version": "1.0.22",
3+
"version": "1.0.23",
44
"description": "",
55
"main": "dist/client.js",
66
"scripts": {

btripopen-20220520/src/client.ts

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,15 @@ export class AccessTokenResponseBody extends $tea.Model {
3434
code?: string;
3535
data?: AccessTokenResponseBodyData;
3636
message?: string;
37+
module?: AccessTokenResponseBodyModule;
3738
requestId?: string;
3839
traceId?: string;
3940
static names(): { [key: string]: string } {
4041
return {
4142
code: 'code',
4243
data: 'data',
4344
message: 'message',
45+
module: 'module',
4446
requestId: 'requestId',
4547
traceId: 'traceId',
4648
};
@@ -51,6 +53,7 @@ export class AccessTokenResponseBody extends $tea.Model {
5153
code: 'string',
5254
data: AccessTokenResponseBodyData,
5355
message: 'string',
56+
module: AccessTokenResponseBodyModule,
5457
requestId: 'string',
5558
traceId: 'string',
5659
};
@@ -2224,13 +2227,15 @@ export class CorpTokenResponseBody extends $tea.Model {
22242227
code?: string;
22252228
data?: CorpTokenResponseBodyData;
22262229
message?: string;
2230+
module?: CorpTokenResponseBodyModule;
22272231
requestId?: string;
22282232
traceId?: string;
22292233
static names(): { [key: string]: string } {
22302234
return {
22312235
code: 'code',
22322236
data: 'data',
22332237
message: 'message',
2238+
module: 'module',
22342239
requestId: 'requestId',
22352240
traceId: 'traceId',
22362241
};
@@ -2241,6 +2246,7 @@ export class CorpTokenResponseBody extends $tea.Model {
22412246
code: 'string',
22422247
data: CorpTokenResponseBodyData,
22432248
message: 'string',
2249+
module: CorpTokenResponseBodyModule,
22442250
requestId: 'string',
22452251
traceId: 'string',
22462252
};
@@ -6015,6 +6021,31 @@ export class AccessTokenResponseBodyData extends $tea.Model {
60156021
}
60166022
}
60176023

6024+
export class AccessTokenResponseBodyModule extends $tea.Model {
6025+
expire?: number;
6026+
start?: number;
6027+
token?: string;
6028+
static names(): { [key: string]: string } {
6029+
return {
6030+
expire: 'expire',
6031+
start: 'start',
6032+
token: 'token',
6033+
};
6034+
}
6035+
6036+
static types(): { [key: string]: any } {
6037+
return {
6038+
expire: 'number',
6039+
start: 'number',
6040+
token: 'string',
6041+
};
6042+
}
6043+
6044+
constructor(map?: { [key: string]: any }) {
6045+
super(map);
6046+
}
6047+
}
6048+
60186049
export class AddressGetResponseBodyModule extends $tea.Model {
60196050
url?: string;
60206051
static names(): { [key: string]: string } {
@@ -8172,6 +8203,31 @@ export class CorpTokenResponseBodyData extends $tea.Model {
81728203
}
81738204
}
81748205

8206+
export class CorpTokenResponseBodyModule extends $tea.Model {
8207+
expire?: number;
8208+
start?: number;
8209+
token?: string;
8210+
static names(): { [key: string]: string } {
8211+
return {
8212+
expire: 'expire',
8213+
start: 'start',
8214+
token: 'token',
8215+
};
8216+
}
8217+
8218+
static types(): { [key: string]: any } {
8219+
return {
8220+
expire: 'number',
8221+
start: 'number',
8222+
token: 'string',
8223+
};
8224+
}
8225+
8226+
constructor(map?: { [key: string]: any }) {
8227+
super(map);
8228+
}
8229+
}
8230+
81758231
export class CostCenterQueryResponseBodyModuleEntityDOS extends $tea.Model {
81768232
corpId?: string;
81778233
entityId?: string;

0 commit comments

Comments
 (0)