We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e8545c7 + 7c630d2 commit bb322afCopy full SHA for bb322af
pkg/mockapi/model.go
@@ -162,6 +162,7 @@ type Deployment struct {
162
163
type Org struct {
164
ID string `json:"id"`
165
+ Type string `json:"type"`
166
Name string `json:"name"`
167
Label string `json:"label"`
168
Owner string `json:"owner_id"`
@@ -172,6 +173,7 @@ type Org struct {
172
173
func (o *Org) AsRef() *OrgRef {
174
return &OrgRef{
175
ID: o.ID,
176
+ Type: o.Type,
177
Name: o.Name,
178
Label: o.Label,
179
Owner: o.Owner,
@@ -180,6 +182,7 @@ func (o *Org) AsRef() *OrgRef {
180
182
181
183
type OrgRef struct {
184
185
186
187
188
0 commit comments