Sha256: 37198ddb7e6956cda87196d9d9803b319d2ba4045d517fd54954ab73c4de6d92
Contents?: true
Size: 982 Bytes
Versions: 20
Compression:
Stored size: 982 Bytes
Contents
# OryClient::ConsentRequestSession ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **access_token** | **Object** | AccessToken sets session data for the access and refresh token, as well as any future tokens issued by the refresh grant. Keep in mind that this data will be available to anyone performing OAuth 2.0 Challenge Introspection. If only your services can perform OAuth 2.0 Challenge Introspection, this is usually fine. But if third parties can access that endpoint as well, sensitive data from the session might be exposed to them. Use with care! | [optional] | | **id_token** | **Object** | IDToken sets session data for the OpenID Connect ID token. Keep in mind that the session'id payloads are readable by anyone that has access to the ID Challenge. Use with care! | [optional] | ## Example ```ruby require 'ory-client' instance = OryClient::ConsentRequestSession.new( access_token: null, id_token: null ) ```
Version data entries
20 entries across 20 versions & 1 rubygems