Skip to content

Commit 7eb6505

Browse files
committed
Update API QueryMobilesCardSupport: add request parameters EncryptType.
1 parent 1f756d3 commit 7eb6505

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

ChangeLog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-05-27 Version: v5.1.1
2+
- Update API QueryMobilesCardSupport: add request parameters EncryptType.
3+
4+
15
2025-04-23 Version: v5.1.0
26
- Support API DeleteSmsQualification.
37
- Support API QuerySingleSmsQualification.

client/client.go

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7335,6 +7335,13 @@ func (s *QueryExtCodeSignResponse) SetBody(v *QueryExtCodeSignResponseBody) *Que
73357335
}
73367336

73377337
type QueryMobilesCardSupportRequest struct {
7338+
// if can be null:
7339+
// true
7340+
//
7341+
// example:
7342+
//
7343+
// NORMAL
7344+
EncryptType *string `json:"EncryptType,omitempty" xml:"EncryptType,omitempty"`
73387345
// The list of mobile phone numbers.
73397346
//
73407347
// This parameter is required.
@@ -7359,6 +7366,11 @@ func (s QueryMobilesCardSupportRequest) GoString() string {
73597366
return s.String()
73607367
}
73617368

7369+
func (s *QueryMobilesCardSupportRequest) SetEncryptType(v string) *QueryMobilesCardSupportRequest {
7370+
s.EncryptType = &v
7371+
return s
7372+
}
7373+
73627374
func (s *QueryMobilesCardSupportRequest) SetMobiles(v []map[string]interface{}) *QueryMobilesCardSupportRequest {
73637375
s.Mobiles = v
73647376
return s
@@ -7370,6 +7382,13 @@ func (s *QueryMobilesCardSupportRequest) SetTemplateCode(v string) *QueryMobiles
73707382
}
73717383

73727384
type QueryMobilesCardSupportShrinkRequest struct {
7385+
// if can be null:
7386+
// true
7387+
//
7388+
// example:
7389+
//
7390+
// NORMAL
7391+
EncryptType *string `json:"EncryptType,omitempty" xml:"EncryptType,omitempty"`
73737392
// The list of mobile phone numbers.
73747393
//
73757394
// This parameter is required.
@@ -7394,6 +7413,11 @@ func (s QueryMobilesCardSupportShrinkRequest) GoString() string {
73947413
return s.String()
73957414
}
73967415

7416+
func (s *QueryMobilesCardSupportShrinkRequest) SetEncryptType(v string) *QueryMobilesCardSupportShrinkRequest {
7417+
s.EncryptType = &v
7418+
return s
7419+
}
7420+
73977421
func (s *QueryMobilesCardSupportShrinkRequest) SetMobilesShrink(v string) *QueryMobilesCardSupportShrinkRequest {
73987422
s.MobilesShrink = &v
73997423
return s
@@ -18430,6 +18454,10 @@ func (client *Client) QueryMobilesCardSupportWithOptions(tmpReq *QueryMobilesCar
1843018454
}
1843118455

1843218456
query := map[string]interface{}{}
18457+
if !tea.BoolValue(util.IsUnset(request.EncryptType)) {
18458+
query["EncryptType"] = request.EncryptType
18459+
}
18460+
1843318461
if !tea.BoolValue(util.IsUnset(request.MobilesShrink)) {
1843418462
query["Mobiles"] = request.MobilesShrink
1843518463
}

0 commit comments

Comments
 (0)