Class: TencentCloud::Ess::V20201111::CreateFlowApproversResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::CreateFlowApproversResponse
- Defined in:
- lib/v20201111/models.rb
Overview
CreateFlowApprovers返回参数结构体
Instance Attribute Summary collapse
-
#FillError ⇒ Object
注:
目前仅补充动态签署人时会返回补充失败的原因. -
#RequestId ⇒ Object
注:
目前仅补充动态签署人时会返回补充失败的原因.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(fillerror = nil, requestid = nil) ⇒ CreateFlowApproversResponse
constructor
A new instance of CreateFlowApproversResponse.
Constructor Details
#initialize(fillerror = nil, requestid = nil) ⇒ CreateFlowApproversResponse
Returns a new instance of CreateFlowApproversResponse.
3852 3853 3854 3855 |
# File 'lib/v20201111/models.rb', line 3852 def initialize(fillerror=nil, requestid=nil) @FillError = fillerror @RequestId = requestid end |
Instance Attribute Details
#FillError ⇒ Object
注:目前仅补充动态签署人时会返回补充失败的原因
3850 3851 3852 |
# File 'lib/v20201111/models.rb', line 3850 def FillError @FillError end |
#RequestId ⇒ Object
注:目前仅补充动态签署人时会返回补充失败的原因
3850 3851 3852 |
# File 'lib/v20201111/models.rb', line 3850 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 |
# File 'lib/v20201111/models.rb', line 3857 def deserialize(params) unless params['FillError'].nil? @FillError = [] params['FillError'].each do |i| fillerror_tmp = FillError.new fillerror_tmp.deserialize(i) @FillError << fillerror_tmp end end @RequestId = params['RequestId'] end |