UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
39 lines (38 loc) 1.29 kB
/** * AskNews API * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod) * * The version of the OpenAPI document: 0.24.22 * 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 IndexUrlsResponse */ export interface IndexUrlsResponse { /** * * @type {string} * @memberof IndexUrlsResponse */ status: string; /** * * @type {string} * @memberof IndexUrlsResponse */ jobId?: string | null; } /** * Check if a given object implements the IndexUrlsResponse interface. */ export declare function instanceOfIndexUrlsResponse(value: object): value is IndexUrlsResponse; export declare function IndexUrlsResponseFromJSON(json: any): IndexUrlsResponse; export declare function IndexUrlsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): IndexUrlsResponse; export declare function IndexUrlsResponseToJSON(json: any): IndexUrlsResponse; export declare function IndexUrlsResponseToJSONTyped(value?: IndexUrlsResponse | null, ignoreDiscriminator?: boolean): any;