/** * Model: ResponsePagination * * THIS FILE HAS BEEN AUTOMATICALLY GENERATED. DO NOT EDIT. * */ /** * If pagination is needed due to the length of the response, identifies the next and previous pages. */ export interface ResponsePagination { /** A URL that calls the previous page of the response. */ prev_page?: string; /** A URL that calls the next page of the response. */ next_page?: string; } //# sourceMappingURL=response-pagination.d.ts.map