Created
This commit is contained in:
19
entity/tax_rate.go
Normal file
19
entity/tax_rate.go
Normal file
@@ -0,0 +1,19 @@
|
||||
package entity
|
||||
|
||||
// TaxRate tax rate properties
|
||||
type TaxRate struct {
|
||||
ID int `json:"id"`
|
||||
Country string `json:"country"`
|
||||
State string `json:"state"`
|
||||
Postcode string `json:"postcode"`
|
||||
City string `json:"city"`
|
||||
Postcodes []string `json:"postcodes"`
|
||||
Cities []string `json:"cities"`
|
||||
Rate string `json:"rate"`
|
||||
Name string `json:"name"`
|
||||
Priority int `json:"priority"`
|
||||
Compound bool `json:"compound"`
|
||||
Shipping bool `json:"shipping"`
|
||||
Order int `json:"order"`
|
||||
Class string `json:"class"`
|
||||
}
|
||||
Reference in New Issue
Block a user