Class: TencentCloud::Ess::V20201111::DescribeBatchOrganizationRegistrationUrlsRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::DescribeBatchOrganizationRegistrationUrlsRequest
- Defined in:
- lib/v20201111/models.rb
Overview
DescribeBatchOrganizationRegistrationUrls请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。. -
#Operator ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。. -
#TaskId ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(operator = nil, taskid = nil, agent = nil) ⇒ DescribeBatchOrganizationRegistrationUrlsRequest
constructor
A new instance of DescribeBatchOrganizationRegistrationUrlsRequest.
Constructor Details
#initialize(operator = nil, taskid = nil, agent = nil) ⇒ DescribeBatchOrganizationRegistrationUrlsRequest
Returns a new instance of DescribeBatchOrganizationRegistrationUrlsRequest.
9096 9097 9098 9099 9100 |
# File 'lib/v20201111/models.rb', line 9096 def initialize(operator=nil, taskid=nil, agent=nil) @Operator = operator @TaskId = taskid @Agent = agent end |
Instance Attribute Details
#Agent ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
9094 9095 9096 |
# File 'lib/v20201111/models.rb', line 9094 def Agent @Agent end |
#Operator ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
9094 9095 9096 |
# File 'lib/v20201111/models.rb', line 9094 def Operator @Operator end |
#TaskId ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
9094 9095 9096 |
# File 'lib/v20201111/models.rb', line 9094 def TaskId @TaskId end |
Instance Method Details
#deserialize(params) ⇒ Object
9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 |
# File 'lib/v20201111/models.rb', line 9102 def deserialize(params) unless params['Operator'].nil? @Operator = UserInfo.new @Operator.deserialize(params['Operator']) end @TaskId = params['TaskId'] unless params['Agent'].nil? @Agent = Agent.new @Agent.deserialize(params['Agent']) end end |