Class: TencentCloud::Essbasic::V20210526::CreateFlowGroupSignReviewRequest

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

Overview

CreateFlowGroupSignReview请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(agent = nil, flowgroupid = nil, reviewtype = nil, approverinfo = nil, reviewmessage = nil) ⇒ CreateFlowGroupSignReviewRequest

Returns a new instance of CreateFlowGroupSignReviewRequest.



6434
6435
6436
6437
6438
6439
6440
# File 'lib/v20210526/models.rb', line 6434

def initialize(agent=nil, flowgroupid=nil, reviewtype=nil, approverinfo=nil, reviewmessage=nil)
  @Agent = agent
  @FlowGroupId = flowgroupid
  @ReviewType = reviewtype
  @ApproverInfo = approverinfo
  @ReviewMessage = reviewmessage
end

Instance Attribute Details

#AgentObject

注:当审核类型(ReviewType)为审核拒绝(REJECT)或拒签(SIGN_REJECT)时,审核结果原因字段必须填写



6432
6433
6434
# File 'lib/v20210526/models.rb', line 6432

def Agent
  @Agent
end

#ApproverInfoObject

注:当审核类型(ReviewType)为审核拒绝(REJECT)或拒签(SIGN_REJECT)时,审核结果原因字段必须填写



6432
6433
6434
# File 'lib/v20210526/models.rb', line 6432

def ApproverInfo
  @ApproverInfo
end

#FlowGroupIdObject

注:当审核类型(ReviewType)为审核拒绝(REJECT)或拒签(SIGN_REJECT)时,审核结果原因字段必须填写



6432
6433
6434
# File 'lib/v20210526/models.rb', line 6432

def FlowGroupId
  @FlowGroupId
end

#ReviewMessageObject

注:当审核类型(ReviewType)为审核拒绝(REJECT)或拒签(SIGN_REJECT)时,审核结果原因字段必须填写



6432
6433
6434
# File 'lib/v20210526/models.rb', line 6432

def ReviewMessage
  @ReviewMessage
end

#ReviewTypeObject

注:当审核类型(ReviewType)为审核拒绝(REJECT)或拒签(SIGN_REJECT)时,审核结果原因字段必须填写



6432
6433
6434
# File 'lib/v20210526/models.rb', line 6432

def ReviewType
  @ReviewType
end

Instance Method Details

#deserialize(params) ⇒ Object



6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
# File 'lib/v20210526/models.rb', line 6442

def deserialize(params)
  unless params['Agent'].nil?
    @Agent = Agent.new
    @Agent.deserialize(params['Agent'])
  end
  @FlowGroupId = params['FlowGroupId']
  @ReviewType = params['ReviewType']
  unless params['ApproverInfo'].nil?
    @ApproverInfo = NeedReviewApproverInfo.new
    @ApproverInfo.deserialize(params['ApproverInfo'])
  end
  @ReviewMessage = params['ReviewMessage']
end