Sha256: 5b8a66410dc8dda93be75565954fe79cd08f63575c061fe9ee4738939cfdd970
Contents?: true
Size: 1.32 KB
Versions: 3
Compression:
Stored size: 1.32 KB
Contents
# OryHydraClient::RegistrationFlow ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **active** | **String** | and so on. | [optional] | | **expires_at** | **Time** | ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated. | | | **id** | **String** | | | | **issued_at** | **Time** | IssuedAt is the time (UTC) when the flow occurred. | | | **messages** | [**Array<Message>**](Message.md) | | [optional] | | **methods** | [**Hash<String, RegistrationFlowMethod>**](RegistrationFlowMethod.md) | Methods contains context for all enabled registration methods. If a registration flow 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. | | | **type** | **String** | The flow type can either be `api` or `browser`. | [optional] | ## Example ```ruby require 'ory-kratos-client' instance = OryHydraClient::RegistrationFlow.new( active: null, expires_at: null, id: null, issued_at: null, messages: null, methods: null, request_url: null, type: null ) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ory-kratos-client-0.5.5.alpha4 | docs/RegistrationFlow.md |
ory-kratos-client-0.5.5.alpha3 | docs/RegistrationFlow.md |
ory-kratos-client-0.5.5.alpha2 | docs/RegistrationFlow.md |