Sha256: 7c32033b13d618224cc566eebf0423a23c074cd184ddca51334f15d3401e4778

Contents?: true

Size: 1.98 KB

Versions: 5

Compression:

Stored size: 1.98 KB

Contents

# OryKratosClient::UiNodeInputAttributes

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **autocomplete** | **String** | The autocomplete attribute for the input. email InputAttributeAutocompleteEmail tel InputAttributeAutocompleteTel url InputAttributeAutocompleteUrl current-password InputAttributeAutocompleteCurrentPassword new-password InputAttributeAutocompleteNewPassword one-time-code InputAttributeAutocompleteOneTimeCode | [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. text InputAttributeTypeText password InputAttributeTypePassword number InputAttributeTypeNumber checkbox InputAttributeTypeCheckbox hidden InputAttributeTypeHidden email InputAttributeTypeEmail tel InputAttributeTypeTel submit InputAttributeTypeSubmit button InputAttributeTypeButton datetime-local InputAttributeTypeDateTimeLocal date InputAttributeTypeDate url InputAttributeTypeURI |  |
| **value** | **Object** | The input's value. | [optional] |

## Example

```ruby
require 'ory-kratos-client'

instance = OryKratosClient::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

5 entries across 5 versions & 1 rubygems

Version Path
ory-kratos-client-1.1.0 docs/UiNodeInputAttributes.md
ory-kratos-client-1.0.0 docs/UiNodeInputAttributes.md
ory-kratos-client-0.13.1 docs/UiNodeInputAttributes.md
ory-kratos-client-0.11.1 docs/UiNodeInputAttributes.md
ory-kratos-client-0.11.0 docs/UiNodeInputAttributes.md