/** * 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. */ import * as runtime from '../runtime'; import { TestAccountResponse } from '../models'; export interface CreateTestAccountRequest { environmentId: string; } export interface DeleteTestAccountRequest { environmentId: string; } export interface GetTestAccountRequest { environmentId: string; } /** * */ export declare class TestAccountApi extends runtime.BaseAPI { /** * Creates a new test account for the specified environment. * Create a test account for the environment */ createTestAccountRaw(requestParameters: CreateTestAccountRequest, initOverrides?: RequestInit): Promise>; /** * Creates a new test account for the specified environment. * Create a test account for the environment */ createTestAccount(requestParameters: CreateTestAccountRequest, initOverrides?: RequestInit): Promise; /** * Permanently removes the test account for the specified environment. * Delete the test account for this environment */ deleteTestAccountRaw(requestParameters: DeleteTestAccountRequest, initOverrides?: RequestInit): Promise>; /** * Permanently removes the test account for the specified environment. * Delete the test account for this environment */ deleteTestAccount(requestParameters: DeleteTestAccountRequest, initOverrides?: RequestInit): Promise; /** * Returns the test account for the specified environment. * Get the test account for this environment */ getTestAccountRaw(requestParameters: GetTestAccountRequest, initOverrides?: RequestInit): Promise>; /** * Returns the test account for the specified environment. * Get the test account for this environment */ getTestAccount(requestParameters: GetTestAccountRequest, initOverrides?: RequestInit): Promise; }