/** * apaleo Account API - not safe for work * Continuously evolving version - use at your own risk! Manage accounts, subscriptions and more. * * OpenAPI spec version: v0-nsfw * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { ClassMetaData } from '@apaleo/angular-api-proxy-common'; export interface AccountItemModel { /** * The code for the account that can be shown in reports and table views */ code: string; /** * The name for the account, which usually should be the company name */ name: string; /** * The description for the account */ description?: string; /** * Type of the account */ type: AccountItemModel.TypeEnum; } export declare namespace AccountItemModel { type TypeEnum = 'Trial' | 'Live' | 'Suspended' | 'Development'; const TypeEnumValues: readonly TypeEnum[]; } export declare namespace AccountItemModel { const $metaData: ClassMetaData; }