Type alias QuickBaseRequestUpdateTable

QuickBaseRequestUpdateTable: QuickBaseRequest & {
    appId: string;
    description?: string;
    name?: string;
    pluralRecordName?: string;
    singleRecordName?: string;
    tableId: string;
}

Type declaration

  • appId: string

    The unique identifier of an app

  • Optional description?: string

    The description for the table. If this value is not passed the default value is blank.

  • Optional name?: string

    The name for the table.

  • Optional pluralRecordName?: string

    The plural noun for records in the table. If this value is not passed the default value is 'Records'.

  • Optional singleRecordName?: string

    The singular noun for records in the table. If this value is not passed the default value is 'Record'.

  • tableId: string

    The unique identifier (dbid) of the table.