Sha256: dbef517b8251ab3279a32be39ad9dbab83c25ac52f615cad63396990e6913ee5

Contents?: true

Size: 1.01 KB

Versions: 2

Compression:

Stored size: 1.01 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** | [**AnyType**](.md) | 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.8.2.alpha1 docs/UiNodeInputAttributes.md
ory-kratos-client-0.8.0.alpha2 docs/UiNodeInputAttributes.md