Class: DatadogAPIClient::V2::OAuthClientRegistrationResponse

Inherits:
Object
  • Object
show all
Includes:
BaseGenericModel
Defined in:
lib/datadog_api_client/v2/models/o_auth_client_registration_response.rb

Overview

Response payload for a successful OAuth2 dynamic client registration as defined by RFC 7591.

Instance Attribute Summary collapse

Method Summary

Methods included from BaseGenericModel

included

Instance Attribute Details

#additional_propertiesObject

Returns the value of attribute additional_properties.



42
43
44
# File 'lib/datadog_api_client/v2/models/o_auth_client_registration_response.rb', line 42

def additional_properties
  @additional_properties
end

#client_idObject

Unique identifier assigned to the registered client.



25
26
27
# File 'lib/datadog_api_client/v2/models/o_auth_client_registration_response.rb', line 25

def client_id
  @client_id
end

#client_nameObject

Human-readable name of the client.



28
29
30
# File 'lib/datadog_api_client/v2/models/o_auth_client_registration_response.rb', line 28

def client_name
  @client_name
end

#grant_typesObject

OAuth 2.0 grant types registered for the client.



31
32
33
# File 'lib/datadog_api_client/v2/models/o_auth_client_registration_response.rb', line 31

def grant_types
  @grant_types
end

#redirect_urisObject

Redirection URIs registered for the client.



34
35
36
# File 'lib/datadog_api_client/v2/models/o_auth_client_registration_response.rb', line 34

def redirect_uris
  @redirect_uris
end

#response_typesObject

OAuth 2.0 response types registered for the client.



37
38
39
# File 'lib/datadog_api_client/v2/models/o_auth_client_registration_response.rb', line 37

def response_types
  @response_types
end

#token_endpoint_auth_methodObject

Authentication method registered for the token endpoint. Always none.



40
41
42
# File 'lib/datadog_api_client/v2/models/o_auth_client_registration_response.rb', line 40

def token_endpoint_auth_method
  @token_endpoint_auth_method
end