import type * as Square from "../index"; /** * Defines output parameters in a response of the * [BulkSwapPlan](api-endpoint:Subscriptions-BulkSwapPlan) endpoint. */ export interface BulkSwapPlanResponse { /** Errors encountered during the request. */ errors?: Square.Error_[]; /** The number of affected subscriptions. */ affectedSubscriptions?: number; }