Skip to content

Interface: ReviewFormFieldCustomBase

Common shape for custom question fields backed by an options array.

Extends

Extended by

Properties

category

ts
category: string;

error_messages?

ts
optional error_messages?: Record<string, string> | unknown[];

Inherited from

ReviewFormFieldBase.error_messages


field_id

ts
field_id: number;

field_key

ts
field_key: string;

Inherited from

ReviewFormFieldBase.field_key


help_text

ts
help_text: string;

input_type

ts
input_type: string | null;

label

ts
label: string;

Inherited from

ReviewFormFieldBase.label


options

ts
options: ReviewFormFieldOption[];

title

ts
title: string;

validation

ts
validation: {
  required: boolean;
} & Record<string, unknown>;

Type Declaration

required
ts
required: boolean;

Inherited from

ReviewFormFieldBase.validation