UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
27 lines (26 loc) 894 B
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.22.7 * 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. */ /** * Article ids to filter by * @export * @interface ArticleIds */ export interface ArticleIds { } /** * Check if a given object implements the ArticleIds interface. */ export declare function instanceOfArticleIds(value: object): value is ArticleIds; export declare function ArticleIdsFromJSON(json: any): ArticleIds; export declare function ArticleIdsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ArticleIds; export declare function ArticleIdsToJSON(json: any): ArticleIds; export declare function ArticleIdsToJSONTyped(value?: ArticleIds | null, ignoreDiscriminator?: boolean): any;