class TencentCloud::Ess::V20201111::CreateIntegrationEmployeesRequest

CreateIntegrationEmployees请求参数结构体

def deserialize(params)

def deserialize(params)
  unless params['Operator'].nil?
    @Operator = UserInfo.new
    @Operator.deserialize(params['Operator'])
  end
  unless params['Employees'].nil?
    @Employees = []
    params['Employees'].each do |i|
      staff_tmp = Staff.new
      staff_tmp.deserialize(i)
      @Employees << staff_tmp
    end
  end
  unless params['Agent'].nil?
    @Agent = Agent.new
    @Agent.deserialize(params['Agent'])
  end
  @InvitationNotifyType = params['InvitationNotifyType']
  @JumpUrl = params['JumpUrl']
  @Endpoint = params['Endpoint']
end

def initialize(operator=nil, employees=nil, agent=nil, invitationnotifytype=nil, jumpurl=nil, endpoint=nil)

def initialize(operator=nil, employees=nil, agent=nil, invitationnotifytype=nil, jumpurl=nil, endpoint=nil)
  @Operator = operator
  @Employees = employees
  @Agent = agent
  @InvitationNotifyType = invitationnotifytype
  @JumpUrl = jumpurl
  @Endpoint = endpoint
end