updated product to include resourceid and description fields

master
Piyush Harsh 5 years ago
parent 9a8ef3a0ed
commit 515e362858
  1. 18
      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 {

Loading…
Cancel
Save