Skip to content

Commit 85b21cd

Browse files
committed
Update API GetSmsSign: add response parameters Body.SignIspRegisterDetailList.
1 parent a9199bd commit 85b21cd

File tree

5 files changed

+83
-1
lines changed

5 files changed

+83
-1
lines changed

dysmsapi-20170525/package.json

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

dysmsapi-20170525/src/models/GetSmsSignResponseBody.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// This file is auto-generated, don't edit it
22
import * as $dara from '@darabonba/typescript';
33
import { GetSmsSignResponseBodyAuditInfo } from "./GetSmsSignResponseBodyAuditInfo";
4+
import { GetSmsSignResponseBodySignIspRegisterDetailList } from "./GetSmsSignResponseBodySignIspRegisterDetailList";
45

56

67
export class GetSmsSignResponseBody extends $dara.Model {
@@ -94,6 +95,7 @@ export class GetSmsSignResponseBody extends $dara.Model {
9495
* SIGN_100000077042023_17174665*****_ZM2kG
9596
*/
9697
signCode?: string;
98+
signIspRegisterDetailList?: GetSmsSignResponseBodySignIspRegisterDetailList[];
9799
/**
98100
* @remarks
99101
* SMS signature name.
@@ -164,6 +166,7 @@ export class GetSmsSignResponseBody extends $dara.Model {
164166
remark: 'Remark',
165167
requestId: 'RequestId',
166168
signCode: 'SignCode',
169+
signIspRegisterDetailList: 'SignIspRegisterDetailList',
167170
signName: 'SignName',
168171
signStatus: 'SignStatus',
169172
signTag: 'SignTag',
@@ -188,6 +191,7 @@ export class GetSmsSignResponseBody extends $dara.Model {
188191
remark: 'string',
189192
requestId: 'string',
190193
signCode: 'string',
194+
signIspRegisterDetailList: { 'type': 'array', 'itemType': GetSmsSignResponseBodySignIspRegisterDetailList },
191195
signName: 'string',
192196
signStatus: 'number',
193197
signTag: 'string',
@@ -203,6 +207,9 @@ export class GetSmsSignResponseBody extends $dara.Model {
203207
if(Array.isArray(this.fileUrlList)) {
204208
$dara.Model.validateArray(this.fileUrlList);
205209
}
210+
if(Array.isArray(this.signIspRegisterDetailList)) {
211+
$dara.Model.validateArray(this.signIspRegisterDetailList);
212+
}
206213
super.validate();
207214
}
208215

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
// This file is auto-generated, don't edit it
2+
import * as $dara from '@darabonba/typescript';
3+
import { GetSmsSignResponseBodySignIspRegisterDetailListRegisterStatusReasons } from "./GetSmsSignResponseBodySignIspRegisterDetailListRegisterStatusReasons";
4+
5+
6+
export class GetSmsSignResponseBodySignIspRegisterDetailList extends $dara.Model {
7+
operatorCode?: string;
8+
operatorCompleteTime?: string;
9+
registerStatus?: number;
10+
registerStatusReasons?: GetSmsSignResponseBodySignIspRegisterDetailListRegisterStatusReasons[];
11+
static names(): { [key: string]: string } {
12+
return {
13+
operatorCode: 'OperatorCode',
14+
operatorCompleteTime: 'OperatorCompleteTime',
15+
registerStatus: 'RegisterStatus',
16+
registerStatusReasons: 'RegisterStatusReasons',
17+
};
18+
}
19+
20+
static types(): { [key: string]: any } {
21+
return {
22+
operatorCode: 'string',
23+
operatorCompleteTime: 'string',
24+
registerStatus: 'number',
25+
registerStatusReasons: { 'type': 'array', 'itemType': GetSmsSignResponseBodySignIspRegisterDetailListRegisterStatusReasons },
26+
};
27+
}
28+
29+
validate() {
30+
if(Array.isArray(this.registerStatusReasons)) {
31+
$dara.Model.validateArray(this.registerStatusReasons);
32+
}
33+
super.validate();
34+
}
35+
36+
constructor(map?: { [key: string]: any }) {
37+
super(map);
38+
}
39+
}
40+
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
// This file is auto-generated, don't edit it
2+
import * as $dara from '@darabonba/typescript';
3+
4+
5+
export class GetSmsSignResponseBodySignIspRegisterDetailListRegisterStatusReasons extends $dara.Model {
6+
reasonCode?: string;
7+
reasonDescList?: string[];
8+
static names(): { [key: string]: string } {
9+
return {
10+
reasonCode: 'ReasonCode',
11+
reasonDescList: 'ReasonDescList',
12+
};
13+
}
14+
15+
static types(): { [key: string]: any } {
16+
return {
17+
reasonCode: 'string',
18+
reasonDescList: { 'type': 'array', 'itemType': 'string' },
19+
};
20+
}
21+
22+
validate() {
23+
if(Array.isArray(this.reasonDescList)) {
24+
$dara.Model.validateArray(this.reasonDescList);
25+
}
26+
super.validate();
27+
}
28+
29+
constructor(map?: { [key: string]: any }) {
30+
super(map);
31+
}
32+
}
33+

dysmsapi-20170525/src/models/model.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ export { GetOSSInfoForCardTemplateResponseBodyData } from './GetOssinfoForCardTe
1313
export { GetOSSInfoForUploadFileResponseBodyModel } from './GetOssinfoForUploadFileResponseBodyModel';
1414
export { GetQualificationOssInfoResponseBodyData } from './GetQualificationOssInfoResponseBodyData';
1515
export { GetSmsSignResponseBodyAuditInfo } from './GetSmsSignResponseBodyAuditInfo';
16+
export { GetSmsSignResponseBodySignIspRegisterDetailListRegisterStatusReasons } from './GetSmsSignResponseBodySignIspRegisterDetailListRegisterStatusReasons';
17+
export { GetSmsSignResponseBodySignIspRegisterDetailList } from './GetSmsSignResponseBodySignIspRegisterDetailList';
1618
export { GetSmsTemplateResponseBodyAuditInfo } from './GetSmsTemplateResponseBodyAuditInfo';
1719
export { GetSmsTemplateResponseBodyFileUrlList } from './GetSmsTemplateResponseBodyFileUrlList';
1820
export { GetSmsTemplateResponseBodyMoreDataFileUrlList } from './GetSmsTemplateResponseBodyMoreDataFileUrlList';

0 commit comments

Comments
 (0)