/** * 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 UpdateAccountDto */ export interface UpdateAccountDto { /** * * @type {string} * @memberof UpdateAccountDto */ planId: string | null; } /** * Check if a given object implements the UpdateAccountDto interface. */ export declare function instanceOfUpdateAccountDto(value: object): value is UpdateAccountDto; export declare function UpdateAccountDtoFromJSON(json: any): UpdateAccountDto; export declare function UpdateAccountDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateAccountDto; export declare function UpdateAccountDtoToJSON(json: any): UpdateAccountDto; export declare function UpdateAccountDtoToJSONTyped(value?: UpdateAccountDto | null, ignoreDiscriminator?: boolean): any;