Class: TencentCloud::Bma::V20210624::DescribeBPFakeURLsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Bma::V20210624::DescribeBPFakeURLsResponse
- Defined in:
- lib/v20210624/models.rb
Overview
DescribeBPFakeURLs返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(fakeurlinfos = nil, totalcount = nil, exporturl = nil, requestid = nil) ⇒ DescribeBPFakeURLsResponse
constructor
A new instance of DescribeBPFakeURLsResponse.
Constructor Details
#initialize(fakeurlinfos = nil, totalcount = nil, exporturl = nil, requestid = nil) ⇒ DescribeBPFakeURLsResponse
Returns a new instance of DescribeBPFakeURLsResponse.
1029 1030 1031 1032 1033 1034 |
# File 'lib/v20210624/models.rb', line 1029 def initialize(fakeurlinfos=nil, totalcount=nil, exporturl=nil, requestid=nil) @FakeURLInfos = fakeurlinfos @TotalCount = totalcount @ExportURL = exporturl @RequestId = requestid end |
Instance Attribute Details
#ExportURL ⇒ Object
1027 1028 1029 |
# File 'lib/v20210624/models.rb', line 1027 def ExportURL @ExportURL end |
#FakeURLInfos ⇒ Object
1027 1028 1029 |
# File 'lib/v20210624/models.rb', line 1027 def FakeURLInfos @FakeURLInfos end |
#RequestId ⇒ Object
1027 1028 1029 |
# File 'lib/v20210624/models.rb', line 1027 def RequestId @RequestId end |
#TotalCount ⇒ Object
1027 1028 1029 |
# File 'lib/v20210624/models.rb', line 1027 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 |
# File 'lib/v20210624/models.rb', line 1036 def deserialize(params) unless params['FakeURLInfos'].nil? @FakeURLInfos = [] params['FakeURLInfos'].each do |i| fakeurlinfo_tmp = FakeURLInfo.new fakeurlinfo_tmp.deserialize(i) @FakeURLInfos << fakeurlinfo_tmp end end @TotalCount = params['TotalCount'] @ExportURL = params['ExportURL'] @RequestId = params['RequestId'] end |