Type alias QuickBaseResponseGetTable

QuickBaseResponseGetTable: {
    alias: string;
    created: string;
    defaultSortFieldId: number;
    defaultSortOrder: "ASC" | "DESC";
    description: string;
    id: string;
    keyFieldId: number;
    name: string;
    nextFieldId: number;
    nextRecordId: number;
    pluralRecordName: string;
    singleRecordName: string;
    sizeLimit: string;
    spaceRemaining: string;
    spaceUsed: string;
    updated: string;
}

Type declaration

  • alias: string

    The automatically-created table alias for the table.

  • created: string

    The time and date when the table was created, in the ISO 8601 time format YYYY-MM-DDThh:mm:ss.sssZ (in UTC time zone).

  • defaultSortFieldId: number

    The id of the field that is configured for default sorting.

  • defaultSortOrder: "ASC" | "DESC"

    The configuration of the default sort order on the table.

  • description: string

    The description of the table, as configured by an application administrator.

  • id: string

    The unique identifier (dbid) of the table.

  • keyFieldId: number

    The id of the field that is configured to be the key on this table, which is usually the Quickbase Record ID.

  • name: string

    The name of the table.

  • nextFieldId: number

    The incremental Field ID that will be used when the next field is created, as determined when the API call was ran.

  • nextRecordId: number

    The incremental Record ID that will be used when the next record is created, as determined when the API call was ran.

  • pluralRecordName: string

    The builder-configured plural noun of the table.

  • singleRecordName: string

    The builder-configured singular noun of the table.

  • sizeLimit: string

    The size limit for the table.

  • spaceRemaining: string

    The amount of space remaining for use by the table.

  • spaceUsed: string

    The amount of space currently being used by the table.

  • updated: string

    The time and date when the table schema or data was last updated, in the ISO 8601 time format YYYY-MM-DDThh:mm:ss.sssZ (in UTC time zone).

Generated using TypeDoc