@@ -7335,6 +7335,13 @@ func (s *QueryExtCodeSignResponse) SetBody(v *QueryExtCodeSignResponseBody) *Que
73357335}
73367336
73377337type 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+
73627374func (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
73727384type 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+
73977421func (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