Class: TencentCloud::Essbasic::V20210526::ChannelCreateFlowSignReviewRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20210526/models.rb

Overview

ChannelCreateFlowSignReview请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(agent = nil, flowid = nil, reviewtype = nil, reviewmessage = nil, recipientid = nil, operatetype = nil) ⇒ ChannelCreateFlowSignReviewRequest

Returns a new instance of ChannelCreateFlowSignReviewRequest.



2321
2322
2323
2324
2325
2326
2327
2328
# File 'lib/v20210526/models.rb', line 2321

def initialize(agent=nil, flowid=nil, reviewtype=nil, reviewmessage=nil, recipientid=nil, operatetype=nil)
  @Agent = agent
  @FlowId = flowid
  @ReviewType = reviewtype
  @ReviewMessage = reviewmessage
  @RecipientId = recipientid
  @OperateType = operatetype
end

Instance Attribute Details

#AgentObject

Returns the value of attribute Agent.



2319
2320
2321
# File 'lib/v20210526/models.rb', line 2319

def Agent
  @Agent
end

#FlowIdObject

Returns the value of attribute FlowId.



2319
2320
2321
# File 'lib/v20210526/models.rb', line 2319

def FlowId
  @FlowId
end

#OperateTypeObject

Returns the value of attribute OperateType.



2319
2320
2321
# File 'lib/v20210526/models.rb', line 2319

def OperateType
  @OperateType
end

#RecipientIdObject

Returns the value of attribute RecipientId.



2319
2320
2321
# File 'lib/v20210526/models.rb', line 2319

def RecipientId
  @RecipientId
end

#ReviewMessageObject

Returns the value of attribute ReviewMessage.



2319
2320
2321
# File 'lib/v20210526/models.rb', line 2319

def ReviewMessage
  @ReviewMessage
end

#ReviewTypeObject

Returns the value of attribute ReviewType.



2319
2320
2321
# File 'lib/v20210526/models.rb', line 2319

def ReviewType
  @ReviewType
end

Instance Method Details

#deserialize(params) ⇒ Object



2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
# File 'lib/v20210526/models.rb', line 2330

def deserialize(params)
  unless params['Agent'].nil?
    @Agent = Agent.new
    @Agent.deserialize(params['Agent'])
  end
  @FlowId = params['FlowId']
  @ReviewType = params['ReviewType']
  @ReviewMessage = params['ReviewMessage']
  @RecipientId = params['RecipientId']
  @OperateType = params['OperateType']
end