UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
40 lines (39 loc) 1.13 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 { Offset4 } from './Offset4'; import type { StoryResponse } from './StoryResponse'; /** * * @export * @interface StoriesResponse */ export interface StoriesResponse { /** * * @type {Array<StoryResponse>} * @memberof StoriesResponse */ stories: Array<StoryResponse>; /** * * @type {Offset4} * @memberof StoriesResponse */ offset: Offset4; } /** * Check if a given object implements the StoriesResponse interface. */ export declare function instanceOfStoriesResponse(value: object): boolean; export declare function StoriesResponseFromJSON(json: any): StoriesResponse; export declare function StoriesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoriesResponse; export declare function StoriesResponseToJSON(value?: StoriesResponse | null): any;