Class: TencentCloud::Billing::V20180709::DescribeGatherRuleDetailResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Billing::V20180709::DescribeGatherRuleDetailResponse
- Defined in:
- lib/v20180709/models.rb
Overview
DescribeGatherRuleDetail返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(id = nil, uin = nil, updatetime = nil, ruledetail = nil, requestid = nil) ⇒ DescribeGatherRuleDetailResponse
constructor
A new instance of DescribeGatherRuleDetailResponse.
Constructor Details
#initialize(id = nil, uin = nil, updatetime = nil, ruledetail = nil, requestid = nil) ⇒ DescribeGatherRuleDetailResponse
Returns a new instance of DescribeGatherRuleDetailResponse.
9499 9500 9501 9502 9503 9504 9505 |
# File 'lib/v20180709/models.rb', line 9499 def initialize(id=nil, uin=nil, updatetime=nil, ruledetail=nil, requestid=nil) @Id = id @Uin = uin @UpdateTime = updatetime @RuleDetail = ruledetail @RequestId = requestid end |
Instance Attribute Details
#Id ⇒ Object
9497 9498 9499 |
# File 'lib/v20180709/models.rb', line 9497 def Id @Id end |
#RequestId ⇒ Object
9497 9498 9499 |
# File 'lib/v20180709/models.rb', line 9497 def RequestId @RequestId end |
#RuleDetail ⇒ Object
9497 9498 9499 |
# File 'lib/v20180709/models.rb', line 9497 def RuleDetail @RuleDetail end |
#Uin ⇒ Object
9497 9498 9499 |
# File 'lib/v20180709/models.rb', line 9497 def Uin @Uin end |
#UpdateTime ⇒ Object
9497 9498 9499 |
# File 'lib/v20180709/models.rb', line 9497 def UpdateTime @UpdateTime end |
Instance Method Details
#deserialize(params) ⇒ Object
9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 |
# File 'lib/v20180709/models.rb', line 9507 def deserialize(params) @Id = params['Id'] @Uin = params['Uin'] @UpdateTime = params['UpdateTime'] unless params['RuleDetail'].nil? @RuleDetail = AllocationRuleExpression.new @RuleDetail.deserialize(params['RuleDetail']) end @RequestId = params['RequestId'] end |