interface CustomerRequestFieldValueDto {
    fieldId?: string;
    label?: string;
    renderedValue?: {
        [key: string]: unknown;
    };
    value?: unknown;
}

Properties

fieldId?: string

ID of the field.

label?: string

Text label for the field.

renderedValue?: {
    [key: string]: unknown;
}

Value of the field rendered in the UI.

value?: unknown

Value of the field.