@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
33 lines (32 loc) • 1.21 kB
TypeScript
/**
* AskNews API
* AskNews API [](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 UpsertApiKeyRequest
*/
export interface UpsertApiKeyRequest {
/**
*
* @type {string}
* @memberof UpsertApiKeyRequest
*/
apiKey: string;
}
/**
* Check if a given object implements the UpsertApiKeyRequest interface.
*/
export declare function instanceOfUpsertApiKeyRequest(value: object): value is UpsertApiKeyRequest;
export declare function UpsertApiKeyRequestFromJSON(json: any): UpsertApiKeyRequest;
export declare function UpsertApiKeyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpsertApiKeyRequest;
export declare function UpsertApiKeyRequestToJSON(json: any): UpsertApiKeyRequest;
export declare function UpsertApiKeyRequestToJSONTyped(value?: UpsertApiKeyRequest | null, ignoreDiscriminator?: boolean): any;