CustomFields
Custom fields model.
interface CustomFields {
id: number;
name: string;
value: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
id | Required | number | The unique numeric ID of the custom field; increments sequentially. Required to update existing custom field in /PUT request. Read-Only. |
name | Required | string | The name of the field, shown on the storefront, orders, etc. Required for /POST. |
value | Required | string | The name of the field, shown on the storefront, orders, etc. Required for /POST |