UNPKG

@apideck/node

Version:
40 lines (39 loc) 1.13 kB
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Links to navigate to previous or next pages through the API * @export * @interface Links */ export interface Links { /** * Link to navigate to the previous page through the API * @type {string} * @memberof Links */ previous?: string | null; /** * Link to navigate to the current page through the API * @type {string} * @memberof Links */ current?: string; /** * Link to navigate to the previous page through the API * @type {string} * @memberof Links */ next?: string | null; } export declare function LinksFromJSON(json: any): Links; export declare function LinksFromJSONTyped(json: any, ignoreDiscriminator: boolean): Links; export declare function LinksToJSON(value?: Links | null): any;