The value submitted for a single survey field/block.
Can be:
// Text inputconst text: SubmittedFeedbackBlockValue = 'Great product!'; Copy
// Text inputconst text: SubmittedFeedbackBlockValue = 'Great product!';
// Single choiceconst single: SubmittedFeedbackBlockValue = { id: 'opt-1', label: 'Yes' }; Copy
// Single choiceconst single: SubmittedFeedbackBlockValue = { id: 'opt-1', label: 'Yes' };
// Multiple choiceconst multi: SubmittedFeedbackBlockValue = [ { id: 'opt-1', label: 'Easy to use' }, { id: 'opt-2', label: 'Great design' }]; Copy
// Multiple choiceconst multi: SubmittedFeedbackBlockValue = [ { id: 'opt-1', label: 'Easy to use' }, { id: 'opt-2', label: 'Great design' }];
The value submitted for a single survey field/block.
Can be: