Sha256: a336809daef8b9aa6c5abde2340c3aee9c34bc10d34e08825b422e47a1924bb3

Contents?: true

Size: 1.1 KB

Versions: 4

Compression:

Stored size: 1.1 KB

Contents

# OryKratosClient::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-kratos-client'

instance = OryKratosClient::SuccessfulNativeRegistration.new(
  continue_with: null,
  identity: null,
  session: null,
  session_token: null
)
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ory-kratos-client-1.2.1 docs/SuccessfulNativeRegistration.md
ory-kratos-client-1.1.0 docs/SuccessfulNativeRegistration.md
ory-kratos-client-1.0.0 docs/SuccessfulNativeRegistration.md
ory-kratos-client-0.13.1 docs/SuccessfulNativeRegistration.md