Sha256: 9fdc1186082912c718367c921193093581f84be1fd5624351d3985657115aca3
Contents?: true
Size: 1.75 KB
Versions: 5
Compression:
Stored size: 1.75 KB
Contents
# OryHydraClient::LoginFlow ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **active** | **String** | and so on. | [optional] **expires_at** | **DateTime** | 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** | **DateTime** | 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] ## Code Sample ```ruby require 'OryHydraClient' 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
5 entries across 5 versions & 1 rubygems