Files
pyrofetes-frontend/src/app/services/api/model/get-supplier-dto.ts

27 lines
624 B
TypeScript

/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { GetPriceDto } from './get-price-dto';
import { GetProductDto } from './get-product-dto';
export interface GetSupplierDto {
id?: number;
name?: string | null;
email?: string | null;
phone?: string | null;
address?: string | null;
zipCode?: string | null;
city?: string | null;
deliveryDelay?: number;
products?: Array<GetProductDto> | null;
prices?: Array<GetPriceDto> | null;
}