Class: TencentCloud::Ckafka::V20190819::FetchMessageByOffsetRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Ckafka::V20190819::FetchMessageByOffsetRequest
- Defined in:
- lib/v20190819/models.rb
Overview
FetchMessageByOffset请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instanceid = nil, topic = nil, partition = nil, offset = nil) ⇒ FetchMessageByOffsetRequest
constructor
A new instance of FetchMessageByOffsetRequest.
Constructor Details
#initialize(instanceid = nil, topic = nil, partition = nil, offset = nil) ⇒ FetchMessageByOffsetRequest
Returns a new instance of FetchMessageByOffsetRequest.
6990 6991 6992 6993 6994 6995 |
# File 'lib/v20190819/models.rb', line 6990 def initialize(instanceid=nil, topic=nil, partition=nil, offset=nil) @InstanceId = instanceid @Topic = topic @Partition = partition @Offset = offset end |
Instance Attribute Details
#InstanceId ⇒ Object
6988 6989 6990 |
# File 'lib/v20190819/models.rb', line 6988 def InstanceId @InstanceId end |
#Offset ⇒ Object
6988 6989 6990 |
# File 'lib/v20190819/models.rb', line 6988 def Offset @Offset end |
#Partition ⇒ Object
6988 6989 6990 |
# File 'lib/v20190819/models.rb', line 6988 def Partition @Partition end |
#Topic ⇒ Object
6988 6989 6990 |
# File 'lib/v20190819/models.rb', line 6988 def Topic @Topic end |
Instance Method Details
#deserialize(params) ⇒ Object
6997 6998 6999 7000 7001 7002 |
# File 'lib/v20190819/models.rb', line 6997 def deserialize(params) @InstanceId = params['InstanceId'] @Topic = params['Topic'] @Partition = params['Partition'] @Offset = params['Offset'] end |