/** * 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 { OrgUnitNameDto } from './org-unit-name-dto'; import { WalletDataDto } from './wallet-data-dto'; export interface OrganizationDto { /** * Organization id */ id?: number; /** * Organization name */ name?: string; /** * Registration Number */ registrationNumber?: string; streetName?: string; streetNumber?: string; /** * Postal code */ postalCode?: string; /** * City */ city?: string; /** * Country code */ country?: string; /** * Phone number */ phone?: string; /** * Company email */ email?: string; /** * Logo URL */ logoImageUrl?: string; /** * Logo image URI */ logoImageUri?: number; /** * Archived */ archived?: boolean; /** * Approved */ approved?: string; /** * Owner ID */ ownerId?: number; /** * Subsidiary organization units */ orgUnitNames?: Array; walletData?: WalletDataDto; }