14 lines
443 B
Go
14 lines
443 B
Go
package models
|
|
|
|
// OrderPriceListB2B B2B ürün fiyat listesini temsil eder
|
|
type OrderPriceListB2B struct {
|
|
ModelCode string `json:"modelCode"`
|
|
CurrencyCode string `json:"currencyCode"`
|
|
Price float64 `json:"price"`
|
|
PriceGroupID int `json:"priceGroupId"`
|
|
LastUpdate string `json:"lastUpdate"`
|
|
RateToTRY float64 `json:"rateToTRY"`
|
|
PriceTRY float64 `json:"priceTRY"`
|
|
BaseCurrency string `json:"baseCurrency"`
|
|
}
|