20 lines
453 B
TypeScript
20 lines
453 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 { GetQuotationProductDto } from './get-quotation-product-dto';
|
|
|
|
|
|
export interface GetQuotationDto {
|
|
id?: number;
|
|
message?: string | null;
|
|
conditionsSale?: string | null;
|
|
getQuotationProductDto?: Array<GetQuotationProductDto> | null;
|
|
}
|
|
|