Sha256: 46247ea562666d311d5d67616584590e239792bc9fab9330d21b22fc035fb10e
Contents?: true
Size: 1.34 KB
Versions: 83
Compression:
Stored size: 1.34 KB
Contents
# OryClient::OAuth2ConsentSession ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **consent_request** | [**OAuth2ConsentRequest**](OAuth2ConsentRequest.md) | | [optional] | | **expires_at** | [**OAuth2ConsentSessionExpiresAt**](OAuth2ConsentSessionExpiresAt.md) | | [optional] | | **grant_access_token_audience** | **Array<String>** | | [optional] | | **grant_scope** | **Array<String>** | | [optional] | | **handled_at** | **Time** | | [optional] | | **remember** | **Boolean** | Remember Consent Remember, if set to true, tells ORY Hydra to remember this consent authorization and reuse it if the same client asks the same user for the same, or a subset of, scope. | [optional] | | **remember_for** | **Integer** | Remember Consent For RememberFor sets how long the consent authorization should be remembered for in seconds. If set to `0`, the authorization will be remembered indefinitely. | [optional] | | **session** | [**AcceptOAuth2ConsentRequestSession**](AcceptOAuth2ConsentRequestSession.md) | | [optional] | ## Example ```ruby require 'ory-client' instance = OryClient::OAuth2ConsentSession.new( consent_request: null, expires_at: null, grant_access_token_audience: null, grant_scope: null, handled_at: null, remember: null, remember_for: null, session: null ) ```
Version data entries
83 entries across 83 versions & 1 rubygems
Version | Path |
---|---|
ory-client-1.0.1 | docs/OAuth2ConsentSession.md |
ory-client-1.0.0 | docs/OAuth2ConsentSession.md |
ory-client-1.0.0.alpha0 | docs/OAuth2ConsentSession.md |