interface RequestTypeFieldValue {
    children?: RequestTypeFieldValue[];
    label?: string;
    value?: string;
}

Properties

List of child fields.

label?: string

Label for the field.

value?: string

Value of the field.