Sha256: 1ebd61fd17b927ffd7e31ec4940846b0d6eeb6933eb8ef5a0b10da45ec6f4349
Contents?: true
Size: 1.08 KB
Versions: 92
Compression:
Stored size: 1.08 KB
Contents
# OryClient::SuccessfulNativeRegistration ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **continue_with** | [**Array<ContinueWith>**](ContinueWith.md) | Contains a list of actions, that could follow this flow It can, for example, this will contain a reference to the verification flow, created as part of the user's registration or the token of the session. | [optional] | | **identity** | [**Identity**](Identity.md) | | | | **session** | [**Session**](Session.md) | | [optional] | | **session_token** | **String** | The Session Token This field is only set when the session hook is configured as a post-registration hook. A session token is equivalent to a session cookie, but it can be sent in the HTTP Authorization Header: Authorization: bearer ${session-token} The session token is only issued for API flows, not for Browser flows! | [optional] | ## Example ```ruby require 'ory-client' instance = OryClient::SuccessfulNativeRegistration.new( continue_with: null, identity: null, session: null, session_token: null ) ```
Version data entries
92 entries across 92 versions & 1 rubygems