import type * as Square from "../index"; /** * Defines output parameters in a response from the * [UpdateSubscription](api-endpoint:Subscriptions-UpdateSubscription) endpoint. */ export interface UpdateSubscriptionResponse { /** Errors encountered during the request. */ errors?: Square.Error_[]; /** The updated subscription. */ subscription?: Square.Subscription; }