user

package
v1.0.0-11 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 26, 2022 License: MIT Imports: 22 Imported by: 0

Documentation

Overview

Package user is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var File_user_address_proto protoreflect.FileDescriptor
View Source
var File_user_common_proto protoreflect.FileDescriptor
View Source
var File_user_streetaddress_proto protoreflect.FileDescriptor
View Source
var File_user_tag_proto protoreflect.FileDescriptor
View Source
var File_user_user_messages_proto protoreflect.FileDescriptor
View Source
var File_user_user_proto protoreflect.FileDescriptor
View Source
var File_user_usergroup_messages_proto protoreflect.FileDescriptor

Functions

func RegisterAddressServiceServer

func RegisterAddressServiceServer(s grpc.ServiceRegistrar, srv AddressServiceServer)

func RegisterResonateUserHandler

func RegisterResonateUserHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterResonateUserHandler registers the http handlers for service ResonateUser to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterResonateUserHandlerClient

func RegisterResonateUserHandlerClient(ctx context.Context, mux *runtime.ServeMux, client ResonateUserClient) error

RegisterResonateUserHandlerClient registers the http handlers for service ResonateUser to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "ResonateUserClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "ResonateUserClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "ResonateUserClient" to call the correct interceptors.

func RegisterResonateUserHandlerFromEndpoint

func RegisterResonateUserHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterResonateUserHandlerFromEndpoint is same as RegisterResonateUserHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterResonateUserHandlerServer

func RegisterResonateUserHandlerServer(ctx context.Context, mux *runtime.ServeMux, server ResonateUserServer) error

RegisterResonateUserHandlerServer registers the http handlers for service ResonateUser to "mux". UnaryRPC :call ResonateUserServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterResonateUserHandlerFromEndpoint instead.

func RegisterResonateUserServer

func RegisterResonateUserServer(s grpc.ServiceRegistrar, srv ResonateUserServer)

func RegisterStreetAdressServiceServer

func RegisterStreetAdressServiceServer(s grpc.ServiceRegistrar, srv StreetAdressServiceServer)

func RegisterTagServiceServer

func RegisterTagServiceServer(s grpc.ServiceRegistrar, srv TagServiceServer)

Types

type AddressQuery

type AddressQuery struct {
	Query       string `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"`
	Type        string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	HitsPerPage int32  `protobuf:"varint,3,opt,name=hits_per_page,json=hitsPerPage,proto3" json:"hits_per_page,omitempty"` // int32 page = 4;
	// contains filtered or unexported fields
}

Based on https://community.algolia.com/places/rest.html#search-parameters

func (*AddressQuery) Descriptor deprecated

func (*AddressQuery) Descriptor() ([]byte, []int)

Deprecated: Use AddressQuery.ProtoReflect.Descriptor instead.

func (*AddressQuery) GetHitsPerPage

func (x *AddressQuery) GetHitsPerPage() int32

func (*AddressQuery) GetQuery

func (x *AddressQuery) GetQuery() string

func (*AddressQuery) GetType

func (x *AddressQuery) GetType() string

func (*AddressQuery) ProtoMessage

func (*AddressQuery) ProtoMessage()

func (*AddressQuery) ProtoReflect

func (x *AddressQuery) ProtoReflect() protoreflect.Message

func (*AddressQuery) Reset

func (x *AddressQuery) Reset()

func (*AddressQuery) String

func (x *AddressQuery) String() string

func (*AddressQuery) Validate

func (this *AddressQuery) Validate() error

type AddressResult

