diff --git a/types.go b/types.go index bd0fd21..de1a411 100644 --- a/types.go +++ b/types.go @@ -10,6 +10,7 @@ package types type Product struct { ProductId string `json:"productId"` ResourceId string `json:"resourceId"` + ProjectId string `json:"projectId"` CustomerId string `json:"customerId"` BelongsTo string `json:"belongsTo"` Name string `json:"name"` @@ -17,6 +18,7 @@ type Product struct { Discount string `json:"discount"` CancelDate string `json:"cancelDate"` Billable string `json:"billable"` + IsActive string `json:"isActive"` Description string `json:"description"` ApiLink string `json:"apiLink"` }