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