Sha256: cbc07e76fb27d041f7e4c582b4cd4d0828506e8ae715bff6633e6e1386a16454

Contents?: true

Size: 1.17 KB

Versions: 3

Compression:

Stored size: 1.17 KB

Contents

# OryHydraClient::FormField

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **disabled** | **Boolean** | Disabled is the equivalent of `<input {{if .Disabled}}disabled{{end}}\">` | [optional] |
| **messages** | [**Array<Message>**](Message.md) |  | [optional] |
| **name** | **String** | Name is the equivalent of `<input name=\"{{.Name}}\">` |  |
| **pattern** | **String** | Pattern is the equivalent of `<input pattern=\"{{.Pattern}}\">` | [optional] |
| **required** | **Boolean** | Required is the equivalent of `<input required=\"{{.Required}}\">` | [optional] |
| **type** | **String** | Type is the equivalent of `<input type=\"{{.Type}}\">` |  |
| **value** | **Object** | Value is the equivalent of `<input value=\"{{.Value}}\">` | [optional] |

## Example

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

instance = OryHydraClient::FormField.new(
  disabled: null,
  messages: null,
  name: null,
  pattern: null,
  required: null,
  type: null,
  value: null
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ory-kratos-client-0.5.5.alpha4 docs/FormField.md
ory-kratos-client-0.5.5.alpha3 docs/FormField.md
ory-kratos-client-0.5.5.alpha2 docs/FormField.md