import type * as Square from "../index"; /** * Defines output parameters in a response of the [DeleteSubscriptionAction](api-endpoint:Subscriptions-DeleteSubscriptionAction) * endpoint. */ export interface DeleteSubscriptionActionResponse { /** Errors encountered during the request. */ errors?: Square.Error_[]; /** The subscription that has the specified action deleted. */ subscription?: Square.Subscription; }