Class: TencentCloud::Youmall::V20180228::ModifyPersonTagInfoRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Youmall::V20180228::ModifyPersonTagInfoRequest
- Defined in:
- lib/v20180228/models.rb
Overview
ModifyPersonTagInfo请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(companyid = nil, shopid = nil, tags = nil) ⇒ ModifyPersonTagInfoRequest
constructor
A new instance of ModifyPersonTagInfoRequest.
Constructor Details
#initialize(companyid = nil, shopid = nil, tags = nil) ⇒ ModifyPersonTagInfoRequest
Returns a new instance of ModifyPersonTagInfoRequest.
2096 2097 2098 2099 2100 |
# File 'lib/v20180228/models.rb', line 2096 def initialize(companyid=nil, shopid=nil, =nil) @CompanyId = companyid @ShopId = shopid @Tags = end |
Instance Attribute Details
#CompanyId ⇒ Object
2094 2095 2096 |
# File 'lib/v20180228/models.rb', line 2094 def CompanyId @CompanyId end |
#ShopId ⇒ Object
2094 2095 2096 |
# File 'lib/v20180228/models.rb', line 2094 def ShopId @ShopId end |
#Tags ⇒ Object
2094 2095 2096 |
# File 'lib/v20180228/models.rb', line 2094 def Tags @Tags end |
Instance Method Details
#deserialize(params) ⇒ Object
2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 |
# File 'lib/v20180228/models.rb', line 2102 def deserialize(params) @CompanyId = params['CompanyId'] @ShopId = params['ShopId'] unless params['Tags'].nil? @Tags = [] params['Tags'].each do |i| persontaginfo_tmp = PersonTagInfo.new persontaginfo_tmp.deserialize(i) @Tags << persontaginfo_tmp end end end |