/** * Cloud API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ModelMetaObjectDto } from './model-meta-object-dto'; /** * * @export * @interface SupplierDto */ export interface SupplierDto { /** * Describes the date of the last update * @type {number} * @memberof SupplierDto */ lastUpdatedAt?: number; /** * Describe the date when the entity was deleted * @type {number} * @memberof SupplierDto */ deletedAt?: number; /** * * @type {string} * @memberof SupplierDto */ id?: string; /** * * @type {number} * @memberof SupplierDto */ createdAt?: number; /** * * @type {ModelMetaObjectDto} * @memberof SupplierDto */ _meta?: ModelMetaObjectDto; /** * * @type {string} * @memberof SupplierDto */ title: string; /** * * @type {string} * @memberof SupplierDto */ code: string; /** * If set, this url will be triggered during the order placement process. If the user orders products that apply to this supplier, the Order Placement Service will POST an unsaved order with all applicable orderPositions to this url. The external order placement service has to persist the order itself and should return it. It should also take care of updating the status. * @type {string} * @memberof SupplierDto */ orderPlacementServiceUrl?: string; /** * If your placement service needs an auth header, you can set it here. * @type {string} * @memberof SupplierDto */ orderPlacementServiceAuthHeader?: string; /** * * @type {any} * @memberof SupplierDto */ metadata?: any; }