UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
52 lines (51 loc) 1.58 kB
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.19.10 * Contact: contact@emergentmethods.ai * * 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 { AlertLog } from './AlertLog'; /** * * @export * @interface PaginatedResponseAlertLog */ export interface PaginatedResponseAlertLog { /** * * @type {Array<AlertLog>} * @memberof PaginatedResponseAlertLog */ items: Array<AlertLog>; /** * * @type {number} * @memberof PaginatedResponseAlertLog */ count: number; /** * * @type {number} * @memberof PaginatedResponseAlertLog */ nextPage: number | null; /** * * @type {number} * @memberof PaginatedResponseAlertLog */ previousPage: number | null; } /** * Check if a given object implements the PaginatedResponseAlertLog interface. */ export declare function instanceOfPaginatedResponseAlertLog(value: object): value is PaginatedResponseAlertLog; export declare function PaginatedResponseAlertLogFromJSON(json: any): PaginatedResponseAlertLog; export declare function PaginatedResponseAlertLogFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedResponseAlertLog; export declare function PaginatedResponseAlertLogToJSON(json: any): PaginatedResponseAlertLog; export declare function PaginatedResponseAlertLogToJSONTyped(value?: PaginatedResponseAlertLog | null, ignoreDiscriminator?: boolean): any;