import type * as Square from "../index"; /** * Defines output parameters in a response from the * [PauseSubscription](api-endpoint:Subscriptions-PauseSubscription) endpoint. */ export interface PauseSubscriptionResponse { /** Errors encountered during the request. */ errors?: Square.Error_[]; /** The subscription to be paused by the scheduled `PAUSE` action. */ subscription?: Square.Subscription; /** The list of a `PAUSE` action and a possible `RESUME` action created by the request. */ actions?: Square.SubscriptionAction[]; }