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

Properties

List of child fields.

label?: string

Label for the field.

value?: string

Value of the field.