Type alias QBRecordJSON<RecordData>

QBRecordJSON<RecordData>: {
    data: RecordData;
    fids: QBFids<RecordData>;
    fields: QBFieldJSON[];
    primaryKey: string | number;
    quickbase: QuickBaseOptions;
    recordid: string | number;
    tableId: string;
}

Type Parameters

  • RecordData extends QBRecordData = {
        primaryKey: number;
        recordid: number;
    }

Type declaration

  • data: RecordData
  • fids: QBFids<RecordData>
  • fields: QBFieldJSON[]
  • primaryKey: string | number
  • quickbase: QuickBaseOptions
  • recordid: string | number
  • tableId: string

Generated using TypeDoc