added isactive, projectid fields in product struct

master
Piyush Harsh 5 years ago
parent 4a0b68ab4e
commit 7f7f89c757
  1. 2
      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"`
}

Loading…
Cancel
Save