import type * as Square from "../index"; /** * Defines output parameters in a response of the * [SwapPlan](api-endpoint:Subscriptions-SwapPlan) endpoint. */ export interface SwapPlanResponse { /** Errors encountered during the request. */ errors?: Square.Error_[]; /** The subscription with the updated subscription plan. */ subscription?: Square.Subscription; /** A list of a `SWAP_PLAN` action created by the request. */ actions?: Square.SubscriptionAction[]; }