diff --git a/types.go b/types.go index 1d9d7c4..11fd848 100644 --- a/types.go +++ b/types.go @@ -8,14 +8,16 @@ package types type Product struct { - ProductId string `json:"productId"` - CustomerId string `json:"customerId"` - Name string `json:"name"` - Type string `json:"type"` - Discount string `json:"discount"` - CancelDate string `json:"cancelDate"` - Billable string `json:"billable"` - ApiLink string `json:"apiLink"` + ProductId string `json:"productId"` + ResourceId string `json:"resourceId"` + CustomerId string `json:"customerId"` + Name string `json:"name"` + Type string `json:"type"` + Discount string `json:"discount"` + CancelDate string `json:"cancelDate"` + Billable string `json:"billable"` + Description string `json:"description"` + ApiLink string `json:"apiLink"` } type OSProjectObject struct {