/** * FastAPI * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Address } from './address'; import { Language } from './language'; import { OrderableType } from './orderableType'; import { Contact } from './contact'; import { Lock } from './lock'; export interface Supplier { type: OrderableType; name: string; id: number; displayable_name: string; lock: Lock; mail1: string; mail2: string; tel1: string; tel2: string; contact_person: string; destination_code: string; show_in_orders: boolean; address: Address; language: Language; favorite: boolean; contacts: Array; send_mail: boolean; } export declare namespace Supplier { }