Skip to content

Commit 0acdd40

Browse files
committed
Add Organization.Suspended as non-pointer bool
Fixes #462
1 parent 48b0503 commit 0acdd40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resource/organization.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package resource
22

33
type Organization struct {
44
Name string `json:"name"`
5-
Suspended *bool `json:"suspended,omitempty"`
5+
Suspended bool `json:"suspended"`
66
Relationships QuotaRelationship `json:"relationships,omitempty"`
77
Metadata *Metadata `json:"metadata,omitempty"`
88
Resource `json:",inline"`

0 commit comments

Comments
 (0)