UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
39 lines (38 loc) 1.24 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.66 * 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 ApiKeyResponse */ export interface ApiKeyResponse { /** * * @type {string} * @memberof ApiKeyResponse */ provider: string; /** * * @type {string} * @memberof ApiKeyResponse */ keyHint: string; } /** * Check if a given object implements the ApiKeyResponse interface. */ export declare function instanceOfApiKeyResponse(value: object): value is ApiKeyResponse; export declare function ApiKeyResponseFromJSON(json: any): ApiKeyResponse; export declare function ApiKeyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiKeyResponse; export declare function ApiKeyResponseToJSON(json: any): ApiKeyResponse; export declare function ApiKeyResponseToJSONTyped(value?: ApiKeyResponse | null, ignoreDiscriminator?: boolean): any;