/**
 * Revolugo Booking API Reference
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.5.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Meta information about the response list, such as pagination cursors or status.
 * @export
 * @interface MetaResponseApi
 */
export interface MetaResponseApi {
    /**
     * A cursor to use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
     * @type {string}
     * @memberof MetaResponseApi
     */
    endingBefore?: string | null;
    /**
     * A limit on the number of object to be returned.
     * @type {number}
     * @memberof MetaResponseApi
     */
    limit?: number;
    /**
     * A cursor to use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
     * @type {string}
     * @memberof MetaResponseApi
     */
    startingAfter?: string | null;
    /**
     *
     * @type {number}
     * @memberof MetaResponseApi
     */
    totalCount?: number | null;
}
/**
 * Check if a given object implements the MetaResponseApi interface.
 */
export declare function instanceOfMetaResponseApi(value: object): boolean;
export declare function MetaResponseApiFromJSON(json: any): MetaResponseApi;
export declare function MetaResponseApiFromJSONTyped(json: any, ignoreDiscriminator: boolean): MetaResponseApi;
export declare function MetaResponseApiToJSON(value?: MetaResponseApi | null): any;
