Class: TencentCloud::Essbasic::V20210526::ChannelCreateFlowApproversResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::ChannelCreateFlowApproversResponse
- Defined in:
- lib/v20210526/models.rb
Overview
ChannelCreateFlowApprovers返回参数结构体
Instance Attribute Summary collapse
-
#FillError ⇒ Object
注:
目前仅补充动态签署人时会返回补充失败的原因. -
#RequestId ⇒ Object
注:
目前仅补充动态签署人时会返回补充失败的原因.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(fillerror = nil, requestid = nil) ⇒ ChannelCreateFlowApproversResponse
constructor
A new instance of ChannelCreateFlowApproversResponse.
Constructor Details
#initialize(fillerror = nil, requestid = nil) ⇒ ChannelCreateFlowApproversResponse
Returns a new instance of ChannelCreateFlowApproversResponse.
1828 1829 1830 1831 |
# File 'lib/v20210526/models.rb', line 1828 def initialize(fillerror=nil, requestid=nil) @FillError = fillerror @RequestId = requestid end |
Instance Attribute Details
#FillError ⇒ Object
注:目前仅补充动态签署人时会返回补充失败的原因
1826 1827 1828 |
# File 'lib/v20210526/models.rb', line 1826 def FillError @FillError end |
#RequestId ⇒ Object
注:目前仅补充动态签署人时会返回补充失败的原因
1826 1827 1828 |
# File 'lib/v20210526/models.rb', line 1826 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 |
# File 'lib/v20210526/models.rb', line 1833 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 |