type AddressResult struct {
	ObjectId       string                         `protobuf:"bytes,1,opt,name=object_id,json=objectId,proto3" json:"object_id,omitempty"`
	Country        map[string]string              `` /* 155-byte string literal not displayed */
	Postcode       []string                       `protobuf:"bytes,3,rep,name=postcode,proto3" json:"postcode,omitempty"`
	Administrative []string                       `protobuf:"bytes,4,rep,name=administrative,proto3" json:"administrative,omitempty"`
	CountryCode    string                         `protobuf:"bytes,5,opt,name=country_code,json=countryCode,proto3" json:"country_code,omitempty"`
	Geoloc         map[string]float32             `` /* 155-byte string literal not displayed */
	LocaleNames    map[string]*structpb.ListValue `` /* 182-byte string literal not displayed */
	City           map[string]*structpb.ListValue `` /* 149-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*AddressResult) Descriptor deprecated

func (*AddressResult) Descriptor() ([]byte, []int)

Deprecated: Use AddressResult.ProtoReflect.Descriptor instead.

func (*AddressResult) GetAdministrative

func (x *AddressResult) GetAdministrative() []string

func (*AddressResult) GetCity

func (x *AddressResult) GetCity() map[string]*structpb.ListValue

func (*AddressResult) GetCountry

func (x *AddressResult) GetCountry() map[string]string

func (*AddressResult) GetCountryCode

func (x *AddressResult) GetCountryCode() string

func (*AddressResult) GetGeoloc

func (x *AddressResult) GetGeoloc() map[string]float32

func (*AddressResult) GetLocaleNames

func (x *AddressResult) GetLocaleNames() map[string]*structpb.ListValue

func (*AddressResult) GetObjectId

func (x *AddressResult) GetObjectId() string

func (*AddressResult) GetPostcode

func (x *AddressResult) GetPostcode() []string

func (*AddressResult) ProtoMessage

func (*AddressResult) ProtoMessage()

func (*AddressResult) ProtoReflect

func (x *AddressResult) ProtoReflect() protoreflect.Message

func (*AddressResult) Reset

func (x *AddressResult) Reset()

func (*AddressResult) String

func (x *AddressResult) String() string

func (*AddressResult) Validate

func (this *AddressResult) Validate() error

type AddressResults

type AddressResults struct {
	Hits   []*AddressResult `protobuf:"bytes,1,rep,name=hits,proto3" json:"hits,omitempty"`
	NbHits int32            `protobuf:"varint,2,opt,name=nb_hits,json=nbHits,proto3" json:"nb_hits,omitempty"`
	// contains filtered or unexported fields
}

func (*AddressResults) Descriptor deprecated

func (*AddressResults) Descriptor() ([]byte, []int)

Deprecated: Use AddressResults.ProtoReflect.Descriptor instead.

func (*AddressResults) GetHits

func (x *AddressResults) GetHits() []*AddressResult

func (*AddressResults) GetNbHits

func (x *AddressResults) GetNbHits() int32

func (*AddressResults) ProtoMessage

func (*AddressResults) ProtoMessage()

func (*AddressResults) ProtoReflect

func (x *AddressResults) ProtoReflect() protoreflect.Message

func (*AddressResults) Reset

func (x *AddressResults) Reset()

func (*AddressResults) String

func (x *AddressResults) String() string

func (*AddressResults) Validate

func (this *AddressResults) Validate() error

type AddressServiceClient

type AddressServiceClient interface {
	SearchAddress(ctx context.Context, in *AddressQuery, opts ...grpc.CallOption) (*AddressResults, error)
}

AddressServiceClient is the client API for AddressService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type AddressServiceServer

type AddressServiceServer interface {
	SearchAddress(context.Context, *AddressQuery) (*AddressResults, error)
}

AddressServiceServer is the server API for AddressService service. All implementations should embed UnimplementedAddressServiceServer for forward compatibility

type Empty

type Empty struct {
	// contains filtered or unexported fields
}

func (*Empty) Descriptor deprecated

func (*Empty) Descriptor() ([]byte, []int)

Deprecated: Use Empty.ProtoReflect.Descriptor instead.

func (*Empty) ProtoMessage

func (*Empty) ProtoMessage()

func (*Empty) ProtoReflect

func (x *Empty) ProtoReflect() protoreflect.Message

func (*Empty) Reset

func (x *Empty) Reset()

func (*Empty) String

func (x *Empty) String() string

func (*Empty) Validate

func (this *Empty) Validate() error

type Group

type Group struct {
	ID          string `protobuf:"bytes,1,opt,name=ID,proto3" json:"ID,omitempty"`
	Name        string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

func (*Group) Descriptor deprecated

func (*Group) Descriptor() ([]byte, []int)

Deprecated: Use Group.ProtoReflect.Descriptor instead.

func (*Group) GetDescription

func (x *Group) GetDescription() string

func (*Group) GetID

func (x *Group) GetID() string

func (*Group) GetName

func (x *Group) GetName() string

func (*Group) ProtoMessage

func (*Group) ProtoMessage()

func (*Group) ProtoReflect

func (x *Group) ProtoReflect() protoreflect.Message

func (*Group) Reset

func (x *Group) Reset()

func (*Group) String

func (x *Group) String() string

func (*Group) Validate

func (this *Group) Validate() error

type GroupTypes

type GroupTypes struct {
	Types []*Group `protobuf:"bytes,1,rep,name=types,proto3" json:"types,omitempty"`
	// contains filtered or unexported fields
}

func (*GroupTypes) Descriptor deprecated

func (*GroupTypes) Descriptor() ([]byte, []int)

Deprecated: Use GroupTypes.ProtoReflect.Descriptor instead.

func (*GroupTypes) GetTypes

func (x *GroupTypes) GetTypes() []*Group

func (*GroupTypes) ProtoMessage

func (*GroupTypes) ProtoMessage()

func (*GroupTypes) ProtoReflect

func (x *GroupTypes) ProtoReflect() protoreflect.Message

func (*GroupTypes) Reset

func (x *GroupTypes) Reset()

func (*GroupTypes) String

func (x *GroupTypes) String() string

func (*GroupTypes) Validate

func (this *GroupTypes) Validate() error

type GroupedUserGroups

type GroupedUserGroups struct {
	Groups []*UserGroupPublicResponse `protobuf:"bytes,1,rep,name=groups,proto3" json:"groups,omitempty"`
	// contains filtered or unexported fields
}

func (*GroupedUserGroups) Descriptor deprecated

func (*GroupedUserGroups) Descriptor() ([]byte, []int)

Deprecated: Use GroupedUserGroups.ProtoReflect.Descriptor instead.

func (*GroupedUserGroups) GetGroups

func (x *GroupedUserGroups) GetGroups() []*UserGroupPublicResponse

func (*GroupedUserGroups) ProtoMessage

func (*GroupedUserGroups) ProtoMessage()

func (*GroupedUserGroups) ProtoReflect

func (x *GroupedUserGroups) ProtoReflect() protoreflect.Message

func (*GroupedUserGroups) Reset

func (x *GroupedUserGroups) Reset()

func (*GroupedUserGroups) String

func (x *GroupedUserGroups) String() string

func (*GroupedUserGroups) Validate

func (this *GroupedUserGroups) Validate() error
type Link struct {
	ID           string `protobuf:"bytes,1,opt,name=ID,proto3" json:"ID,omitempty"`
	Platform     string `protobuf:"bytes,2,opt,name=platform,proto3" json:"platform,omitempty"`
	GroupType    string `protobuf:"bytes,3,opt,name=group_type,json=groupType,proto3" json:"group_type,omitempty"`
	Uri          string `protobuf:"bytes,4,opt,name=uri,proto3" json:"uri,omitempty"`
	PersonalData bool   `protobuf:"varint,5,opt,name=personal_data,json=personalData,proto3" json:"personal_data,omitempty"`
	// contains filtered or unexported fields
}

func (*Link) Descriptor deprecated

func (*Link) Descriptor() ([]byte, []int)

Deprecated: Use Link.ProtoReflect.Descriptor instead.

func (*Link) GetGroupType

func (x *Link) GetGroupType() string

func (*Link) GetID

func (x *Link) GetID() string

func (*Link) GetPersonalData

func (x *Link) GetPersonalData() bool

func (*Link) GetPlatform

func (x *Link) GetPlatform() string

func (*Link) GetUri

func (x *Link) GetUri() string

func (*Link) ProtoMessage

func (*Link) ProtoMessage()

func (*Link) ProtoReflect

func (x *Link) ProtoReflect() protoreflect.Message

func (*Link) Reset

func (x *Link) Reset()

func (*Link) String

func (x *Link) String() string

func (*Link) Validate

func (this *Link) Validate() error

type Privacy

type Privacy struct {
	ID               string `protobuf:"bytes,1,opt,name=ID,proto3" json:"ID,omitempty"`
	Private          bool   `protobuf:"varint,2,opt,name=private,proto3" json:"private,omitempty"`
	OwnedTracks      bool   `protobuf:"varint,3,opt,name=owned_tracks,json=ownedTracks,proto3" json:"owned_tracks,omitempty"`
	SupportedArtists bool   `protobuf:"varint,4,opt,name=supported_artists,json=supportedArtists,proto3" json:"supported_artists,omitempty"`
	// contains filtered or unexported fields
}

func (*Privacy) Descriptor deprecated

func (*Privacy) Descriptor() ([]byte, []int)

Deprecated: Use Privacy.ProtoReflect.Descriptor instead.

func (*Privacy) GetID

func (x *Privacy) GetID() string

func (*Privacy) GetOwnedTracks

func (x *Privacy) GetOwnedTracks() bool

func (*Privacy) GetPrivate

func (x *Privacy) GetPrivate() bool

func (*Privacy) GetSupportedArtists

func (x *Privacy) GetSupportedArtists() bool

func (*Privacy) ProtoMessage

func (*Privacy) ProtoMessage()

func (*Privacy) ProtoReflect

func (x *Privacy) ProtoReflect() protoreflect.Message

func (*Privacy) Reset

func (x *Privacy) Reset()

func (*Privacy) String

func (x *Privacy) String() string

func (*Privacy) Validate

func (this *Privacy) Validate() error

type Query

type Query struct {
	Query string `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"` // required
	// contains filtered or unexported fields
}

func (*Query) Descriptor deprecated

func (*Query) Descriptor() ([]byte, []int)

Deprecated: Use Query.ProtoReflect.Descriptor instead.

func (*Query) GetQuery

func (x *Query) GetQuery() string

func (*Query) ProtoMessage

func (*Query) ProtoMessage()

func (*Query) ProtoReflect

func (x *Query) ProtoReflect() protoreflect.Message

func (*Query) Reset

func (x *Query) Reset()

func (*Query) String

func (x *Query) String() string

func (*Query) Validate

func (this *Query) Validate() error

type RelatedUserGroup

type RelatedUserGroup struct {
	Id          string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Avatar      []byte `protobuf:"bytes,3,opt,name=avatar,proto3" json:"avatar,omitempty"`
	// contains filtered or unexported fields
}

func (*RelatedUserGroup) Descriptor deprecated

func (*RelatedUserGroup) Descriptor() ([]byte, []int)

Deprecated: Use RelatedUserGroup.ProtoReflect.Descriptor instead.

func (*RelatedUserGroup) GetAvatar

func (x *RelatedUserGroup) GetAvatar() []byte

func (*RelatedUserGroup) GetDisplayName

func (x *RelatedUserGroup) GetDisplayName() string

func (*RelatedUserGroup) GetId

func (x *RelatedUserGroup) GetId() string

func (*RelatedUserGroup) ProtoMessage

func (*RelatedUserGroup) ProtoMessage()

func (*RelatedUserGroup) ProtoReflect

func (x *RelatedUserGroup) ProtoReflect() protoreflect.Message

func (*RelatedUserGroup) Reset

func (x *RelatedUserGroup) Reset()

func (*RelatedUserGroup) String

func (x *RelatedUserGroup) String() string

func (*RelatedUserGroup) Validate

func (this *RelatedUserGroup) Validate() error

type ResetUserPasswordRequest

type ResetUserPasswordRequest struct {
	Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
	Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

func (*ResetUserPasswordRequest) Descriptor deprecated

func (*ResetUserPasswordRequest) Descriptor() ([]byte, []int)

Deprecated: Use ResetUserPasswordRequest.ProtoReflect.Descriptor instead.

func (*ResetUserPasswordRequest) GetPassword

func (x *ResetUserPasswordRequest) GetPassword() string

func (*ResetUserPasswordRequest) GetUsername

func (x *ResetUserPasswordRequest) GetUsername() string

func (*ResetUserPasswordRequest) ProtoMessage

func (*ResetUserPasswordRequest) ProtoMessage()

func (*ResetUserPasswordRequest) ProtoReflect

func (x *ResetUserPasswordRequest) ProtoReflect() protoreflect.Message

func (*ResetUserPasswordRequest) Reset

func (x *ResetUserPasswordRequest) Reset()

func (*ResetUserPasswordRequest) String

func (x *ResetUserPasswordRequest) String() string

func (*ResetUserPasswordRequest) Validate

func (this *ResetUserPasswordRequest) Validate() error

type ResonateUserClient

type ResonateUserClient interface {
	//GetUser provides a public level of information about a user
	GetUser(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserPublicResponse, error)
	//rpc AddUser(UserAddRequest) returns (User) {
	AddUser(ctx context.Context, in *UserAddRequest, opts ...grpc.CallOption) (*UserRequest, error)
	//rpc UpdateUser(UserUpdateRequest) returns (Empty) {
	UpdateUser(ctx context.Context, in *UserUpdateRequest, opts ...grpc.CallOption) (*Empty, error)
	//rpc UpdateUserRestricted(UserUpdateRestrictedRequest) returns (Empty) {
	UpdateUserRestricted(ctx context.Context, in *UserUpdateRestrictedRequest, opts ...grpc.CallOption) (*Empty, error)
	//GetUserRestricted provides private level of information about a user
	GetUserRestricted(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserPrivateResponse, error)
	GetUserMembership(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserMembershipResponse, error)
	GetUserCredits(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserCreditResponse, error)
	DeleteUser(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*Empty, error)
	//ListUsers returns a list of all Users
	ListUsers(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*UserListResponse, error)
	//AddUserGroup adds a UserGroup based on provided attributes
	AddUserGroup(ctx context.Context, in *UserGroupCreateRequest, opts ...grpc.CallOption) (*UserRequest, error)
	//UpdateUserGroup updates an existing UserGroup
	UpdateUserGroup(ctx context.Context, in *UserGroupUpdateRequest, opts ...grpc.CallOption) (*Empty, error)
	//GetUserGroup provides a public level of information about a user group
	GetUserGroup(ctx context.Context, in *UserGroupRequest, opts ...grpc.CallOption) (*UserGroupPublicResponse, error)
	//DeleteUserGroup deletes a UserGroup
	DeleteUserGroup(ctx context.Context, in *UserGroupRequest, opts ...grpc.CallOption) (*Empty, error)
	ListUsersUserGroups(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserGroupListResponse, error)
}

ResonateUserClient is the client API for ResonateUser service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type ResonateUserServer

type ResonateUserServer interface {
	//GetUser provides a public level of information about a user
	GetUser(context.Context, *UserRequest) (*UserPublicResponse, error)
	//rpc AddUser(UserAddRequest) returns (User) {
	AddUser(context.Context, *UserAddRequest) (*UserRequest, error)
	//rpc UpdateUser(UserUpdateRequest) returns (Empty) {
	UpdateUser(context.Context, *UserUpdateRequest) (*Empty, error)
	//rpc UpdateUserRestricted(UserUpdateRestrictedRequest) returns (Empty) {
	UpdateUserRestricted(context.Context, *UserUpdateRestrictedRequest) (*Empty, error)
	//GetUserRestricted provides private level of information about a user
	GetUserRestricted(context.Context, *UserRequest) (*UserPrivateResponse, error)
	GetUserMembership(context.Context, *UserRequest) (*UserMembershipResponse, error)
	GetUserCredits(context.Context, *UserRequest) (*UserCreditResponse, error)
	DeleteUser(context.Context, *UserRequest) (*Empty, error)
	//ListUsers returns a list of all Users
	ListUsers(context.Context, *Empty) (*UserListResponse, error)
	//AddUserGroup adds a UserGroup based on provided attributes
	AddUserGroup(context.Context, *UserGroupCreateRequest) (*UserRequest, error)
	//UpdateUserGroup updates an existing UserGroup
	UpdateUserGroup(context.Context, *UserGroupUpdateRequest) (*Empty, error)
	//GetUserGroup provides a public level of information about a user group
	GetUserGroup(context.Context, *UserGroupRequest) (*UserGroupPublicResponse, error)
	//DeleteUserGroup deletes a UserGroup
	DeleteUserGroup(context.Context, *UserGroupRequest) (*Empty, error)
	ListUsersUserGroups(context.Context, *UserRequest) (*UserGroupListResponse, error)
}

ResonateUserServer is the server API for ResonateUser service. All implementations should embed UnimplementedResonateUserServer for forward compatibility

type SearchResults

type SearchResults struct {
	People  []*RelatedUserGroup `protobuf:"bytes,1,rep,name=people,proto3" json:"people,omitempty"`
	Artists []*RelatedUserGroup `protobuf:"bytes,2,rep,name=artists,proto3" json:"artists,omitempty"`
	Labels  []*RelatedUserGroup `protobuf:"bytes,3,rep,name=labels,proto3" json:"labels,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchResults) Descriptor deprecated

func (*SearchResults) Descriptor() ([]byte, []int)

Deprecated: Use SearchResults.ProtoReflect.Descriptor instead.

func (*SearchResults) GetArtists

func (x *SearchResults) GetArtists() []*RelatedUserGroup

func (*SearchResults) GetLabels

func (x *SearchResults) GetLabels() []*RelatedUserGroup

func (*SearchResults) GetPeople

func (x *SearchResults) GetPeople() []*RelatedUserGroup

func (*SearchResults) ProtoMessage

func (*SearchResults) ProtoMessage()

func (*SearchResults) ProtoReflect

func (x *SearchResults) ProtoReflect() protoreflect.Message

func (*SearchResults) Reset

func (x *SearchResults) Reset()

func (*SearchResults) String

func (x *SearchResults) String() string

func (*SearchResults) Validate

func (this *SearchResults) Validate() error

type StreetAddress

type StreetAddress struct {
	Id           string            `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Data         map[string]string `` /* 149-byte string literal not displayed */
	PersonalData bool              `protobuf:"varint,3,opt,name=personal_data,json=personalData,proto3" json:"personal_data,omitempty"`
	// contains filtered or unexported fields
}

