/** * 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 { CreateAddressModel } from './createAddressModel'; import { ClassMetaData } from '@apaleo/angular-api-proxy-common'; export interface CreateAccountModel { /** * The code for the account that can be shown in reports and table views. If not set, random one will be generated */ code?: string; /** * The name for the account, which usually should be the company name */ name: string; /** * The description for the account */ description?: string; /** * The default language code for the account */ defaultLanguage: string; /** * The URL of the account logo */ logoUrl?: string; /** * Set the type of the account */ type: CreateAccountModel.TypeEnum; location?: CreateAddressModel; } export declare namespace CreateAccountModel { type TypeEnum = 'Trial' | 'Live' | 'Suspended' | 'Development'; const TypeEnumValues: readonly TypeEnum[]; } export declare namespace CreateAccountModel { const $metaData: ClassMetaData; }