/** * 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'; /** * With this request you can modify an account */ import { ClassMetaData } from '@apaleo/angular-api-proxy-common'; export interface ReplaceAccountModel { /** * The name for the account, which usually should be the company name */ name: string; /** * The description for the account */ description?: string; /** * The URL of the account logo */ logoUrl?: string; location?: CreateAddressModel; /** * The list of supported countries */ additionallySupportedCountries?: Array; } export declare namespace ReplaceAccountModel { const $metaData: ClassMetaData; }