import type * as Square from "../index"; /** * Defines output parameters in a response from the * [CancelSubscription](api-endpoint:Subscriptions-CancelSubscription) endpoint. */ export interface CancelSubscriptionResponse { /** Errors encountered during the request. */ errors?: Square.Error_[]; /** The specified subscription scheduled for cancellation according to the action created by the request. */ subscription?: Square.Subscription; /** A list of a single `CANCEL` action scheduled for the subscription. */ actions?: Square.SubscriptionAction[]; }