/** * VeriWine REST API * Defintion of VeriWine REST API * * OpenAPI spec version: 0.1.1 * Contact: info@short.ch * * 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 { DescriptionDto } from './description-dto'; import { OrgUnitImageDto } from './org-unit-image-dto'; import { OrgUnitImageInfoDto } from './org-unit-image-info-dto'; import { WalletDataDto } from './wallet-data-dto'; export interface OrgUnitDto { /** * Org unit ID */ id?: number; /** * Legal entity type */ legalEntityType?: string; /** * Organization ID */ orgId?: number; /** * Organization name */ orgName?: string; /** * Organization unit name */ name?: string; /** * Foundation year */ foundationYear?: number; /** * Official web-page */ url?: string; /** * Street Name */ streetName?: string; /** * Street Number */ streetNumber?: string; /** * VAT Number */ vatNumber?: string; /** * Postal code */ postalCode?: string; /** * City */ city?: string; /** * Country */ country?: string; /** * Region */ region?: string; /** * SubRegion */ subRegion?: string; /** * SubSubRegion */ subSubRegion?: string; totalCultivatedArea?: number; totalProduction?: number; /** * Phone number */ phone?: string; /** * Official email */ email?: string; /** * Approved */ approved?: string; /** * Internal URL */ internalUrl?: string; /** * Multilingual descriptions */ descriptions?: Array; walletData?: WalletDataDto; /** * New images linked with organization unit. Are only used during creation/update */ images?: Array; /** * Already stored images. Are only used during update */ alreadyStoredImages?: Array; }