Class: TencentCloud::Essbasic::V20210526::ChannelCreateOrganizationBatchSignUrlRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::ChannelCreateOrganizationBatchSignUrlRequest
- Defined in:
- lib/v20210526/models.rb
Overview
ChannelCreateOrganizationBatchSignUrl请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
注:
请确保和合同中填入的一致. -
#CanBatchReject ⇒ Object
注:
请确保和合同中填入的一致. -
#DynamicSignOption ⇒ Object
注:
请确保和合同中填入的一致. -
#FlowGroupId ⇒ Object
注:
请确保和合同中填入的一致. -
#FlowIds ⇒ Object
注:
请确保和合同中填入的一致. -
#Mobile ⇒ Object
注:
请确保和合同中填入的一致. -
#Name ⇒ Object
注:
请确保和合同中填入的一致. -
#OpenId ⇒ Object
注:
请确保和合同中填入的一致. -
#RecipientIds ⇒ Object
注:
请确保和合同中填入的一致.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(agent = nil, flowids = nil, openid = nil, name = nil, mobile = nil, flowgroupid = nil, canbatchreject = nil, dynamicsignoption = nil, recipientids = nil) ⇒ ChannelCreateOrganizationBatchSignUrlRequest
constructor
A new instance of ChannelCreateOrganizationBatchSignUrlRequest.
Constructor Details
#initialize(agent = nil, flowids = nil, openid = nil, name = nil, mobile = nil, flowgroupid = nil, canbatchreject = nil, dynamicsignoption = nil, recipientids = nil) ⇒ ChannelCreateOrganizationBatchSignUrlRequest
Returns a new instance of ChannelCreateOrganizationBatchSignUrlRequest.
2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 |
# File 'lib/v20210526/models.rb', line 2653 def initialize(agent=nil, flowids=nil, openid=nil, name=nil, mobile=nil, flowgroupid=nil, canbatchreject=nil, dynamicsignoption=nil, recipientids=nil) @Agent = agent @FlowIds = flowids @OpenId = openid @Name = name @Mobile = mobile @FlowGroupId = flowgroupid @CanBatchReject = canbatchreject @DynamicSignOption = dynamicsignoption @RecipientIds = recipientids end |
Instance Attribute Details
#Agent ⇒ Object
注:请确保和合同中填入的一致
2651 2652 2653 |
# File 'lib/v20210526/models.rb', line 2651 def Agent @Agent end |
#CanBatchReject ⇒ Object
注:请确保和合同中填入的一致
2651 2652 2653 |
# File 'lib/v20210526/models.rb', line 2651 def CanBatchReject @CanBatchReject end |
#DynamicSignOption ⇒ Object
注:请确保和合同中填入的一致
2651 2652 2653 |
# File 'lib/v20210526/models.rb', line 2651 def DynamicSignOption @DynamicSignOption end |
#FlowGroupId ⇒ Object
注:请确保和合同中填入的一致
2651 2652 2653 |
# File 'lib/v20210526/models.rb', line 2651 def FlowGroupId @FlowGroupId end |
#FlowIds ⇒ Object
注:请确保和合同中填入的一致
2651 2652 2653 |
# File 'lib/v20210526/models.rb', line 2651 def FlowIds @FlowIds end |
#Mobile ⇒ Object
注:请确保和合同中填入的一致
2651 2652 2653 |
# File 'lib/v20210526/models.rb', line 2651 def Mobile @Mobile end |
#Name ⇒ Object
注:请确保和合同中填入的一致
2651 2652 2653 |
# File 'lib/v20210526/models.rb', line 2651 def Name @Name end |
#OpenId ⇒ Object
注:请确保和合同中填入的一致
2651 2652 2653 |
# File 'lib/v20210526/models.rb', line 2651 def OpenId @OpenId end |
#RecipientIds ⇒ Object
注:请确保和合同中填入的一致
2651 2652 2653 |
# File 'lib/v20210526/models.rb', line 2651 def RecipientIds @RecipientIds end |
Instance Method Details
#deserialize(params) ⇒ Object
2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 |
# File 'lib/v20210526/models.rb', line 2665 def deserialize(params) unless params['Agent'].nil? @Agent = Agent.new @Agent.deserialize(params['Agent']) end @FlowIds = params['FlowIds'] @OpenId = params['OpenId'] @Name = params['Name'] @Mobile = params['Mobile'] @FlowGroupId = params['FlowGroupId'] @CanBatchReject = params['CanBatchReject'] unless params['DynamicSignOption'].nil? @DynamicSignOption = DynamicSignOption.new @DynamicSignOption.deserialize(params['DynamicSignOption']) end @RecipientIds = params['RecipientIds'] end |