QuickBase JS SDK v2 - v2.2.2
    Preparing search index...

    Interface FieldValue

    A field value in a QuickBase record. The value type depends on the field type:

    • string: text, email, URL, date/time (ISO format)
    • number: numeric fields, record IDs
    • boolean: checkbox fields
    • string[]: multi-select text lists
    • { id: string }[]: file attachments
    interface FieldValue {
        value: string | number | boolean | string[] | { id: string }[];
    }
    Index

    Properties

    Properties

    value: string | number | boolean | string[] | { id: string }[]