/** * keepkey-sdk-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.1 * * * 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 Ping200Response */ export interface Ping200Response { /** * * @type {string} * @memberof Ping200Response */ message: string; } /** * Check if a given object implements the Ping200Response interface. */ export declare function instanceOfPing200Response(value: object): boolean; export declare function Ping200ResponseFromJSON(json: any): Ping200Response; export declare function Ping200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): Ping200Response; export declare function Ping200ResponseToJSON(value?: Ping200Response | null): any;