Sha256: 3833c8b5cbef03601eab1b1084200312ec28e07c28790022febdc33547faa33d
Contents?: true
Size: 1 KB
Versions: 2
Compression:
Stored size: 1 KB
Contents
# OryKratosClient::UiNodeInputAttributes ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **disabled** | **Boolean** | Sets the input's disabled field to true or false. | | | **label** | [**UiText**](UiText.md) | | [optional] | | **name** | **String** | The input's element name. | | | **node_type** | **String** | | | | **onclick** | **String** | OnClick may contain javascript which should be executed on click. This is primarily used for WebAuthn. | [optional] | | **pattern** | **String** | The input's pattern. | [optional] | | **required** | **Boolean** | Mark this input field as required. | [optional] | | **type** | **String** | | | | **value** | **Object** | The input's value. | [optional] | ## Example ```ruby require 'ory-kratos-client' instance = OryKratosClient::UiNodeInputAttributes.new( disabled: null, label: null, name: null, node_type: null, onclick: null, pattern: null, required: null, type: null, value: null ) ```
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ory-kratos-client-0.9.0.alpha3 | docs/UiNodeInputAttributes.md |
ory-kratos-client-0.9.0.alpha2 | docs/UiNodeInputAttributes.md |