@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
52 lines (51 loc) • 1.68 kB
TypeScript
/**
* 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 { AlertResponse } from './AlertResponse';
/**
*
* @export
* @interface PaginatedResponseAlertResponse
*/
export interface PaginatedResponseAlertResponse {
/**
*
* @type {Array<AlertResponse>}
* @memberof PaginatedResponseAlertResponse
*/
items: Array<AlertResponse>;
/**
*
* @type {number}
* @memberof PaginatedResponseAlertResponse
*/
count: number;
/**
*
* @type {number}
* @memberof PaginatedResponseAlertResponse
*/
nextPage: number | null;
/**
*
* @type {number}
* @memberof PaginatedResponseAlertResponse
*/
previousPage: number | null;
}
/**
* Check if a given object implements the PaginatedResponseAlertResponse interface.
*/
export declare function instanceOfPaginatedResponseAlertResponse(value: object): value is PaginatedResponseAlertResponse;
export declare function PaginatedResponseAlertResponseFromJSON(json: any): PaginatedResponseAlertResponse;
export declare function PaginatedResponseAlertResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedResponseAlertResponse;
export declare function PaginatedResponseAlertResponseToJSON(json: any): PaginatedResponseAlertResponse;
export declare function PaginatedResponseAlertResponseToJSONTyped(value?: PaginatedResponseAlertResponse | null, ignoreDiscriminator?: boolean): any;