From eeab2880e611d21a4d44031751de28e80041bf35 Mon Sep 17 00:00:00 2001 From: Piyush Harsh Date: Thu, 21 Nov 2019 10:08:04 +0100 Subject: [PATCH] added fields for isiaasdomain --- types.go | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/types.go b/types.go index de1a411..23ffd2d 100644 --- a/types.go +++ b/types.go @@ -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"` }