UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
39 lines (38 loc) 1.04 kB
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.21.1 * 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. */ /** * * @export * @interface PingModel */ export interface PingModel { /** * * @type {string} * @memberof PingModel */ app: string; /** * * @type {string} * @memberof PingModel */ version: string; } /** * Check if a given object implements the PingModel interface. */ export declare function instanceOfPingModel(value: object): value is PingModel; export declare function PingModelFromJSON(json: any): PingModel; export declare function PingModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PingModel; export declare function PingModelToJSON(json: any): PingModel; export declare function PingModelToJSONTyped(value?: PingModel | null, ignoreDiscriminator?: boolean): any;