Interface AirtableResultRecord

Represents a single record returned from an Airtable API call. AirtableResultRecord

interface AirtableResultRecord {
    createdTime: string;
    fields: Record<string, unknown>;
    id: string;
}

Properties

Properties

createdTime: string

The creation time of the record in ISO 8601 format.

AirtableResultRecord

fields: Record<string, unknown>

The fields of the record, represented as a key-value object. Keys are field names, and values are the corresponding field values.

AirtableResultRecord

id: string

The unique identifier for the record.

AirtableResultRecord