Sha256: 794cfb5b54df17b73a59328d165c392a5b08a56e9691a198f5fdbd3e87eeac81

Contents?: true

Size: 1.51 KB

Versions: 3

Compression:

Stored size: 1.51 KB

Contents

# OryHydraClient::VerificationFlow

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **active** | **String** | Active, if set, contains the registration method that is being used. It is initially not set. | [optional] |
| **expires_at** | **Time** | ExpiresAt is the time (UTC) when the request expires. If the user still wishes to verify the address, a new request has to be initiated. | [optional] |
| **id** | **String** |  | [optional] |
| **issued_at** | **Time** | IssuedAt is the time (UTC) when the request occurred. | [optional] |
| **messages** | [**Array<Message>**](Message.md) |  | [optional] |
| **methods** | [**Hash<String, VerificationFlowMethod>**](VerificationFlowMethod.md) | Methods contains context for all account verification methods. If a registration request has been processed, but for example the password is incorrect, this will contain error messages. |  |
| **request_url** | **String** | RequestURL is the initial URL that was requested from ORY Kratos. It can be used to forward information contained in the URL's path or query for example. | [optional] |
| **state** | **String** |  |  |
| **type** | **String** | The flow type can either be `api` or `browser`. | [optional] |

## Example

```ruby
require 'ory-kratos-client'

instance = OryHydraClient::VerificationFlow.new(
  active: null,
  expires_at: null,
  id: null,
  issued_at: null,
  messages: null,
  methods: null,
  request_url: null,
  state: null,
  type: null
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ory-kratos-client-0.5.5.alpha4 docs/VerificationFlow.md
ory-kratos-client-0.5.5.alpha3 docs/VerificationFlow.md
ory-kratos-client-0.5.5.alpha2 docs/VerificationFlow.md