|
|
|
@ -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 { |
|
|
|
|