Appzi Typings
    Preparing search index...

    Type Alias FeedbackCompositeData

    A labeled data value with both a machine value and display label. Use when you want a code/ID stored alongside a human-readable name.

    const planData: AllowedJSCustomDataComposite = {
    value: 'enterprise',
    label: 'Enterprise Plan'
    };
    type FeedbackCompositeData = {
        label: string;
        value: PrimitiveValue;
    }
    Index

    Properties

    Properties

    label: string

    Human-readable label for display in reports.

    The actual value to store.