-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorganizations.go
232 lines (203 loc) · 5.38 KB
/
organizations.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
// This file was auto-generated by Fern from our API Definition.
package api
import (
json "encoding/json"
fmt "fmt"
internal "github.com/StackGuardian/sg-sdk-go/internal"
)
type OrgGetResponse struct {
Msg *Organization `json:"msg,omitempty" url:"msg,omitempty"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (o *OrgGetResponse) GetMsg() *Organization {
if o == nil {
return nil
}
return o.Msg
}
func (o *OrgGetResponse) GetExtraProperties() map[string]interface{} {
return o.extraProperties
}
func (o *OrgGetResponse) UnmarshalJSON(data []byte) error {
type unmarshaler OrgGetResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*o = OrgGetResponse(value)
extraProperties, err := internal.ExtractExtraProperties(data, *o)
if err != nil {
return err
}
o.extraProperties = extraProperties
o.rawJSON = json.RawMessage(data)
return nil
}
func (o *OrgGetResponse) String() string {
if len(o.rawJSON) > 0 {
if value, err := internal.StringifyJSON(o.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(o); err == nil {
return value
}
return fmt.Sprintf("%#v", o)
}
type Organization struct {
// The name of the organization.
ResourceName *string `json:"ResourceName,omitempty" url:"ResourceName,omitempty"`
// The administrators of the organization.
Admins []string `json:"Admins,omitempty" url:"Admins,omitempty"`
// Marketplace subscriptions
MarketplaceSubscriptions []interface{} `json:"MarketplaceSubscriptions,omitempty" url:"MarketplaceSubscriptions,omitempty"`
// Indicates whether the organization is archived.
IsArchive *string `json:"IsArchive,omitempty" url:"IsArchive,omitempty"`
// Indicates whether the organization is active.
//
// * `0` - 0
// * `1` - 1
IsActive *IsArchiveEnum `json:"IsActive,omitempty" url:"IsActive,omitempty"`
// The resource ID of the organization.
ResourceId *string `json:"ResourceId,omitempty" url:"ResourceId,omitempty"`
// The last modified timestamp of the organization.
ModifiedAt *float64 `json:"ModifiedAt,omitempty" url:"ModifiedAt,omitempty"`
// The parent organization ID.
ParentId *string `json:"ParentId,omitempty" url:"ParentId,omitempty"`
// The resource type.
ResourceType *string `json:"ResourceType,omitempty" url:"ResourceType,omitempty"`
// The document version.
DocVersion *string `json:"DocVersion,omitempty" url:"DocVersion,omitempty"`
// The authors of the organization.
Authors []string `json:"Authors,omitempty" url:"Authors,omitempty"`
// The activity subscribers of the organization
ActivitySubscribers []string `json:"ActivitySubscribers,omitempty" url:"ActivitySubscribers,omitempty"`
// The sub-resource ID of the organization.
SubResourceId *string `json:"SubResourceId,omitempty" url:"SubResourceId,omitempty"`
// The organization ID.
OrgId *string `json:"OrgId,omitempty" url:"OrgId,omitempty"`
// The creation timestamp of the organization
CreatedAt *float64 `json:"CreatedAt,omitempty" url:"CreatedAt,omitempty"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (o *Organization) GetResourceName() *string {
if o == nil {
return nil
}
return o.ResourceName
}
func (o *Organization) GetAdmins() []string {
if o == nil {
return nil
}
return o.Admins
}
func (o *Organization) GetMarketplaceSubscriptions() []interface{} {
if o == nil {
return nil
}
return o.MarketplaceSubscriptions
}
func (o *Organization) GetIsArchive() *string {
if o == nil {
return nil
}
return o.IsArchive
}
func (o *Organization) GetIsActive() *IsArchiveEnum {
if o == nil {
return nil
}
return o.IsActive
}
func (o *Organization) GetResourceId() *string {
if o == nil {
return nil
}
return o.ResourceId
}
func (o *Organization) GetModifiedAt() *float64 {
if o == nil {
return nil
}
return o.ModifiedAt
}
func (o *Organization) GetParentId() *string {
if o == nil {
return nil
}
return o.ParentId
}
func (o *Organization) GetResourceType() *string {
if o == nil {
return nil
}
return o.ResourceType
}
func (o *Organization) GetDocVersion() *string {
if o == nil {
return nil
}
return o.DocVersion
}
func (o *Organization) GetAuthors() []string {
if o == nil {
return nil
}
return o.Authors
}
func (o *Organization) GetActivitySubscribers() []string {
if o == nil {
return nil
}
return o.ActivitySubscribers
}
func (o *Organization) GetSubResourceId() *string {
if o == nil {
return nil
}
return o.SubResourceId
}
func (o *Organization) GetOrgId() *string {
if o == nil {
return nil
}
return o.OrgId
}
func (o *Organization) GetCreatedAt() *float64 {
if o == nil {
return nil
}
return o.CreatedAt
}
func (o *Organization) GetExtraProperties() map[string]interface{} {
return o.extraProperties
}
func (o *Organization) UnmarshalJSON(data []byte) error {
type unmarshaler Organization
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*o = Organization(value)
extraProperties, err := internal.ExtractExtraProperties(data, *o)
if err != nil {
return err
}
o.extraProperties = extraProperties
o.rawJSON = json.RawMessage(data)
return nil
}
func (o *Organization) String() string {
if len(o.rawJSON) > 0 {
if value, err := internal.StringifyJSON(o.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(o); err == nil {
return value
}
return fmt.Sprintf("%#v", o)
}