Sha256: ff812f8a4396908cb1519485dc5dcb24b552ef77e76b4b12ac2986eb4a9b4b43
Contents?: true
Size: 1.36 KB
Versions: 6
Compression:
Stored size: 1.36 KB
Contents
# OryHydraClient::FormField ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **disabled** | **String** | Disabled is the equivalent of <input disabled=\"{{.Disabled}}\"> | [optional] **errors** | [**Array<Error>**](Error.md) | Errors contains all validation errors this particular field has caused. | [optional] **name** | **String** | Name is the equivalent of <input name=\"{{.Name}}\"> | [optional] **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}}\"> | [optional] **value** | [**Object**](.md) | Value is the equivalent of <input value=\"{{.Value}}\"> | [optional] ## Code Sample ```ruby require 'OryHydraClient' instance = OryHydraClient::FormField.new(disabled: null, errors: null, name: null, pattern: null, required: null, type: null, value: null) ```
Version data entries
6 entries across 6 versions & 1 rubygems