Sha256: a68b9d3cef1aa8f459c7d46f686ad8fea561c94250b1c9e5574e7f9ed78939a6

Contents?: true

Size: 1.21 KB

Versions: 1

Compression:

Stored size: 1.21 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** | NodeType represents this node's types. It is a mirror of `node.type` and is primarily used to allow compatibility with OpenAPI 3.0.  In this struct it technically always is \"input\". |  |
| **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

1 entries across 1 versions & 1 rubygems

Version Path
ory-kratos-client-0.10.1 docs/UiNodeInputAttributes.md