func (*StreetAddress) Descriptor deprecated

func (*StreetAddress) Descriptor() ([]byte, []int)

Deprecated: Use StreetAddress.ProtoReflect.Descriptor instead.

func (*StreetAddress) GetData

func (x *StreetAddress) GetData() map[string]string

func (*StreetAddress) GetId

func (x *StreetAddress) GetId() string

func (*StreetAddress) GetPersonalData

func (x *StreetAddress) GetPersonalData() bool

func (*StreetAddress) ProtoMessage

func (*StreetAddress) ProtoMessage()

func (*StreetAddress) ProtoReflect

func (x *StreetAddress) ProtoReflect() protoreflect.Message

func (*StreetAddress) Reset

func (x *StreetAddress) Reset()

func (*StreetAddress) String

func (x *StreetAddress) String() string

func (*StreetAddress) Validate

func (this *StreetAddress) Validate() error

type StreetAdressServiceClient

type StreetAdressServiceClient interface {
	SearchStreetAddress(ctx context.Context, in *Query, opts ...grpc.CallOption) (*StreetAddress, error)
}

StreetAdressServiceClient is the client API for StreetAdressService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type StreetAdressServiceServer

type StreetAdressServiceServer interface {
	SearchStreetAddress(context.Context, *Query) (*StreetAddress, error)
}

StreetAdressServiceServer is the server API for StreetAdressService service. All implementations should embed UnimplementedStreetAdressServiceServer for forward compatibility

type Tag

type Tag struct {
	Id   string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*Tag) Descriptor deprecated

func (*Tag) Descriptor() ([]byte, []int)

Deprecated: Use Tag.ProtoReflect.Descriptor instead.

func (*Tag) GetId

func (x *Tag) GetId() string

func (*Tag) GetName

func (x *Tag) GetName() string

func (*Tag) GetType

func (x *Tag) GetType() string

func (*Tag) ProtoMessage

func (*Tag) ProtoMessage()

func (*Tag) ProtoReflect

func (x *Tag) ProtoReflect() protoreflect.Message

func (*Tag) Reset

func (x *Tag) Reset()

func (*Tag) String

func (x *Tag) String() string

func (*Tag) Validate

func (this *Tag) Validate() error

type TagServiceClient

type TagServiceClient interface {
	SearchGenres(ctx context.Context, in *Query, opts ...grpc.CallOption) (*SearchResults, error)
}

TagServiceClient is the client API for TagService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewTagServiceClient

func NewTagServiceClient(cc grpc.ClientConnInterface) TagServiceClient

type TagServiceServer

type TagServiceServer interface {
	SearchGenres(context.Context, *Query) (*SearchResults, error)
}

TagServiceServer is the server API for TagService service. All implementations should embed UnimplementedTagServiceServer for forward compatibility

type UnimplementedAddressServiceServer

type UnimplementedAddressServiceServer struct {
}

UnimplementedAddressServiceServer should be embedded to have forward compatible implementations.

func (UnimplementedAddressServiceServer) SearchAddress

type UnimplementedResonateUserServer

type UnimplementedResonateUserServer struct {
}

UnimplementedResonateUserServer should be embedded to have forward compatible implementations.

func (UnimplementedResonateUserServer) AddUser

func (UnimplementedResonateUserServer) AddUserGroup

func (UnimplementedResonateUserServer) DeleteUser

func (UnimplementedResonateUserServer) DeleteUserGroup

func (UnimplementedResonateUserServer) GetUser

func (UnimplementedResonateUserServer) GetUserCredits

func (UnimplementedResonateUserServer) GetUserGroup

func (UnimplementedResonateUserServer) GetUserMembership

func (UnimplementedResonateUserServer) GetUserRestricted

func (UnimplementedResonateUserServer) ListUsers

func (UnimplementedResonateUserServer) ListUsersUserGroups

func (UnimplementedResonateUserServer) UpdateUser

func (UnimplementedResonateUserServer) UpdateUserGroup

func (UnimplementedResonateUserServer) UpdateUserRestricted

type UnimplementedStreetAdressServiceServer

type UnimplementedStreetAdressServiceServer struct {
}

UnimplementedStreetAdressServiceServer should be embedded to have forward compatible implementations.

func (UnimplementedStreetAdressServiceServer) SearchStreetAddress

type UnimplementedTagServiceServer

type UnimplementedTagServiceServer struct {
}

UnimplementedTagServiceServer should be embedded to have forward compatible implementations.

func (UnimplementedTagServiceServer) SearchGenres

type UnsafeAddressServiceServer

type UnsafeAddressServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeAddressServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to AddressServiceServer will result in compilation errors.

type UnsafeResonateUserServer

type UnsafeResonateUserServer interface {
	// contains filtered or unexported methods
}

UnsafeResonateUserServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to ResonateUserServer will result in compilation errors.

