UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
51 lines (50 loc) 1.42 kB
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.18.6 * 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): boolean; export declare function PaginatedResponseAlertLogFromJSON(json: any): PaginatedResponseAlertLog; export declare function PaginatedResponseAlertLogFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedResponseAlertLog; export declare function PaginatedResponseAlertLogToJSON(value?: PaginatedResponseAlertLog | null): any;