Sha256: 1c890252d3f188e84aee51c568ed24ff3c7f562e78c8a50d60a1ced32edf39bb
Contents?: true
Size: 783 Bytes
Versions: 15
Compression:
Stored size: 783 Bytes
Contents
# OryClient::OAuth2AccessRequest ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **client_id** | **String** | ClientID is the identifier of the OAuth 2.0 client. | [optional] | | **grant_types** | **Array<String>** | GrantTypes is the requests grant types. | [optional] | | **granted_audience** | **Array<String>** | GrantedAudience is the list of audiences granted to the OAuth 2.0 client. | [optional] | | **granted_scopes** | **Array<String>** | GrantedScopes is the list of scopes granted to the OAuth 2.0 client. | [optional] | ## Example ```ruby require 'ory-client' instance = OryClient::OAuth2AccessRequest.new( client_id: null, grant_types: null, granted_audience: null, granted_scopes: null ) ```
Version data entries
15 entries across 15 versions & 1 rubygems