Sha256: c12490bd8807ba6befea8db6d4563f95e3f67b236bfe8d2720ef4a72b7e2c3e5
Contents?: true
Size: 1.51 KB
Versions: 3
Compression:
Stored size: 1.51 KB
Contents
# OryHydraClient::LoginFlow ## 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. | | | **forced** | **Boolean** | Forced stores whether this login flow should enforce re-authentication. | [optional] | | **id** | **String** | | | | **issued_at** | **Time** | IssuedAt is the time (UTC) when the flow started. | | | **messages** | [**Array<Message>**](Message.md) | | [optional] | | **methods** | [**Hash<String, LoginFlowMethod>**](LoginFlowMethod.md) | List of login methods This is the list of available login methods with their required form fields, such as `identifier` and `password` for the password login method. This will also contain error messages such as \"password can not be empty\". | | | **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::LoginFlow.new( active: null, expires_at: null, forced: 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/LoginFlow.md |
ory-kratos-client-0.5.5.alpha3 | docs/LoginFlow.md |
ory-kratos-client-0.5.5.alpha2 | docs/LoginFlow.md |