File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ func (q *OrganizationQuotaCreateOrUpdate) WithPaidServicesAllowed(allowed bool)
91
91
if q .Services == nil {
92
92
q .Services = & ServicesQuota {}
93
93
}
94
- q .Services .PaidServicesAllowed = & allowed
94
+ q .Services .PaidServicesAllowed = allowed
95
95
return q
96
96
}
97
97
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ type AppsQuota struct {
19
19
20
20
type ServicesQuota struct {
21
21
// Specifies if instances of paid service plans are permitted to be created.
22
- PaidServicesAllowed * bool `json:"paid_services_allowed,omitempty "`
22
+ PaidServicesAllowed bool `json:"paid_services_allowed"`
23
23
24
24
// The maximum number of service instances permitted.
25
25
TotalServiceInstances * int `json:"total_service_instances"`
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ func (s *SpaceQuotaCreateOrUpdate) WithPaidServicesAllowed(allowed bool) *SpaceQ
112
112
if s .Services == nil {
113
113
s .Services = & ServicesQuota {}
114
114
}
115
- s .Services .PaidServicesAllowed = & allowed
115
+ s .Services .PaidServicesAllowed = allowed
116
116
return s
117
117
}
118
118
You can’t perform that action at this time.
0 commit comments