Class: TencentCloud::Sqlserver::V20180328::DescribeSpecSellStatusResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Sqlserver::V20180328::DescribeSpecSellStatusResponse
- Defined in:
- lib/v20180328/models.rb
Overview
DescribeSpecSellStatus返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(describespecsellstatusset = nil, requestid = nil) ⇒ DescribeSpecSellStatusResponse
constructor
A new instance of DescribeSpecSellStatusResponse.
Constructor Details
#initialize(describespecsellstatusset = nil, requestid = nil) ⇒ DescribeSpecSellStatusResponse
Returns a new instance of DescribeSpecSellStatusResponse.
6890 6891 6892 6893 |
# File 'lib/v20180328/models.rb', line 6890 def initialize(describespecsellstatusset=nil, requestid=nil) @DescribeSpecSellStatusSet = describespecsellstatusset @RequestId = requestid end |
Instance Attribute Details
#DescribeSpecSellStatusSet ⇒ Object
6888 6889 6890 |
# File 'lib/v20180328/models.rb', line 6888 def DescribeSpecSellStatusSet @DescribeSpecSellStatusSet end |
#RequestId ⇒ Object
6888 6889 6890 |
# File 'lib/v20180328/models.rb', line 6888 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 |
# File 'lib/v20180328/models.rb', line 6895 def deserialize(params) unless params['DescribeSpecSellStatusSet'].nil? @DescribeSpecSellStatusSet = [] params['DescribeSpecSellStatusSet'].each do |i| specsellstatus_tmp = SpecSellStatus.new specsellstatus_tmp.deserialize(i) @DescribeSpecSellStatusSet << specsellstatus_tmp end end @RequestId = params['RequestId'] end |