/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * 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 WaasVerifyApiKeyResponse */ export interface WaasVerifyApiKeyResponse { /** * The environment ID for which the API key was verified * @type {string} * @memberof WaasVerifyApiKeyResponse */ environmentId: string; /** * Indicates whether the API key is valid and has access to the environment * @type {boolean} * @memberof WaasVerifyApiKeyResponse */ verified: boolean; } export declare function WaasVerifyApiKeyResponseFromJSON(json: any): WaasVerifyApiKeyResponse; export declare function WaasVerifyApiKeyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaasVerifyApiKeyResponse; export declare function WaasVerifyApiKeyResponseToJSON(value?: WaasVerifyApiKeyResponse | null): any;