carpool-service/interoperability/ocss/prices.go

16 lines
250 B
Go
Raw Normal View History

2023-03-27 18:54:56 +00:00
package ocss
type PriceType int64
const (
Free PriceType = iota
Paying
Unknown
)
type Price struct {
Type *PriceType `json:"type,omitempty"`
Amount *float64 `json:"amount,omitempty"`
Currency *string `json:"currency,omitempty"`
}