/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Link } from './Link'; /** * * @export * @interface ListLinksResponse */ export interface ListLinksResponse { /** * * @type {Array} * @memberof ListLinksResponse */ links?: Array; /** * Cursor to fetch the next page of links * @type {string} * @memberof ListLinksResponse */ nextPageToken?: string; /** * Total number of links matching the current filters * @type {number} * @memberof ListLinksResponse */ totalCount?: number; } /** * Check if a given object implements the ListLinksResponse interface. */ export declare function instanceOfListLinksResponse(value: object): value is ListLinksResponse; export declare function ListLinksResponseFromJSON(json: any): ListLinksResponse; export declare function ListLinksResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListLinksResponse; export declare function ListLinksResponseToJSON(json: any): ListLinksResponse; export declare function ListLinksResponseToJSONTyped(value?: ListLinksResponse | null, ignoreDiscriminator?: boolean): any;