/** * 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 { DescriptiveArticle } from './descriptiveArticle'; import { Vat } from './vat'; import { Lock } from './lock'; export interface Offer { lock: Lock; date: string; in_price_included: string; validity: string; payment: string; delivery: string; discount_amount: number; discount_percentage: number; material_description: string; material_description_title: string; id: number; timestamp: string; descriptive_articles?: Array; pdf?: string; vat: Vat; full_price_without_vat?: number; full_price_with_vat?: number; full_vat_amount?: number; date_string?: string; generated_number?: string; job_id: number; }