Interface AirtableDeletion

Represents the result of a deletion operation for a single record in Airtable. AirtableDeletion

interface AirtableDeletion {
    deleted: boolean;
    id: string;
}

Properties

Properties

deleted: boolean

Indicates whether the deletion was successful. Always true if the operation succeeded for this ID.

AirtableDeletion

id: string

The unique identifier of the record that was deleted.

AirtableDeletion