import type * as Square from "../index"; /** * Defines output parameters in a response from the * [ResumeSubscription](api-endpoint:Subscriptions-ResumeSubscription) endpoint. */ export interface ResumeSubscriptionResponse { /** Errors encountered during the request. */ errors?: Square.Error_[]; /** The resumed subscription. */ subscription?: Square.Subscription; /** A list of `RESUME` actions created by the request and scheduled for the subscription. */ actions?: Square.SubscriptionAction[]; }