Sha256: 551d73ea1ead1e42ac4eb4deccfda21b8d49a67132574c511f8733ec1e6d2697
Contents?: true
Size: 1010 Bytes
Versions: 99
Compression:
Stored size: 1010 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. | | | **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-client' instance = OryClient::UiNodeInputAttributes.new( disabled: null, label: null, name: null, node_type: null, onclick: null, pattern: null, required: null, type: null, value: null ) ```
Version data entries
99 entries across 99 versions & 1 rubygems