/** * Athena API * REST API for the Athena system * * 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 CreateAccountRequest */ export interface CreateAccountRequest { /** * Name of the account * @type {string} * @memberof CreateAccountRequest */ name: string; } /** * Check if a given object implements the CreateAccountRequest interface. */ export declare function instanceOfCreateAccountRequest(value: object): value is CreateAccountRequest; export declare function CreateAccountRequestFromJSON(json: any): CreateAccountRequest; export declare function CreateAccountRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateAccountRequest; export declare function CreateAccountRequestToJSON(json: any): CreateAccountRequest; export declare function CreateAccountRequestToJSONTyped(value?: CreateAccountRequest | null, ignoreDiscriminator?: boolean): any;