Interface AirtableResult

Represents the result structure containing records from an Airtable query. AirtableResult

interface AirtableResult {
    records: AirtableResultRecord[];
}

Properties

Properties

An array of records returned by the Airtable API call.

AirtableResult