/** * 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 Account */ export interface Account { /** * Unique identifier * @type {string} * @memberof Account */ id: string; /** * Name of the account * @type {string} * @memberof Account */ name: string; /** * ID of the account's assigned plan * @type {string} * @memberof Account */ planId?: string | null; /** * Creation timestamp * @type {Date} * @memberof Account */ createdAt: Date; /** * Last update timestamp * @type {Date} * @memberof Account */ updatedAt: Date; } /** * Check if a given object implements the Account interface. */ export declare function instanceOfAccount(value: object): value is Account; export declare function AccountFromJSON(json: any): Account; export declare function AccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): Account; export declare function AccountToJSON(json: any): Account; export declare function AccountToJSONTyped(value?: Account | null, ignoreDiscriminator?: boolean): any;