/** * Tezos Rarible API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Order } from './'; /** * * @export * @interface OrderPagination */ export interface OrderPagination { /** * * @type {Array} * @memberof OrderPagination */ orders: Array; /** * * @type {string} * @memberof OrderPagination */ continuation?: string; } export declare function OrderPaginationFromJSON(json: any): OrderPagination; export declare function OrderPaginationFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderPagination; export declare function OrderPaginationToJSON(value?: OrderPagination | null): any;