30 lines
728 B
TypeScript
30 lines
728 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.
|
|
*/
|
|
|
|
|
|
export interface GetQuotationProductDto {
|
|
quantity?: number;
|
|
quotationId?: number;
|
|
quotationMessage?: string | null;
|
|
quotationConditionsSale?: string | null;
|
|
productId?: number;
|
|
productReferences?: string | null;
|
|
productName?: string | null;
|
|
productDuration?: number;
|
|
productCaliber?: number;
|
|
productApprovalNumber?: string | null;
|
|
productWeight?: number;
|
|
productNec?: number;
|
|
productImage?: string | null;
|
|
productLink?: string | null;
|
|
productMinimalQuantity?: number;
|
|
}
|
|
|