class Comet::ExternalLDAPAuthenticationSourceServer

def to_hash

Returns:
  • (Hash) - The complete object as a Ruby hash
def to_hash
  ret = {}
  ret['Hostname'] = @hostname
  ret['Port'] = @port
  ret['SecurityMethod'] = @security_method
  ret['AcceptInvalidSSL'] = @accept_invalid_ssl
  @unknown_json_fields.each do |k, v|
    ret[k] = v
  end
  ret
end