type UnsafeStreetAdressServiceServer

type UnsafeStreetAdressServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeStreetAdressServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to StreetAdressServiceServer will result in compilation errors.

type UnsafeTagServiceServer

type UnsafeTagServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeTagServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to TagServiceServer will result in compilation errors.

type User

type User struct {
	Id                     string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`                             // required
	Username               string   `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`                 // required
	Email                  string   `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`                       // required
	FullName               string   `protobuf:"bytes,5,opt,name=full_name,json=fullName,proto3" json:"full_name,omitempty"` // required
	FirstName              string   `protobuf:"bytes,6,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
	LastName               string   `protobuf:"bytes,7,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
	Member                 bool     `protobuf:"varint,8,opt,name=member,proto3" json:"member,omitempty"`
	NewsletterNotification bool     `` /* 129-byte string literal not displayed */
	FollowedGroups         []string `protobuf:"bytes,12,rep,name=followed_groups,json=followedGroups,proto3" json:"followed_groups,omitempty"`
	// contains filtered or unexported fields
}

func (*User) Descriptor deprecated

func (*User) Descriptor() ([]byte, []int)

Deprecated: Use User.ProtoReflect.Descriptor instead.

func (*User) GetEmail

func (x *User) GetEmail() string

func (*User) GetFirstName

func (x *User) GetFirstName() string

func (*User) GetFollowedGroups

func (x *User) GetFollowedGroups() []string

func (*User) GetFullName

func (x *User) GetFullName() string

func (*User) GetId

func (x *User) GetId() string

func (*User) GetLastName

func (x *User) GetLastName() string

func (*User) GetMember

func (x *User) GetMember() bool

func (*User) GetNewsletterNotification

func (x *User) GetNewsletterNotification() bool

func (*User) GetUsername

func (x *User) GetUsername() string

func (*User) ProtoMessage

func (*User) ProtoMessage()

func (*User) ProtoReflect

func (x *User) ProtoReflect() protoreflect.Message

func (*User) Reset

func (x *User) Reset()

func (*User) String

func (x *User) String() string

func (*User) Validate

func (this *User) Validate() error

type UserAddRequest

type UserAddRequest struct {
	Username               string   `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`                 // required
	FullName               string   `protobuf:"bytes,2,opt,name=full_name,json=fullName,proto3" json:"full_name,omitempty"` // required
	FirstName              string   `protobuf:"bytes,3,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
	LastName               string   `protobuf:"bytes,4,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
	Member                 bool     `protobuf:"varint,5,opt,name=member,proto3" json:"member,omitempty"`
	NewsletterNotification bool     `` /* 128-byte string literal not displayed */
	Country                string   `protobuf:"bytes,7,opt,name=country,proto3" json:"country,omitempty"`
	FollowedGroups         []string `protobuf:"bytes,8,rep,name=followed_groups,json=followedGroups,proto3" json:"followed_groups,omitempty"`
	RoleId                 *int32   `protobuf:"varint,9,opt,name=role_id,json=roleId,proto3,oneof" json:"role_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UserAddRequest) Descriptor deprecated

func (*UserAddRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserAddRequest.ProtoReflect.Descriptor instead.

func (*UserAddRequest) GetCountry

func (x *UserAddRequest) GetCountry() string

func (*UserAddRequest) GetFirstName

func (x *UserAddRequest) GetFirstName() string

func (*UserAddRequest) GetFollowedGroups

func (x *UserAddRequest) GetFollowedGroups() []string

func (*UserAddRequest) GetFullName

func (x *UserAddRequest) GetFullName() string

func (*UserAddRequest) GetLastName

func (x *UserAddRequest) GetLastName() string

func (*UserAddRequest) GetMember

func (x *UserAddRequest) GetMember() bool

func (*UserAddRequest) GetNewsletterNotification

func (x *UserAddRequest) GetNewsletterNotification() bool

func (*UserAddRequest) GetRoleId

func (x *UserAddRequest) GetRoleId() int32

func (*UserAddRequest) GetUsername

func (x *UserAddRequest) GetUsername() string

func (*UserAddRequest) ProtoMessage

func (*UserAddRequest) ProtoMessage()

func (*UserAddRequest) ProtoReflect

func (x *UserAddRequest) ProtoReflect() protoreflect.Message

func (*UserAddRequest) Reset

func (x *UserAddRequest) Reset()

func (*UserAddRequest) String

func (x *UserAddRequest) String() string

func (*UserAddRequest) Validate

func (this *UserAddRequest) Validate() error

type UserCreditResponse

type UserCreditResponse struct {
	Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"` // required
	// contains filtered or unexported fields
}

func (*UserCreditResponse) Descriptor deprecated

func (*UserCreditResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserCreditResponse.ProtoReflect.Descriptor instead.

func (*UserCreditResponse) GetTotal

func (x *UserCreditResponse) GetTotal() int64

func (*UserCreditResponse) ProtoMessage

func (*UserCreditResponse) ProtoMessage()

func (*UserCreditResponse) ProtoReflect

func (x *UserCreditResponse) ProtoReflect() protoreflect.Message

func (*UserCreditResponse) Reset

func (x *UserCreditResponse) Reset()

func (*UserCreditResponse) String

func (x *UserCreditResponse) String() string

func (*UserCreditResponse) Validate

func (this *UserCreditResponse) Validate() error

type UserGroup

type UserGroup struct {
	ID                 string              `protobuf:"bytes,1,opt,name=ID,proto3" json:"ID,omitempty"`                                      // required
	DisplayName        string              `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"` // required
	Description        string              `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	ShortBio           string              `protobuf:"bytes,4,opt,name=short_bio,json=shortBio,proto3" json:"short_bio,omitempty"`
	Avatar             string              `protobuf:"bytes,5,opt,name=avatar,proto3" json:"avatar,omitempty"` // required
	Banner             string              `protobuf:"bytes,6,opt,name=banner,proto3" json:"banner,omitempty"`
	OwnerId            string              `protobuf:"bytes,7,opt,name=owner_id,json=ownerId,proto3" json:"owner_id,omitempty"`       // required
	GroupType          string              `protobuf:"bytes,8,opt,name=group_type,json=groupType,proto3" json:"group_type,omitempty"` // UUID required
	Followers          []*User             `protobuf:"bytes,9,rep,name=followers,proto3" json:"followers,omitempty"`
	Members            []*UserGroup        `protobuf:"bytes,10,rep,name=members,proto3" json:"members,omitempty"`
	MemberOfGroups     []*UserGroup        `protobuf:"bytes,11,rep,name=memberOfGroups,proto3" json:"memberOfGroups,omitempty"`
	Links              []*Link             `protobuf:"bytes,12,rep,name=links,proto3" json:"links,omitempty"`
	Tags               []*Tag              `protobuf:"bytes,13,rep,name=tags,proto3" json:"tags,omitempty"`
	Address            *StreetAddress      `protobuf:"bytes,14,opt,name=address,proto3" json:"address,omitempty"`
	Privacy            *Privacy            `protobuf:"bytes,15,opt,name=privacy,proto3" json:"privacy,omitempty"`
	RecommendedArtists []*RelatedUserGroup `protobuf:"bytes,16,rep,name=recommended_artists,json=recommendedArtists,proto3" json:"recommended_artists,omitempty"`
	// map<string, string> publisher = 17;
	// map<string, string> pro = 18;
	GroupEmail string `protobuf:"bytes,17,opt,name=group_email,json=groupEmail,proto3" json:"group_email,omitempty"`
	// contains filtered or unexported fields
}

func (*UserGroup) Descriptor deprecated

func (*UserGroup) Descriptor() ([]byte, []int)

Deprecated: Use UserGroup.ProtoReflect.Descriptor instead.

func (*UserGroup) GetAddress

func (x *UserGroup) GetAddress() *StreetAddress

func (*UserGroup) GetAvatar

func (x *UserGroup) GetAvatar() string

func (*UserGroup) GetBanner

func (x *UserGroup) GetBanner() string

func (*UserGroup) GetDescription

func (x *UserGroup) GetDescription() string

func (*UserGroup) GetDisplayName

func (x *UserGroup) GetDisplayName() string

func (*UserGroup) GetFollowers

func (x *UserGroup) GetFollowers() []*User

func (*UserGroup) GetGroupEmail

func (x *UserGroup) GetGroupEmail() string

func (*UserGroup) GetGroupType

func (x *UserGroup) GetGroupType() string

func (*UserGroup) GetID

func (x *UserGroup) GetID() string
func (x *UserGroup) GetLinks() []*Link

func (*UserGroup) GetMemberOfGroups

func (x *UserGroup) GetMemberOfGroups() []*UserGroup

func (*UserGroup) GetMembers

func (x *UserGroup) GetMembers() []*UserGroup

func (*UserGroup) GetOwnerId

func (x *UserGroup) GetOwnerId() string

func (*UserGroup) GetPrivacy

func (x *UserGroup) GetPrivacy() *Privacy

func (*UserGroup) GetRecommendedArtists

func (x *UserGroup) GetRecommendedArtists() []*RelatedUserGroup

func (*UserGroup) GetShortBio

func (x *UserGroup) GetShortBio() string

func (*UserGroup) GetTags

func (x *UserGroup) GetTags() []*Tag

func (*UserGroup) ProtoMessage

func (*UserGroup) ProtoMessage()

func (*UserGroup) ProtoReflect

func (x *UserGroup) ProtoReflect() protoreflect.Message

func (*UserGroup) Reset

func (x *UserGroup) Reset()

func (*UserGroup) String

func (x *UserGroup) String() string

func (*UserGroup) Validate

func (this *UserGroup) Validate() error

type UserGroupCreateRequest

type UserGroupCreateRequest struct {
	Id          string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`                                      // UUID required
	DisplayName string   `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"` // required
	Description string   `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`                    // optional
	ShortBio    string   `protobuf:"bytes,4,opt,name=short_bio,json=shortBio,proto3" json:"short_bio,omitempty"`          // optional
	Avatar      string   `protobuf:"bytes,5,opt,name=avatar,proto3" json:"avatar,omitempty"`                              // UUID
	Banner      string   `protobuf:"bytes,6,opt,name=banner,proto3" json:"banner,omitempty"`                              // UUID
	GroupType   string   `protobuf:"bytes,8,opt,name=group_type,json=groupType,proto3" json:"group_type,omitempty"`       // required UUID
	Tags        []string `protobuf:"bytes,9,rep,name=tags,proto3" json:"tags,omitempty"`                                  // optional UUIDs
	GroupEmail  string   `protobuf:"bytes,10,opt,name=group_email,json=groupEmail,proto3" json:"group_email,omitempty"`   // optional
	Links       []string `protobuf:"bytes,11,rep,name=links,proto3" json:"links,omitempty"`
	// contains filtered or unexported fields
}

func (*UserGroupCreateRequest) Descriptor deprecated

func (*UserGroupCreateRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserGroupCreateRequest.ProtoReflect.Descriptor instead.

func (*UserGroupCreateRequest) GetAvatar

func (x *UserGroupCreateRequest) GetAvatar() string

func (*UserGroupCreateRequest) GetBanner

func (x *UserGroupCreateRequest) GetBanner() string

func (*UserGroupCreateRequest) GetDescription

func (x *UserGroupCreateRequest) GetDescription() string

func (*UserGroupCreateRequest) GetDisplayName

func (x *UserGroupCreateRequest) GetDisplayName() string

func (*UserGroupCreateRequest) GetGroupEmail

func (x *UserGroupCreateRequest) GetGroupEmail() string

func (*UserGroupCreateRequest) GetGroupType

func (x *UserGroupCreateRequest) GetGroupType() string

func (*UserGroupCreateRequest) GetId

func (x *UserGroupCreateRequest) GetId() string
func (x *UserGroupCreateRequest) GetLinks() []string

func (*UserGroupCreateRequest) GetShortBio

func (x *UserGroupCreateRequest) GetShortBio() string

func (*UserGroupCreateRequest) GetTags

func (x *UserGroupCreateRequest) GetTags() []string

func (*UserGroupCreateRequest) ProtoMessage

func (*UserGroupCreateRequest) ProtoMessage()

func (*UserGroupCreateRequest) ProtoReflect

func (x *UserGroupCreateRequest) ProtoReflect() protoreflect.Message

func (*UserGroupCreateRequest) Reset

func (x *UserGroupCreateRequest) Reset()

func (*UserGroupCreateRequest) String

func (x *UserGroupCreateRequest) String() string

func (*UserGroupCreateRequest) Validate

func (this *UserGroupCreateRequest) Validate() error

type UserGroupListResponse

type UserGroupListResponse struct {
	Usergroup []*UserGroupPrivateResponse `protobuf:"bytes,1,rep,name=usergroup,proto3" json:"usergroup,omitempty"`
	// contains filtered or unexported fields
}

func (*UserGroupListResponse) Descriptor deprecated

func (*UserGroupListResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserGroupListResponse.ProtoReflect.Descriptor instead.

func (*UserGroupListResponse) GetUsergroup

func (x *UserGroupListResponse) GetUsergroup() []*UserGroupPrivateResponse

func (*UserGroupListResponse) ProtoMessage

func (*UserGroupListResponse) ProtoMessage()

func (*UserGroupListResponse) ProtoReflect

func (x *UserGroupListResponse) ProtoReflect() protoreflect.Message

func (*UserGroupListResponse) Reset

func (x *UserGroupListResponse) Reset()

func (*UserGroupListResponse) String

func (x *UserGroupListResponse) String() string

func (*UserGroupListResponse) Validate

func (this *UserGroupListResponse) Validate() error

type UserGroupMembers

type UserGroupMembers struct {
	UserGroupId string   `protobuf:"bytes,1,opt,name=user_group_id,json=userGroupId,proto3" json:"user_group_id,omitempty"`
	Members     []string `protobuf:"bytes,2,rep,name=members,proto3" json:"members,omitempty"`
	// contains filtered or unexported fields
}

func (*UserGroupMembers) Descriptor deprecated

func (*UserGroupMembers) Descriptor() ([]byte, []int)

Deprecated: Use UserGroupMembers.ProtoReflect.Descriptor instead.

func (*UserGroupMembers) GetMembers

func (x *UserGroupMembers) GetMembers() []string

func (*UserGroupMembers) GetUserGroupId

func (x *UserGroupMembers) GetUserGroupId() string

func (*UserGroupMembers) ProtoMessage

func (*UserGroupMembers) ProtoMessage()

func (*UserGroupMembers) ProtoReflect

func (x *UserGroupMembers) ProtoReflect() protoreflect.Message

func (*UserGroupMembers) Reset

func (x *UserGroupMembers) Reset()

func (*UserGroupMembers) String

func (x *UserGroupMembers) String() string

func (*UserGroupMembers) Validate

func (this *UserGroupMembers) Validate() error

type UserGroupMembershipRequest

type UserGroupMembershipRequest struct {
	GroupId  string `protobuf:"bytes,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`    // required
	MemberId string `protobuf:"bytes,2,opt,name=member_id,json=memberId,proto3" json:"member_id,omitempty"` //required
	// contains filtered or unexported fields
}

func (*UserGroupMembershipRequest) Descriptor deprecated

func (*UserGroupMembershipRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserGroupMembershipRequest.ProtoReflect.Descriptor instead.

func (*UserGroupMembershipRequest) GetGroupId

func (x *UserGroupMembershipRequest) GetGroupId() string

func (*UserGroupMembershipRequest) GetMemberId

func (x *UserGroupMembershipRequest) GetMemberId() string

func (*UserGroupMembershipRequest) ProtoMessage

func (*UserGroupMembershipRequest) ProtoMessage()

func (*UserGroupMembershipRequest) ProtoReflect

func (*UserGroupMembershipRequest) Reset

func (x *UserGroupMembershipRequest) Reset()

func (*UserGroupMembershipRequest) String

func (x *UserGroupMembershipRequest) String() string

func (*UserGroupMembershipRequest) Validate

func (this *UserGroupMembershipRequest) Validate() error

type UserGroupPrivateResponse

type UserGroupPrivateResponse struct {
	Id          string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"` // required
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	ShortBio    string `protobuf:"bytes,4,opt,name=short_bio,json=shortBio,proto3" json:"short_bio,omitempty"`
	Avatar      string `protobuf:"bytes,5,opt,name=avatar,proto3" json:"avatar,omitempty"` // required
	Banner      string `protobuf:"bytes,6,opt,name=banner,proto3" json:"banner,omitempty"`
	OwnerId     string `protobuf:"bytes,7,opt,name=owner_id,json=ownerId,proto3" json:"owner_id,omitempty"`       // required
	GroupType   string `protobuf:"bytes,8,opt,name=group_type,json=groupType,proto3" json:"group_type,omitempty"` // required
	// repeated string followers = 9;
	// repeated string members = 10;
	// repeated string memberOfGroups = 11;
	// repeated string links = 12;
	// repeated string tags = 13;
	//  StreetAddress address = 13;
	// Privacy privacy = 14;
	//repeated RelatedUserGroup recommended_artists = 15;
	//map<string, string> publisher = 16;
	//map<string, string> pro = 17;
	GroupEmail string `protobuf:"bytes,9,opt,name=group_email,json=groupEmail,proto3" json:"group_email,omitempty"`
	CreatedAt  string `protobuf:"bytes,10,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt  string `protobuf:"bytes,11,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	// contains filtered or unexported fields
}

func (*UserGroupPrivateResponse) Descriptor deprecated

func (*UserGroupPrivateResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserGroupPrivateResponse.ProtoReflect.Descriptor instead.

func (*UserGroupPrivateResponse) GetAvatar

func (x *UserGroupPrivateResponse) GetAvatar() string

func (*UserGroupPrivateResponse) GetBanner

func (x *UserGroupPrivateResponse) GetBanner() string

func (*UserGroupPrivateResponse) GetCreatedAt

func (x *UserGroupPrivateResponse) GetCreatedAt() string

func (*UserGroupPrivateResponse) GetDescription

func (x *UserGroupPrivateResponse) GetDescription() string

func (*UserGroupPrivateResponse) GetDisplayName

func (x *UserGroupPrivateResponse) GetDisplayName() string

func (*UserGroupPrivateResponse) GetGroupEmail

func (x *UserGroupPrivateResponse) GetGroupEmail() string

func (*UserGroupPrivateResponse) GetGroupType

func (x *UserGroupPrivateResponse) GetGroupType() string

func (*UserGroupPrivateResponse) GetId

func (x *UserGroupPrivateResponse) GetId() string

func (*UserGroupPrivateResponse) GetOwnerId

func (x *UserGroupPrivateResponse) GetOwnerId() string

func (*UserGroupPrivateResponse) GetShortBio

func (x *UserGroupPrivateResponse) GetShortBio() string

func (*UserGroupPrivateResponse) GetUpdatedAt

func (x *UserGroupPrivateResponse) GetUpdatedAt() string

func (*UserGroupPrivateResponse) ProtoMessage

func (*UserGroupPrivateResponse) ProtoMessage()

func (*UserGroupPrivateResponse) ProtoReflect

func (x *UserGroupPrivateResponse) ProtoReflect() protoreflect.Message

func (*UserGroupPrivateResponse) Reset

func (x *UserGroupPrivateResponse) Reset()

func (*UserGroupPrivateResponse) String

func (x *UserGroupPrivateResponse) String() string

func (*UserGroupPrivateResponse) Validate

func (this *UserGroupPrivateResponse) Validate() error

type UserGroupPublicResponse

type UserGroupPublicResponse struct {
	DisplayName    string   `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"` // required
	Description    string   `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	ShortBio       string   `protobuf:"bytes,4,opt,name=short_bio,json=shortBio,proto3" json:"short_bio,omitempty"`
	Avatar         string   `protobuf:"bytes,5,opt,name=avatar,proto3" json:"avatar,omitempty"` // required
	Banner         string   `protobuf:"bytes,6,opt,name=banner,proto3" json:"banner,omitempty"`
	GroupType      string   `protobuf:"bytes,8,opt,name=group_type,json=groupType,proto3" json:"group_type,omitempty"` // required
	Followers      []string `protobuf:"bytes,9,rep,name=followers,proto3" json:"followers,omitempty"`
	Members        []string `protobuf:"bytes,10,rep,name=members,proto3" json:"members,omitempty"`
	MemberOfGroups []string `protobuf:"bytes,11,rep,name=memberOfGroups,proto3" json:"memberOfGroups,omitempty"`
	Links          []*Link  `protobuf:"bytes,12,rep,name=links,proto3" json:"links,omitempty"`
	Tags           []string `protobuf:"bytes,13,rep,name=tags,proto3" json:"tags,omitempty"`
	// repeated RelatedUserGroup recommended_artists = 17;
	// map<string, string> publisher = 21;
	// map<string, string> pro = 22;
	GroupEmail string `protobuf:"bytes,23,opt,name=group_email,json=groupEmail,proto3" json:"group_email,omitempty"`
	// contains filtered or unexported fields
}

func (*UserGroupPublicResponse) Descriptor deprecated

func (*UserGroupPublicResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserGroupPublicResponse.ProtoReflect.Descriptor instead.

func (*UserGroupPublicResponse) GetAvatar

func (x *UserGroupPublicResponse) GetAvatar() string

func (*UserGroupPublicResponse) GetBanner

func (x *UserGroupPublicResponse) GetBanner() string

func (*UserGroupPublicResponse) GetDescription

func (x *UserGroupPublicResponse) GetDescription() string

func (*UserGroupPublicResponse) GetDisplayName

func (x *UserGroupPublicResponse) GetDisplayName() string

func (*UserGroupPublicResponse) GetFollowers

func (x *UserGroupPublicResponse) GetFollowers() []string

func (*UserGroupPublicResponse) GetGroupEmail

func (x *UserGroupPublicResponse) GetGroupEmail() string

func (*UserGroupPublicResponse) GetGroupType

func (x *UserGroupPublicResponse) GetGroupType() string
func (x *UserGroupPublicResponse) GetLinks() []*Link

func (*UserGroupPublicResponse) GetMemberOfGroups

func (x *UserGroupPublicResponse) GetMemberOfGroups() []string

func (*UserGroupPublicResponse) GetMembers

func (x *UserGroupPublicResponse) GetMembers() []string

func (*UserGroupPublicResponse) GetShortBio

func (x *UserGroupPublicResponse) GetShortBio() string

func (*UserGroupPublicResponse) GetTags

func (x *UserGroupPublicResponse) GetTags() []string

func (*UserGroupPublicResponse) ProtoMessage

func (*UserGroupPublicResponse) ProtoMessage()

func (*UserGroupPublicResponse) ProtoReflect

func (x *UserGroupPublicResponse) ProtoReflect() protoreflect.Message

func (*UserGroupPublicResponse) Reset

func (x *UserGroupPublicResponse) Reset()

func (*UserGroupPublicResponse) String

func (x *UserGroupPublicResponse) String() string

func (*UserGroupPublicResponse) Validate

func (this *UserGroupPublicResponse) Validate() error

type UserGroupRecommended

type UserGroupRecommended struct {
	UserGroupId   string `protobuf:"bytes,1,opt,name=user_group_id,json=userGroupId,proto3" json:"user_group_id,omitempty"`
	RecommendedId string `protobuf:"bytes,2,opt,name=recommended_id,json=recommendedId,proto3" json:"recommended_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UserGroupRecommended) Descriptor deprecated

func (*UserGroupRecommended) Descriptor() ([]byte, []int)

Deprecated: Use UserGroupRecommended.ProtoReflect.Descriptor instead.

func (*UserGroupRecommended) GetRecommendedId

func (x *UserGroupRecommended) GetRecommendedId() string

func (*UserGroupRecommended) GetUserGroupId

func (x *UserGroupRecommended) GetUserGroupId() string

func (*UserGroupRecommended) ProtoMessage

func (*UserGroupRecommended) ProtoMessage()

func (*UserGroupRecommended) ProtoReflect

func (x *UserGroupRecommended) ProtoReflect() protoreflect.Message

func (*UserGroupRecommended) Reset

func (x *UserGroupRecommended) Reset()

func (*UserGroupRecommended) String

func (x *UserGroupRecommended) String() string

func (*UserGroupRecommended) Validate

func (this *UserGroupRecommended) Validate() error

type UserGroupRequest

type UserGroupRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` // required
	// contains filtered or unexported fields
}

func (*UserGroupRequest) Descriptor deprecated

func (*UserGroupRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserGroupRequest.ProtoReflect.Descriptor instead.

func (*UserGroupRequest) GetId

func (x *UserGroupRequest) GetId() string

func (*UserGroupRequest) ProtoMessage

func (*UserGroupRequest) ProtoMessage()

func (*UserGroupRequest) ProtoReflect

func (x *UserGroupRequest) ProtoReflect() protoreflect.Message

func (*UserGroupRequest) Reset

func (x *UserGroupRequest) Reset()

func (*UserGroupRequest) String

func (x *UserGroupRequest) String() string

func (*UserGroupRequest) Validate

func (this *UserGroupRequest) Validate() error

type UserGroupUpdateRequest

type UserGroupUpdateRequest struct {
	Id          string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` // required
	DisplayName *string  `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3,oneof" json:"display_name,omitempty"`
	Description *string  `protobuf:"bytes,3,opt,name=description,proto3,oneof" json:"description,omitempty"`
	ShortBio    *string  `protobuf:"bytes,4,opt,name=short_bio,json=shortBio,proto3,oneof" json:"short_bio,omitempty"`
	Avatar      *string  `protobuf:"bytes,5,opt,name=avatar,proto3,oneof" json:"avatar,omitempty"`
	Banner      *string  `protobuf:"bytes,6,opt,name=banner,proto3,oneof" json:"banner,omitempty"`
	GroupType   *string  `protobuf:"bytes,7,opt,name=group_type,json=groupType,proto3,oneof" json:"group_type,omitempty"`
	GroupEmail  *string  `protobuf:"bytes,9,opt,name=group_email,json=groupEmail,proto3,oneof" json:"group_email,omitempty"`
	OwnerId     *string  `protobuf:"bytes,10,opt,name=owner_id,json=ownerId,proto3,oneof" json:"owner_id,omitempty"`
	Links       []string `protobuf:"bytes,11,rep,name=links,proto3" json:"links,omitempty"`
	Tags        []string `protobuf:"bytes,12,rep,name=tags,proto3" json:"tags,omitempty"`
	// contains filtered or unexported fields
}

func (*UserGroupUpdateRequest) Descriptor deprecated

func (*UserGroupUpdateRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserGroupUpdateRequest.ProtoReflect.Descriptor instead.

func (*UserGroupUpdateRequest) GetAvatar

func (x *UserGroupUpdateRequest) GetAvatar() string

func (*UserGroupUpdateRequest) GetBanner

func (x *UserGroupUpdateRequest) GetBanner() string

func (*UserGroupUpdateRequest) GetDescription

func (x *UserGroupUpdateRequest) GetDescription() string

func (*UserGroupUpdateRequest) GetDisplayName

func (x *UserGroupUpdateRequest) GetDisplayName() string

func (*UserGroupUpdateRequest) GetGroupEmail

func (x *UserGroupUpdateRequest) GetGroupEmail() string

func (*UserGroupUpdateRequest) GetGroupType

func (x *UserGroupUpdateRequest) GetGroupType() string

func (*UserGroupUpdateRequest) GetId

func (x *UserGroupUpdateRequest) GetId() string
func (x *UserGroupUpdateRequest) GetLinks() []string

func (*UserGroupUpdateRequest) GetOwnerId

func (x *UserGroupUpdateRequest) GetOwnerId() string

func (*UserGroupUpdateRequest) GetShortBio

func (x *UserGroupUpdateRequest) GetShortBio() string

func (*UserGroupUpdateRequest) GetTags

func (x *UserGroupUpdateRequest) GetTags() []string

func (*UserGroupUpdateRequest) ProtoMessage

func (*UserGroupUpdateRequest) ProtoMessage()

func (*UserGroupUpdateRequest) ProtoReflect

func (x *UserGroupUpdateRequest) ProtoReflect() protoreflect.Message

func (*UserGroupUpdateRequest) Reset

func (x *UserGroupUpdateRequest) Reset()

func (*UserGroupUpdateRequest) String

func (x *UserGroupUpdateRequest) String() string

func (*UserGroupUpdateRequest) Validate

func (this *UserGroupUpdateRequest) Validate() error

type UserListResponse

type UserListResponse struct {
	User []*UserPrivateResponse `protobuf:"bytes,1,rep,name=user,proto3" json:"user,omitempty"`
	// contains filtered or unexported fields
}

func (*UserListResponse) Descriptor deprecated

func (*UserListResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserListResponse.ProtoReflect.Descriptor instead.

func (*UserListResponse) GetUser

func (x *UserListResponse) GetUser() []*UserPrivateResponse

func (*UserListResponse) ProtoMessage

func (*UserListResponse) ProtoMessage()

func (*UserListResponse) ProtoReflect

func (x *UserListResponse) ProtoReflect() protoreflect.Message

func (*UserListResponse) Reset

func (x *UserListResponse) Reset()

func (*UserListResponse) String

func (x *UserListResponse) String() string

func (*UserListResponse) Validate

func (this *UserListResponse) Validate() error

type UserMembershipResponse

type UserMembershipResponse struct {
	Id              string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Start           string `protobuf:"bytes,2,opt,name=start,proto3" json:"start,omitempty"`
	End             string `protobuf:"bytes,3,opt,name=end,proto3" json:"end,omitempty"`
	MembershipClass string `protobuf:"bytes,4,opt,name=membership_class,json=membershipClass,proto3" json:"membership_class,omitempty"`
	// contains filtered or unexported fields
}

func (*UserMembershipResponse) Descriptor deprecated

func (*UserMembershipResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserMembershipResponse.ProtoReflect.Descriptor instead.

func (*UserMembershipResponse) GetEnd

func (x *UserMembershipResponse) GetEnd() string

func (*UserMembershipResponse) GetId

func (x *UserMembershipResponse) GetId() string

func (*UserMembershipResponse) GetMembershipClass

func (x *UserMembershipResponse) GetMembershipClass() string

func (*UserMembershipResponse) GetStart

func (x *UserMembershipResponse) GetStart() string

func (*UserMembershipResponse) ProtoMessage

func (*UserMembershipResponse) ProtoMessage()

func (*UserMembershipResponse) ProtoReflect

func (x *UserMembershipResponse) ProtoReflect() protoreflect.Message

func (*UserMembershipResponse) Reset

func (x *UserMembershipResponse) Reset()

func (*UserMembershipResponse) String

func (x *UserMembershipResponse) String() string

func (*UserMembershipResponse) Validate

func (this *UserMembershipResponse) Validate() error

type UserOptionalRequest

type UserOptionalRequest struct {
	Id *string `protobuf:"bytes,1,opt,name=id,proto3,oneof" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*UserOptionalRequest) Descriptor deprecated

func (*UserOptionalRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserOptionalRequest.ProtoReflect.Descriptor instead.

func (*UserOptionalRequest) GetId

func (x *UserOptionalRequest) GetId() string

func (*UserOptionalRequest) ProtoMessage

func (*UserOptionalRequest) ProtoMessage()

func (*UserOptionalRequest) ProtoReflect

func (x *UserOptionalRequest) ProtoReflect() protoreflect.Message

func (*UserOptionalRequest) Reset

func (x *UserOptionalRequest) Reset()

func (*UserOptionalRequest) String

func (x *UserOptionalRequest) String() string

func (*UserOptionalRequest) Validate

func (this *UserOptionalRequest) Validate() error

type UserPrivateResponse

type UserPrivateResponse struct {
	Id                     string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` // required
	LegacyId               int32    `protobuf:"varint,2,opt,name=legacy_id,json=legacyId,proto3" json:"legacy_id,omitempty"`
	Username               string   `protobuf:"bytes,3,opt,name=username,proto3" json:"username,omitempty"`                 // required
	FullName               string   `protobuf:"bytes,4,opt,name=full_name,json=fullName,proto3" json:"full_name,omitempty"` // required
	FirstName              string   `protobuf:"bytes,5,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
	LastName               string   `protobuf:"bytes,6,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
	Country                string   `protobuf:"bytes,7,opt,name=country,proto3" json:"country,omitempty"`
	EmailConfirmed         bool     `protobuf:"varint,8,opt,name=email_confirmed,json=emailConfirmed,proto3" json:"email_confirmed,omitempty"`
	Member                 bool     `protobuf:"varint,9,opt,name=member,proto3" json:"member,omitempty"`
	RoleId                 int32    `protobuf:"varint,10,opt,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	TenantId               int32    `protobuf:"varint,11,opt,name=tenant_id,json=tenantId,proto3" json:"tenant_id,omitempty"`
	NewsletterNotification bool     `` /* 129-byte string literal not displayed */
	Personas               []string `protobuf:"bytes,13,rep,name=personas,proto3" json:"personas,omitempty"`
	OwnedGroups            []string `protobuf:"bytes,14,rep,name=owned_groups,json=ownedGroups,proto3" json:"owned_groups,omitempty"`
	FollowedGroups         []string `protobuf:"bytes,15,rep,name=followed_groups,json=followedGroups,proto3" json:"followed_groups,omitempty"`
	// contains filtered or unexported fields
}

func (*UserPrivateResponse) Descriptor deprecated

func (*UserPrivateResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserPrivateResponse.ProtoReflect.Descriptor instead.

func (*UserPrivateResponse) GetCountry

func (x *UserPrivateResponse) GetCountry() string

func (*UserPrivateResponse) GetEmailConfirmed

func (x *UserPrivateResponse) GetEmailConfirmed() bool

func (*UserPrivateResponse) GetFirstName

func (x *UserPrivateResponse) GetFirstName() string

func (*UserPrivateResponse) GetFollowedGroups

func (x *UserPrivateResponse) GetFollowedGroups() []string

func (*UserPrivateResponse) GetFullName

func (x *UserPrivateResponse) GetFullName() string

func (*UserPrivateResponse) GetId

func (x *UserPrivateResponse) GetId() string

func (*UserPrivateResponse) GetLastName

func (x *UserPrivateResponse) GetLastName() string

func (*UserPrivateResponse) GetLegacyId

func (x *UserPrivateResponse) GetLegacyId() int32

func (*UserPrivateResponse) GetMember

func (x *UserPrivateResponse) GetMember() bool

func (*UserPrivateResponse) GetNewsletterNotification

func (x *UserPrivateResponse) GetNewsletterNotification() bool

func (*UserPrivateResponse) GetOwnedGroups

func (x *UserPrivateResponse) GetOwnedGroups() []string

func (*UserPrivateResponse) GetPersonas

func (x *UserPrivateResponse) GetPersonas() []string

func (*UserPrivateResponse) GetRoleId

func (x *UserPrivateResponse) GetRoleId() int32

func (*UserPrivateResponse) GetTenantId

func (x *UserPrivateResponse) GetTenantId() int32

func (*UserPrivateResponse) GetUsername

func (x *UserPrivateResponse) GetUsername() string

func (*UserPrivateResponse) ProtoMessage

func (*UserPrivateResponse) ProtoMessage()

func (*UserPrivateResponse) ProtoReflect

func (x *UserPrivateResponse) ProtoReflect() protoreflect.Message

func (*UserPrivateResponse) Reset

func (x *UserPrivateResponse) Reset()

func (*UserPrivateResponse) String

func (x *UserPrivateResponse) String() string

func (*UserPrivateResponse) Validate

func (this *UserPrivateResponse) Validate() error

type UserPublicResponse

type UserPublicResponse struct {
	Id             string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	LegacyId       int32    `protobuf:"varint,2,opt,name=legacy_id,json=legacyId,proto3" json:"legacy_id,omitempty"`
	Username       string   `protobuf:"bytes,3,opt,name=username,proto3" json:"username,omitempty"`                 // required
	FullName       string   `protobuf:"bytes,4,opt,name=full_name,json=fullName,proto3" json:"full_name,omitempty"` // required
	FirstName      string   `protobuf:"bytes,5,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
	LastName       string   `protobuf:"bytes,6,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
	Country        string   `protobuf:"bytes,7,opt,name=country,proto3" json:"country,omitempty"`
	Member         bool     `protobuf:"varint,8,opt,name=member,proto3" json:"member,omitempty"`
	Personas       []string `protobuf:"bytes,9,rep,name=personas,proto3" json:"personas,omitempty"`
	OwnedGroups    []string `protobuf:"bytes,10,rep,name=owned_groups,json=ownedGroups,proto3" json:"owned_groups,omitempty"`
	FollowedGroups []string `protobuf:"bytes,11,rep,name=followed_groups,json=followedGroups,proto3" json:"followed_groups,omitempty"`
	RoleId         int32    `protobuf:"varint,12,opt,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UserPublicResponse) Descriptor deprecated

func (*UserPublicResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserPublicResponse.ProtoReflect.Descriptor instead.

func (*UserPublicResponse) GetCountry

func (x *UserPublicResponse) GetCountry() string

func (*UserPublicResponse) GetFirstName

func (x *UserPublicResponse) GetFirstName() string

func (*UserPublicResponse) GetFollowedGroups

func (x *UserPublicResponse) GetFollowedGroups() []string

func (*UserPublicResponse) GetFullName

func (x *UserPublicResponse) GetFullName() string

func (*UserPublicResponse) GetId

func (x *UserPublicResponse) GetId() string

func (*UserPublicResponse) GetLastName

func (x *UserPublicResponse) GetLastName() string

func (*UserPublicResponse) GetLegacyId

func (x *UserPublicResponse) GetLegacyId() int32

func (*UserPublicResponse) GetMember

func (x *UserPublicResponse) GetMember() bool

func (*UserPublicResponse) GetOwnedGroups

func (x *UserPublicResponse) GetOwnedGroups() []string

func (*UserPublicResponse) GetPersonas

func (x *UserPublicResponse) GetPersonas() []string

func (*UserPublicResponse) GetRoleId

func (x *UserPublicResponse) GetRoleId() int32

func (*UserPublicResponse) GetUsername

func (x *UserPublicResponse) GetUsername() string

func (*UserPublicResponse) ProtoMessage

func (*UserPublicResponse) ProtoMessage()

func (*UserPublicResponse) ProtoReflect

func (x *UserPublicResponse) ProtoReflect() protoreflect.Message

func (*UserPublicResponse) Reset

func (x *UserPublicResponse) Reset()

func (*UserPublicResponse) String

func (x *UserPublicResponse) String() string

func (*UserPublicResponse) Validate

func (this *UserPublicResponse) Validate() error

type UserRequest

type UserRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*UserRequest) Descriptor deprecated

func (*UserRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserRequest.ProtoReflect.Descriptor instead.

func (*UserRequest) GetId

func (x *UserRequest) GetId() string

func (*UserRequest) ProtoMessage

func (*UserRequest) ProtoMessage()

func (*UserRequest) ProtoReflect

func (x *UserRequest) ProtoReflect() protoreflect.Message

func (*UserRequest) Reset

func (x *UserRequest) Reset()

func (*UserRequest) String

func (x *UserRequest) String() string

func (*UserRequest) Validate

func (this *UserRequest) Validate() error

type UserUpdateRequest

type UserUpdateRequest struct {
	Id                     string  `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` // required
	Username               *string `protobuf:"bytes,2,opt,name=username,proto3,oneof" json:"username,omitempty"`
	FullName               *string `protobuf:"bytes,3,opt,name=full_name,json=fullName,proto3,oneof" json:"full_name,omitempty"`
	FirstName              *string `protobuf:"bytes,4,opt,name=first_name,json=firstName,proto3,oneof" json:"first_name,omitempty"`
	LastName               *string `protobuf:"bytes,5,opt,name=last_name,json=lastName,proto3,oneof" json:"last_name,omitempty"`
	Country                *string `protobuf:"bytes,6,opt,name=country,proto3,oneof" json:"country,omitempty"`
	NewsletterNotification *bool   `` /* 134-byte string literal not displayed */
	RoleId                 *int32  `protobuf:"varint,8,opt,name=role_id,json=roleId,proto3,oneof" json:"role_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UserUpdateRequest) Descriptor deprecated

func (*UserUpdateRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserUpdateRequest.ProtoReflect.Descriptor instead.

func (*UserUpdateRequest) GetCountry

func (x *UserUpdateRequest) GetCountry() string

func (*UserUpdateRequest) GetFirstName

func (x *UserUpdateRequest) GetFirstName() string

func (*UserUpdateRequest) GetFullName

func (x *UserUpdateRequest) GetFullName() string

func (*UserUpdateRequest) GetId

func (x *UserUpdateRequest) GetId() string

func (*UserUpdateRequest) GetLastName

func (x *UserUpdateRequest) GetLastName() string

func (*UserUpdateRequest) GetNewsletterNotification

func (x *UserUpdateRequest) GetNewsletterNotification() bool

func (*UserUpdateRequest) GetRoleId

func (x *UserUpdateRequest) GetRoleId() int32

func (*UserUpdateRequest) GetUsername

func (x *UserUpdateRequest) GetUsername() string

func (*UserUpdateRequest) ProtoMessage

func (*UserUpdateRequest) ProtoMessage()

func (*UserUpdateRequest) ProtoReflect

func (x *UserUpdateRequest) ProtoReflect() protoreflect.Message

func (*UserUpdateRequest) Reset

func (x *UserUpdateRequest) Reset()

func (*UserUpdateRequest) String

func (x *UserUpdateRequest) String() string

func (*UserUpdateRequest) Validate

func (this *UserUpdateRequest) Validate() error

type UserUpdateRestrictedRequest

type UserUpdateRestrictedRequest struct {
	Id                     string  `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` // required
	Username               *string `protobuf:"bytes,2,opt,name=username,proto3,oneof" json:"username,omitempty"`
	FullName               *string `protobuf:"bytes,3,opt,name=full_name,json=fullName,proto3,oneof" json:"full_name,omitempty"`
	FirstName              *string `protobuf:"bytes,4,opt,name=first_name,json=firstName,proto3,oneof" json:"first_name,omitempty"`
	LastName               *string `protobuf:"bytes,5,opt,name=last_name,json=lastName,proto3,oneof" json:"last_name,omitempty"`
	Member                 *bool   `protobuf:"varint,6,opt,name=member,proto3,oneof" json:"member,omitempty"`
	RoleId                 *int32  `protobuf:"varint,7,opt,name=role_id,json=roleId,proto3,oneof" json:"role_id,omitempty"`
	TenantId               *int32  `protobuf:"varint,8,opt,name=tenant_id,json=tenantId,proto3,oneof" json:"tenant_id,omitempty"`
	NewsletterNotification *bool   `` /* 134-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*UserUpdateRestrictedRequest) Descriptor deprecated

func (*UserUpdateRestrictedRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserUpdateRestrictedRequest.ProtoReflect.Descriptor instead.

func (*UserUpdateRestrictedRequest) GetFirstName

func (x *UserUpdateRestrictedRequest) GetFirstName() string

func (*UserUpdateRestrictedRequest) GetFullName

func (x *UserUpdateRestrictedRequest) GetFullName() string

func (*UserUpdateRestrictedRequest) GetId

func (*UserUpdateRestrictedRequest) GetLastName

func (x *UserUpdateRestrictedRequest) GetLastName() string

func (*UserUpdateRestrictedRequest) GetMember

func (x *UserUpdateRestrictedRequest) GetMember() bool

func (*UserUpdateRestrictedRequest) GetNewsletterNotification

func (x *UserUpdateRestrictedRequest) GetNewsletterNotification() bool

func (*UserUpdateRestrictedRequest) GetRoleId

func (x *UserUpdateRestrictedRequest) GetRoleId() int32

func (*UserUpdateRestrictedRequest) GetTenantId

func (x *UserUpdateRestrictedRequest) GetTenantId() int32

func (*UserUpdateRestrictedRequest) GetUsername

func (x *UserUpdateRestrictedRequest) GetUsername() string

func (*UserUpdateRestrictedRequest) ProtoMessage

func (*UserUpdateRestrictedRequest) ProtoMessage()

func (*UserUpdateRestrictedRequest) ProtoReflect

func (*UserUpdateRestrictedRequest) Reset

func (x *UserUpdateRestrictedRequest) Reset()

func (*UserUpdateRestrictedRequest) String

func (x *UserUpdateRestrictedRequest) String() string

func (*UserUpdateRestrictedRequest) Validate

func (this *UserUpdateRestrictedRequest) Validate() error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL