import type * as Square from "../index"; export interface SubscriptionUpdatedEventData { /** Name of the affected object’s type, `"subscription"`. */ type?: string | null; /** ID of the affected subscription. */ id?: string; /** An object containing the updated subscription. */ object?: Square.SubscriptionUpdatedEventObject; }