Interface AirtableUpdateResult

Represents the result of a successful update operation for a single record in Airtable. AirtableUpdateResult

interface AirtableUpdateResult {
    createdTime: string;
    fields: Record<string, any>;
    id: string;
}

Properties

Properties

createdTime: string

The timestamp indicating when the record was created (ISO 8601 format). Note: This reflects the original creation time, not the update time.

AirtableUpdateResult

fields: Record<string, any>

An object containing the updated fields and their values. The keys are field names, and the values are the corresponding field values.

AirtableUpdateResult

id: string

The unique identifier of the updated record.

AirtableUpdateResult