Sha256: e4eb5443c9d9a8d38b64304d06d8e2d74e73680f31c6431f71fe7b1fbbfd16d6

Contents?: true

Size: 1.33 KB

Versions: 36

Compression:

Stored size: 1.33 KB

Contents

# OryClient::UiNodeInputAttributes

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **autocomplete** | **String** | The autocomplete attribute for the input. | [optional] |
| **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** | The input's element type. |  |
| **value** | **Object** | The input's value. | [optional] |

## Example

```ruby
require 'ory-client'

instance = OryClient::UiNodeInputAttributes.new(
  autocomplete: null,
  disabled: null,
  label: null,
  name: null,
  node_type: null,
  onclick: null,
  pattern: null,
  required: null,
  type: null,
  value: null
)
```

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
ory-client-0.2.0.alpha48 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha47 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha46 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha45 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha44 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha43 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha42 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha41 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha40 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha39 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha38 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha37 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha36 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha35 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha34 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha33 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha32 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha31 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha30 docs/UiNodeInputAttributes.md
ory-client-0.2.0.alpha29 docs/UiNodeInputAttributes.md