Class: TencentCloud::Ame::V20190916::DescribeItemsRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ame::V20190916::DescribeItemsRequest
- Defined in:
- lib/v20190916/models.rb
Overview
DescribeItems请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(offset = nil, limit = nil, categoryid = nil, categorycode = nil) ⇒ DescribeItemsRequest
constructor
A new instance of DescribeItemsRequest.
Constructor Details
#initialize(offset = nil, limit = nil, categoryid = nil, categorycode = nil) ⇒ DescribeItemsRequest
Returns a new instance of DescribeItemsRequest.
526 527 528 529 530 531 |
# File 'lib/v20190916/models.rb', line 526 def initialize(offset=nil, limit=nil, categoryid=nil, categorycode=nil) @Offset = offset @Limit = limit @CategoryId = categoryid @CategoryCode = categorycode end |
Instance Attribute Details
#CategoryCode ⇒ Object
524 525 526 |
# File 'lib/v20190916/models.rb', line 524 def CategoryCode @CategoryCode end |
#CategoryId ⇒ Object
524 525 526 |
# File 'lib/v20190916/models.rb', line 524 def CategoryId @CategoryId end |
#Limit ⇒ Object
524 525 526 |
# File 'lib/v20190916/models.rb', line 524 def Limit @Limit end |
#Offset ⇒ Object
524 525 526 |
# File 'lib/v20190916/models.rb', line 524 def Offset @Offset end |
Instance Method Details
#deserialize(params) ⇒ Object
533 534 535 536 537 538 |
# File 'lib/v20190916/models.rb', line 533 def deserialize(params) @Offset = params['Offset'] @Limit = params['Limit'] @CategoryId = params['CategoryId'] @CategoryCode = params['CategoryCode'] end |