import type * as Square from "../index"; /** * Defines output parameters in a response from the * [ListSubscriptionEvents](api-endpoint:Subscriptions-ListSubscriptionEvents). */ export interface ListSubscriptionEventsResponse { /** Errors encountered during the request. */ errors?: Square.Error_[]; /** The retrieved subscription events. */ subscriptionEvents?: Square.SubscriptionEvent[]; /** * When the total number of resulting subscription events exceeds the limit of a paged response, * the response includes a cursor for you to use in a subsequent request to fetch the next set of events. * If the cursor is unset, the response contains the last page of the results. * * For more information, see [Pagination](https://developer.squareup.com/docs/build-basics/common-api-patterns/pagination). */ cursor?: string; }