mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-15 12:27:59 +00:00
14 lines
229 B
Go
14 lines
229 B
Go
|
package user
|
||
|
|
||
|
type SearchQuery_ResourceOwner struct {
|
||
|
ResourceOwner *ResourceOwnerQuery
|
||
|
}
|
||
|
|
||
|
func (SearchQuery_ResourceOwner) isSearchQuery_Query() {}
|
||
|
|
||
|
type ResourceOwnerQuery struct {
|
||
|
OrgID string
|
||
|
}
|
||
|
|
||
|
type UserType = isUser_Type
|