@ory/kratos-client
Version:
OpenAPI client for @ory/kratos-client
28 lines (20 loc) • 1 kB
Markdown
# UiContainer
Container represents a HTML Form. The container can work with both HTTP Form and JSON requests
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**action** | **string** | Action should be used as the form action URL `<form action=\"{{ .Action }}\" method=\"post\">`. | [default to undefined]
**messages** | [**Array<UiText>**](UiText.md) | | [optional] [default to undefined]
**method** | **string** | Method is the form method (e.g. POST) | [default to undefined]
**nodes** | [**Array<UiNode>**](UiNode.md) | | [default to undefined]
## Example
```typescript
import { UiContainer } from '@ory/kratos-client';
const instance: UiContainer = {
action,
messages,
method,
nodes,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)