Class: TencentCloud::Essbasic::V20210526::CreateFlowGroupSignReviewRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::CreateFlowGroupSignReviewRequest
- Defined in:
- lib/v20210526/models.rb
Overview
CreateFlowGroupSignReview请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
注:
当审核类型(ReviewType)为审核拒绝(REJECT)或拒签(SIGN_REJECT)时,审核结果原因字段必须填写. -
#ApproverInfo ⇒ Object
注:
当审核类型(ReviewType)为审核拒绝(REJECT)或拒签(SIGN_REJECT)时,审核结果原因字段必须填写. -
#FlowGroupId ⇒ Object
注:
当审核类型(ReviewType)为审核拒绝(REJECT)或拒签(SIGN_REJECT)时,审核结果原因字段必须填写. -
#ReviewMessage ⇒ Object
注:
当审核类型(ReviewType)为审核拒绝(REJECT)或拒签(SIGN_REJECT)时,审核结果原因字段必须填写. -
#ReviewType ⇒ Object
注:
当审核类型(ReviewType)为审核拒绝(REJECT)或拒签(SIGN_REJECT)时,审核结果原因字段必须填写.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(agent = nil, flowgroupid = nil, reviewtype = nil, approverinfo = nil, reviewmessage = nil) ⇒ CreateFlowGroupSignReviewRequest
constructor
A new instance of CreateFlowGroupSignReviewRequest.
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, =nil) @Agent = agent @FlowGroupId = flowgroupid @ReviewType = reviewtype @ApproverInfo = approverinfo @ReviewMessage = end |
Instance Attribute Details
#Agent ⇒ Object
注:当审核类型(ReviewType)为审核拒绝(REJECT)或拒签(SIGN_REJECT)时,审核结果原因字段必须填写
6432 6433 6434 |
# File 'lib/v20210526/models.rb', line 6432 def Agent @Agent end |
#ApproverInfo ⇒ Object
注:当审核类型(ReviewType)为审核拒绝(REJECT)或拒签(SIGN_REJECT)时,审核结果原因字段必须填写
6432 6433 6434 |
# File 'lib/v20210526/models.rb', line 6432 def ApproverInfo @ApproverInfo end |
#FlowGroupId ⇒ Object
注:当审核类型(ReviewType)为审核拒绝(REJECT)或拒签(SIGN_REJECT)时,审核结果原因字段必须填写
6432 6433 6434 |
# File 'lib/v20210526/models.rb', line 6432 def FlowGroupId @FlowGroupId end |
#ReviewMessage ⇒ Object
注:当审核类型(ReviewType)为审核拒绝(REJECT)或拒签(SIGN_REJECT)时,审核结果原因字段必须填写
6432 6433 6434 |
# File 'lib/v20210526/models.rb', line 6432 def ReviewMessage @ReviewMessage end |
#ReviewType ⇒ Object
注:当审核类型(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 |