Sha256: c61ee6592f8d2253865890c276d7fe9cc32d3802f4c3f64b7737779d27eec7ce
Contents?: true
Size: 962 Bytes
Versions: 2
Compression:
Stored size: 962 Bytes
Contents
# OryClient::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. | | | **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** | [**AnyType**](.md) | The input's value. | [optional] | ## Example ```ruby require 'ory-client' instance = OryClient::UiNodeInputAttributes.new( disabled: null, label: null, name: null, onclick: null, pattern: null, required: null, type: null, value: null ) ```
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ory-client-0.0.1.alpha19 | docs/UiNodeInputAttributes.md |
ory-client-0.0.1.alpha18 | docs/UiNodeInputAttributes.md |