Class: TencentCloud::Weilingwith::V20230427::BuildingListRes
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Weilingwith::V20230427::BuildingListRes
- Defined in:
- lib/v20230427/models.rb
Overview
建筑列表响应体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(buildingprofilelist = nil) ⇒ BuildingListRes
constructor
A new instance of BuildingListRes.
Constructor Details
#initialize(buildingprofilelist = nil) ⇒ BuildingListRes
Returns a new instance of BuildingListRes.
1112 1113 1114 |
# File 'lib/v20230427/models.rb', line 1112 def initialize(buildingprofilelist=nil) @BuildingProfileList = buildingprofilelist end |
Instance Attribute Details
#BuildingProfileList ⇒ Object
1110 1111 1112 |
# File 'lib/v20230427/models.rb', line 1110 def BuildingProfileList @BuildingProfileList end |
Instance Method Details
#deserialize(params) ⇒ Object
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 |
# File 'lib/v20230427/models.rb', line 1116 def deserialize(params) unless params['BuildingProfileList'].nil? @BuildingProfileList = [] params['BuildingProfileList'].each do |i| buildingprofile_tmp = BuildingProfile.new buildingprofile_tmp.deserialize(i) @BuildingProfileList << buildingprofile_tmp end end end |