Class: TencentCloud::Youmall::V20180228::DescribeZoneFlowGenderAvrStayTimeByZoneIdResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Youmall::V20180228::DescribeZoneFlowGenderAvrStayTimeByZoneIdResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeZoneFlowGenderAvrStayTimeByZoneId返回参数结构体
Instance Attribute Summary collapse
- #CompanyId ⇒ Object
- #Data ⇒ Object
- #RequestId ⇒ Object
- #ShopId ⇒ Object
- #ZoneId ⇒ Object
- #ZoneName ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(companyid = nil, shopid = nil, zoneid = nil, zonename = nil, data = nil, requestid = nil) ⇒ DescribeZoneFlowGenderAvrStayTimeByZoneIdResponse
constructor
A new instance of DescribeZoneFlowGenderAvrStayTimeByZoneIdResponse.
Constructor Details
#initialize(companyid = nil, shopid = nil, zoneid = nil, zonename = nil, data = nil, requestid = nil) ⇒ DescribeZoneFlowGenderAvrStayTimeByZoneIdResponse
Returns a new instance of DescribeZoneFlowGenderAvrStayTimeByZoneIdResponse.
1717 1718 1719 1720 1721 1722 1723 1724 |
# File 'lib/v20180228/models.rb', line 1717 def initialize(companyid=nil, shopid=nil, zoneid=nil, zonename=nil, data=nil, requestid=nil) @CompanyId = companyid @ShopId = shopid @ZoneId = zoneid @ZoneName = zonename @Data = data @RequestId = requestid end |
Instance Attribute Details
#CompanyId ⇒ Object
1715 1716 1717 |
# File 'lib/v20180228/models.rb', line 1715 def CompanyId @CompanyId end |
#Data ⇒ Object
1715 1716 1717 |
# File 'lib/v20180228/models.rb', line 1715 def Data @Data end |
#RequestId ⇒ Object
1715 1716 1717 |
# File 'lib/v20180228/models.rb', line 1715 def RequestId @RequestId end |
#ShopId ⇒ Object
1715 1716 1717 |
# File 'lib/v20180228/models.rb', line 1715 def ShopId @ShopId end |
#ZoneId ⇒ Object
1715 1716 1717 |
# File 'lib/v20180228/models.rb', line 1715 def ZoneId @ZoneId end |
#ZoneName ⇒ Object
1715 1716 1717 |
# File 'lib/v20180228/models.rb', line 1715 def ZoneName @ZoneName end |
Instance Method Details
#deserialize(params) ⇒ Object
1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 |
# File 'lib/v20180228/models.rb', line 1726 def deserialize(params) @CompanyId = params['CompanyId'] @ShopId = params['ShopId'] @ZoneId = params['ZoneId'] @ZoneName = params['ZoneName'] unless params['Data'].nil? @Data = [] params['Data'].each do |i| zoneagegroupavrstaytime_tmp = ZoneAgeGroupAvrStayTime.new zoneagegroupavrstaytime_tmp.deserialize(i) @Data << zoneagegroupavrstaytime_tmp end end @RequestId = params['RequestId'] end |