|
|
|
@ -24,11 +24,12 @@ type Product struct { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
type OSProjectObject struct { |
|
|
|
|
ProjectName string `json:"projectName"` |
|
|
|
|
ProjectID string `json:"projectId"` |
|
|
|
|
LdapID string `json:"ldapId"` |
|
|
|
|
Billable string `json:"billable"` |
|
|
|
|
IsActive string `json:"isActive"` |
|
|
|
|
ProjectName string `json:"projectName"` |
|
|
|
|
ProjectID string `json:"projectId"` |
|
|
|
|
LdapID string `json:"ldapId"` |
|
|
|
|
Billable string `json:"billable"` |
|
|
|
|
IsActive string `json:"isActive"` |
|
|
|
|
IsIaaSProject string `json:"isIaasProject"` |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
type Customer struct { |
|
|
|
@ -74,5 +75,6 @@ type Reseller struct { |
|
|
|
|
ApiLink string `json:"apiLink"` |
|
|
|
|
Billable string `json:"billable"` |
|
|
|
|
DomainId string `json:"domainId"` |
|
|
|
|
IsIaaSDomain string `json:"isIaasDomain"` |
|
|
|
|
OSProjects []OSProjectObject `json:"osProjects"` |
|
|
|
|
} |
|
|
|
|