import type * as Square from "../index"; /** * Provides information about the subscription event. */ export interface SubscriptionEventInfo { /** A human-readable explanation for the event. */ detail?: string | null; /** * An info code indicating the subscription event that occurred. * See [InfoCode](#type-infocode) for possible values */ code?: Square.SubscriptionEventInfoCode; }