user

package
v1.33.0-20230531113704... Latest Latest
Warning

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

Go to latest
Published: unknown License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	VerificationType_name = map[int32]string{
		0: "VERIFICATION_TYPE_UNSPECIFIED",
		1: "VERIFICATION_TYPE_EMAIL",
		2: "VERIFICATION_TYPE_TEXT",
		3: "VERIFICATION_TYPE_RESET_PASSWORD",
		4: "VERIFICATION_TYPE_MAGIC_CODE",
	}
	VerificationType_value = map[string]int32{
		"VERIFICATION_TYPE_UNSPECIFIED":    0,
		"VERIFICATION_TYPE_EMAIL":          1,
		"VERIFICATION_TYPE_TEXT":           2,
		"VERIFICATION_TYPE_RESET_PASSWORD": 3,
		"VERIFICATION_TYPE_MAGIC_CODE":     4,
	}
)

Enum value maps for VerificationType.

View Source
var (
	DeviceInfo_name = map[int32]string{
		0: "DEVICE_INFO_UNSPECIFIED",
		1: "DEVICE_INFO_IOS",
		2: "DEVICE_INFO_MACOS",
		3: "DEVICE_INFO_WINDOWS",
		4: "DEVICE_INFO_WEB",
		5: "DEVICE_INFO_LINUX",
		6: "DEVICE_INFO_ANDROID",
	}
	DeviceInfo_value = map[string]int32{
		"DEVICE_INFO_UNSPECIFIED": 0,
		"DEVICE_INFO_IOS":         1,
		"DEVICE_INFO_MACOS":       2,
		"DEVICE_INFO_WINDOWS":     3,
		"DEVICE_INFO_WEB":         4,
		"DEVICE_INFO_LINUX":       5,
		"DEVICE_INFO_ANDROID":     6,
	}
)

Enum value maps for DeviceInfo.

View Source
var (
	Permissionship_name = map[int32]string{
		0: "PERMISSIONSHIP_UNSPECIFIED",
		1: "PERMISSIONSHIP_NO_PERMISSION",
		2: "PERMISSIONSHIP_HAS_PERMISSION",
		3: "PERMISSIONSHIP_CONDITIONAL_PERMISSION",
	}
	Permissionship_value = map[string]int32{
		"PERMISSIONSHIP_UNSPECIFIED":            0,
		"PERMISSIONSHIP_NO_PERMISSION":          1,
		"PERMISSIONSHIP_HAS_PERMISSION":         2,
		"PERMISSIONSHIP_CONDITIONAL_PERMISSION": 3,
	}
)

Enum value maps for Permissionship.

View Source
var (
	OauthProvider_name = map[int32]string{
		0: "OAUTH_PROVIDER_UNSPECIFIED",
		1: "OAUTH_PROVIDER_GOOGLE",
		2: "OAUTH_PROVIDER_GITHUB",
		3: "OAUTH_PROVIDER_FACEBOOK",
	}
	OauthProvider_value = map[string]int32{
		"OAUTH_PROVIDER_UNSPECIFIED": 0,
		"OAUTH_PROVIDER_GOOGLE":      1,
		"OAUTH_PROVIDER_GITHUB":      2,
		"OAUTH_PROVIDER_FACEBOOK":    3,
	}
)

Enum value maps for OauthProvider.

View Source
var File_nuntio_management_model_user_user_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AuthMethod

type AuthMethod struct {

	// Types that are assignable to Method:
	//
	//	*AuthMethod_LoginType
	//	*AuthMethod_OauthProvider
	Method isAuthMethod_Method `protobuf_oneof:"method"`
	// contains filtered or unexported fields
}

func (*AuthMethod) Descriptor deprecated

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

Deprecated: Use AuthMethod.ProtoReflect.Descriptor instead.

func (*AuthMethod) GetLoginType

func (x *AuthMethod) GetLoginType() auth.LoginType

func (*AuthMethod) GetMethod

func (m *AuthMethod) GetMethod() isAuthMethod_Method

func (*AuthMethod) GetOauthProvider

func (x *AuthMethod) GetOauthProvider() OauthProvider

func (*AuthMethod) ProtoMessage

func (*AuthMethod) ProtoMessage()

func (*AuthMethod) ProtoReflect

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

func (*AuthMethod) Reset

func (x *AuthMethod) Reset()

func (*AuthMethod) String

func (x *AuthMethod) String() string

type AuthMethod_LoginType

type AuthMethod_LoginType struct {
	LoginType auth.LoginType `protobuf:"varint,1,opt,name=login_type,json=loginType,proto3,enum=nuntio.sdk.model.auth.LoginType,oneof"`
}

type AuthMethod_OauthProvider

type AuthMethod_OauthProvider struct {
	OauthProvider OauthProvider `protobuf:"varint,2,opt,name=oauth_provider,json=oauthProvider,proto3,enum=nuntio.management.model.user.OauthProvider,oneof"`
}

type Contact

type Contact struct {
	Id         string                 `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	FromUserId string                 `protobuf:"bytes,2,opt,name=from_user_id,json=fromUserId,proto3" json:"from_user_id,omitempty"`
	ToUserId   string                 `protobuf:"bytes,3,opt,name=to_user_id,json=toUserId,proto3" json:"to_user_id,omitempty"`
	From       *User                  `protobuf:"bytes,4,opt,name=from,proto3" json:"from,omitempty"`
	To         *User                  `protobuf:"bytes,5,opt,name=to,proto3" json:"to,omitempty"`
	Accepted   bool                   `protobuf:"varint,6,opt,name=accepted,proto3" json:"accepted,omitempty"`
	AcceptedAt *timestamppb.Timestamp `protobuf:"bytes,7,opt,name=accepted_at,json=acceptedAt,proto3" json:"accepted_at,omitempty"`
	SentAt     *timestamppb.Timestamp `protobuf:"bytes,8,opt,name=sent_at,json=sentAt,proto3" json:"sent_at,omitempty"`
	// contains filtered or unexported fields
}

func (*Contact) Descriptor deprecated

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

Deprecated: Use Contact.ProtoReflect.Descriptor instead.

func (*Contact) GetAccepted

func (x *Contact) GetAccepted() bool

func (*Contact) GetAcceptedAt

func (x *Contact) GetAcceptedAt() *timestamppb.Timestamp

func (*Contact) GetFrom

func (x *Contact) GetFrom() *User

func (*Contact) GetFromUserId

func (x *Contact) GetFromUserId() string

func (*Contact) GetId

func (x *Contact) GetId() string

func (*Contact) GetSentAt

func (x *Contact) GetSentAt() *timestamppb.Timestamp

func (*Contact) GetTo

func (x *Contact) GetTo() *User

func (*Contact) GetToUserId

func (x *Contact) GetToUserId() string

func (*Contact) ProtoMessage

func (*Contact) ProtoMessage()

func (*Contact) ProtoReflect

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

func (*Contact) Reset

func (x *Contact) Reset()

func (*Contact) String

func (x *Contact) String() string

type DeviceInfo

type DeviceInfo int32
const (
	DeviceInfo_DEVICE_INFO_UNSPECIFIED DeviceInfo = 0
	DeviceInfo_DEVICE_INFO_IOS         DeviceInfo = 1
	DeviceInfo_DEVICE_INFO_MACOS       DeviceInfo = 2
	DeviceInfo_DEVICE_INFO_WINDOWS     DeviceInfo = 3
	DeviceInfo_DEVICE_INFO_WEB         DeviceInfo = 4
	DeviceInfo_DEVICE_INFO_LINUX       DeviceInfo = 5
	DeviceInfo_DEVICE_INFO_ANDROID     DeviceInfo = 6
)

func (DeviceInfo) Descriptor

func (DeviceInfo) Descriptor() protoreflect.EnumDescriptor

func (DeviceInfo) Enum

func (x DeviceInfo) Enum() *DeviceInfo

func (DeviceInfo) EnumDescriptor deprecated

func (DeviceInfo) EnumDescriptor() ([]byte, []int)

Deprecated: Use DeviceInfo.Descriptor instead.

func (DeviceInfo) Number

func (x DeviceInfo) Number() protoreflect.EnumNumber

func (DeviceInfo) String

func (x DeviceInfo) String() string

func (DeviceInfo) Type

type Entry

type Entry struct {
	UserId       *model.UUID            `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Identifier   string                 `protobuf:"bytes,2,opt,name=identifier,proto3" json:"identifier,omitempty"`
	Image        *common.Image          `protobuf:"bytes,3,opt,name=image,proto3" json:"image,omitempty"`
	AvatarColor  common.AvatarColor     `` /* 143-byte string literal not displayed */
	RegisterInfo *RegisterInfo          `protobuf:"bytes,5,opt,name=register_info,json=registerInfo,proto3" json:"register_info,omitempty"`
	Verified     bool                   `protobuf:"varint,6,opt,name=verified,proto3" json:"verified,omitempty"`
	Groups       []*group.Entry         `protobuf:"bytes,7,rep,name=groups,proto3" json:"groups,omitempty"`
	CreatedAt    *timestamppb.Timestamp `protobuf:"bytes,8,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// contains filtered or unexported fields
}

Wrapper entry for returning a collection of users.

func (*Entry) Descriptor deprecated

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

Deprecated: Use Entry.ProtoReflect.Descriptor instead.

func (*Entry) GetAvatarColor

func (x *Entry) GetAvatarColor() common.AvatarColor

func (*Entry) GetCreatedAt

func (x *Entry) GetCreatedAt() *timestamppb.Timestamp

func (*Entry) GetGroups

func (x *Entry) GetGroups() []*group.Entry

func (*Entry) GetIdentifier

func (x *Entry) GetIdentifier() string

func (*Entry) GetImage

func (x *Entry) GetImage() *common.Image

func (*Entry) GetRegisterInfo

func (x *Entry) GetRegisterInfo() *RegisterInfo

func (*Entry) GetUserId

func (x *Entry) GetUserId() *model.UUID

func (*Entry) GetVerified

func (x *Entry) GetVerified() bool

func (*Entry) ProtoMessage

func (*Entry) ProtoMessage()

func (*Entry) ProtoReflect

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

func (*Entry) Reset

func (x *Entry) Reset()

func (*Entry) String

func (x *Entry) String() string

type File

type File struct {
	Name        string                 `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	CreatedAt   *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	Url         string                 `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
	ContentType string                 `protobuf:"bytes,5,opt,name=content_type,json=contentType,proto3" json:"content_type,omitempty"`
	Path        string                 `protobuf:"bytes,6,opt,name=path,proto3" json:"path,omitempty"`
	Duration    *durationpb.Duration   `protobuf:"bytes,7,opt,name=duration,proto3" json:"duration,omitempty"`
	Size        int64                  `protobuf:"varint,8,opt,name=size,proto3" json:"size,omitempty"`
	Data        []byte                 `protobuf:"bytes,9,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*File) Descriptor deprecated

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

Deprecated: Use File.ProtoReflect.Descriptor instead.

func (*File) GetContentType

func (x *File) GetContentType() string

func (*File) GetCreatedAt

func (x *File) GetCreatedAt() *timestamppb.Timestamp

func (*File) GetData

func (x *File) GetData() []byte

func (*File) GetDuration

func (x *File) GetDuration() *durationpb.Duration

func (*File) GetName

func (x *File) GetName() string

func (*File) GetPath

func (x *File) GetPath() string

func (*File) GetSize

func (x *File) GetSize() int64

func (*File) GetUrl

func (x *File) GetUrl() string

func (*File) ProtoMessage

func (*File) ProtoMessage()

func (*File) ProtoReflect

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

func (*File) Reset

func (x *File) Reset()

func (*File) String

func (x *File) String() string

type Folder

type Folder struct {
	Path    string    `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	Files   []*File   `protobuf:"bytes,2,rep,name=files,proto3" json:"files,omitempty"`
	Folders []*Folder `protobuf:"bytes,3,rep,name=folders,proto3" json:"folders,omitempty"`
	Name    string    `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*Folder) Descriptor deprecated

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

Deprecated: Use Folder.ProtoReflect.Descriptor instead.

func (*Folder) GetFiles

func (x *Folder) GetFiles() []*File

func (*Folder) GetFolders

func (x *Folder) GetFolders() []*Folder

func (*Folder) GetName

func (x *Folder) GetName() string

func (*Folder) GetPath

func (x *Folder) GetPath() string

func (*Folder) ProtoMessage

func (*Folder) ProtoMessage()

func (*Folder) ProtoReflect

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

func (*Folder) Reset

func (x *Folder) Reset()

func (*Folder) String

func (x *Folder) String() string

type MemberEntry

type MemberEntry struct {
	User     *Entry                 `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
	JoinedAt *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=joined_at,json=joinedAt,proto3" json:"joined_at,omitempty"`
	// contains filtered or unexported fields
}

func (*MemberEntry) Descriptor deprecated

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

Deprecated: Use MemberEntry.ProtoReflect.Descriptor instead.

func (*MemberEntry) GetJoinedAt

func (x *MemberEntry) GetJoinedAt() *timestamppb.Timestamp

func (*MemberEntry) GetUser

func (x *MemberEntry) GetUser() *Entry

func (*MemberEntry) ProtoMessage

func (*MemberEntry) ProtoMessage()

func (*MemberEntry) ProtoReflect

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

func (*MemberEntry) Reset

func (x *MemberEntry) Reset()

func (*MemberEntry) String

func (x *MemberEntry) String() string
type Oauth2ProviderLink struct {
	Provider  OauthProvider          `protobuf:"varint,1,opt,name=provider,proto3,enum=nuntio.management.model.user.OauthProvider" json:"provider,omitempty"`
	CreatedAt *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	Issuer    string                 `protobuf:"bytes,3,opt,name=issuer,proto3" json:"issuer,omitempty"`
	Subject   string                 `protobuf:"bytes,4,opt,name=subject,proto3" json:"subject,omitempty"`
	// contains filtered or unexported fields
}

func (*Oauth2ProviderLink) Descriptor deprecated

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

Deprecated: Use Oauth2ProviderLink.ProtoReflect.Descriptor instead.

func (*Oauth2ProviderLink) GetCreatedAt

func (x *Oauth2ProviderLink) GetCreatedAt() *timestamppb.Timestamp

func (*Oauth2ProviderLink) GetIssuer

func (x *Oauth2ProviderLink) GetIssuer() string

func (*Oauth2ProviderLink) GetProvider

func (x *Oauth2ProviderLink) GetProvider() OauthProvider

func (*Oauth2ProviderLink) GetSubject

func (x *Oauth2ProviderLink) GetSubject() string

func (*Oauth2ProviderLink) ProtoMessage

func (*Oauth2ProviderLink) ProtoMessage()

func (*Oauth2ProviderLink) ProtoReflect

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

func (*Oauth2ProviderLink) Reset

func (x *Oauth2ProviderLink) Reset()

func (*Oauth2ProviderLink) String

func (x *Oauth2ProviderLink) String() string

type OauthProvider

type OauthProvider int32
const (
	OauthProvider_OAUTH_PROVIDER_UNSPECIFIED OauthProvider = 0
	OauthProvider_OAUTH_PROVIDER_GOOGLE      OauthProvider = 1
	OauthProvider_OAUTH_PROVIDER_GITHUB      OauthProvider = 2
	OauthProvider_OAUTH_PROVIDER_FACEBOOK    OauthProvider = 3
)

func (OauthProvider) Descriptor

func (OauthProvider) Enum

func (x OauthProvider) Enum() *OauthProvider

func (OauthProvider) EnumDescriptor deprecated

func (OauthProvider) EnumDescriptor() ([]byte, []int)

Deprecated: Use OauthProvider.Descriptor instead.

func (OauthProvider) Number

func (OauthProvider) String

func (x OauthProvider) String() string

func (OauthProvider) Type

type OauthProviderSettings

type OauthProviderSettings struct {
	Provider      OauthProvider `protobuf:"varint,1,opt,name=provider,proto3,enum=nuntio.management.model.user.OauthProvider" json:"provider,omitempty"`
	ClientId      string        `protobuf:"bytes,2,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	ClientSecret  string        `protobuf:"bytes,3,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
	ProviderUrl   string        `protobuf:"bytes,4,opt,name=provider_url,json=providerUrl,proto3" json:"provider_url,omitempty"`
	Issuer        string        `protobuf:"bytes,5,opt,name=issuer,proto3" json:"issuer,omitempty"`
	AllowLogin    bool          `protobuf:"varint,6,opt,name=allow_login,json=allowLogin,proto3" json:"allow_login,omitempty"`
	AllowRegister bool          `protobuf:"varint,7,opt,name=allow_register,json=allowRegister,proto3" json:"allow_register,omitempty"`
	// contains filtered or unexported fields
}

func (*OauthProviderSettings) Descriptor deprecated

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

Deprecated: Use OauthProviderSettings.ProtoReflect.Descriptor instead.

func (*OauthProviderSettings) GetAllowLogin

func (x *OauthProviderSettings) GetAllowLogin() bool

func (*OauthProviderSettings) GetAllowRegister

func (x *OauthProviderSettings) GetAllowRegister() bool

func (*OauthProviderSettings) GetClientId

func (x *OauthProviderSettings) GetClientId() string

func (*OauthProviderSettings) GetClientSecret

func (x *OauthProviderSettings) GetClientSecret() string

func (*OauthProviderSettings) GetIssuer

func (x *OauthProviderSettings) GetIssuer() string

func (*OauthProviderSettings) GetProvider

func (x *OauthProviderSettings) GetProvider() OauthProvider

func (*OauthProviderSettings) GetProviderUrl

func (x *OauthProviderSettings) GetProviderUrl() string

func (*OauthProviderSettings) ProtoMessage

func (*OauthProviderSettings) ProtoMessage()

func (*OauthProviderSettings) ProtoReflect

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

func (*OauthProviderSettings) Reset

func (x *OauthProviderSettings) Reset()

func (*OauthProviderSettings) String

func (x *OauthProviderSettings) String() string

type OauthSettings

type OauthSettings struct {
	CallbackUrls []string               `protobuf:"bytes,1,rep,name=callback_urls,json=callbackUrls,proto3" json:"callback_urls,omitempty"`
	Google       *OauthProviderSettings `protobuf:"bytes,2,opt,name=google,proto3" json:"google,omitempty"`
	Github       *OauthProviderSettings `protobuf:"bytes,3,opt,name=github,proto3" json:"github,omitempty"`
	Facebook     *OauthProviderSettings `protobuf:"bytes,4,opt,name=facebook,proto3" json:"facebook,omitempty"`
	// contains filtered or unexported fields
}

func (*OauthSettings) Descriptor deprecated

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

Deprecated: Use OauthSettings.ProtoReflect.Descriptor instead.

func (*OauthSettings) GetCallbackUrls

func (x *OauthSettings) GetCallbackUrls() []string

func (*OauthSettings) GetFacebook

func (x *OauthSettings) GetFacebook() *OauthProviderSettings

func (*OauthSettings) GetGithub

func (x *OauthSettings) GetGithub() *OauthProviderSettings

func (*OauthSettings) GetGoogle

func (x *OauthSettings) GetGoogle() *OauthProviderSettings

func (*OauthSettings) ProtoMessage

func (*OauthSettings) ProtoMessage()

func (*OauthSettings) ProtoReflect

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

func (*OauthSettings) Reset

func (x *OauthSettings) Reset()

func (*OauthSettings) String

func (x *OauthSettings) String() string

type Object

type Object 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"`
	// contains filtered or unexported fields
}

func (*Object) Descriptor deprecated

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

Deprecated: Use Object.ProtoReflect.Descriptor instead.

func (*Object) GetId

func (x *Object) GetId() string

func (*Object) GetType

func (x *Object) GetType() string

func (*Object) ProtoMessage

func (*Object) ProtoMessage()

func (*Object) ProtoReflect

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

func (*Object) Reset

func (x *Object) Reset()

func (*Object) String

func (x *Object) String() string

type Permissionship

type Permissionship int32
const (
	Permissionship_PERMISSIONSHIP_UNSPECIFIED            Permissionship = 0
	Permissionship_PERMISSIONSHIP_NO_PERMISSION          Permissionship = 1
	Permissionship_PERMISSIONSHIP_HAS_PERMISSION         Permissionship = 2
	Permissionship_PERMISSIONSHIP_CONDITIONAL_PERMISSION Permissionship = 3
)

func (Permissionship) Descriptor

func (Permissionship) Enum

func (x Permissionship) Enum() *Permissionship

func (Permissionship) EnumDescriptor deprecated

func (Permissionship) EnumDescriptor() ([]byte, []int)

Deprecated: Use Permissionship.Descriptor instead.

func (Permissionship) Number

func (Permissionship) String

func (x Permissionship) String() string

func (Permissionship) Type

type Profile

type Profile struct {
	ProfileImage      *common.Image      `protobuf:"bytes,1,opt,name=profile_image,json=profileImage,proto3" json:"profile_image,omitempty"`
	AvatarColor       common.AvatarColor `` /* 143-byte string literal not displayed */
	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"`
	PreferredLanguage string             `protobuf:"bytes,5,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
	Country           string             `protobuf:"bytes,6,opt,name=country,proto3" json:"country,omitempty"`
	// contains filtered or unexported fields
}

func (*Profile) Descriptor deprecated

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

Deprecated: Use Profile.ProtoReflect.Descriptor instead.

func (*Profile) GetAvatarColor

func (x *Profile) GetAvatarColor() common.AvatarColor

func (*Profile) GetCountry

func (x *Profile) GetCountry() string

func (*Profile) GetFirstName

func (x *Profile) GetFirstName() string

func (*Profile) GetLastName

func (x *Profile) GetLastName() string

func (*Profile) GetPreferredLanguage

func (x *Profile) GetPreferredLanguage() string

func (*Profile) GetProfileImage

func (x *Profile) GetProfileImage() *common.Image

func (*Profile) ProtoMessage

func (*Profile) ProtoMessage()

func (*Profile) ProtoReflect

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

func (*Profile) Reset

func (x *Profile) Reset()

func (*Profile) String

func (x *Profile) String() string

type RegisterInfo

type RegisterInfo struct {
	CreaterId *model.UUID     `protobuf:"bytes,1,opt,name=creater_id,json=createrId,proto3" json:"creater_id,omitempty"`
	Method    *RegisterMethod `protobuf:"bytes,2,opt,name=method,proto3" json:"method,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterInfo) Descriptor deprecated

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

Deprecated: Use RegisterInfo.ProtoReflect.Descriptor instead.

func (*RegisterInfo) GetCreaterId

func (x *RegisterInfo) GetCreaterId() *model.UUID

func (*RegisterInfo) GetMethod

func (x *RegisterInfo) GetMethod() *RegisterMethod

func (*RegisterInfo) ProtoMessage

func (*RegisterInfo) ProtoMessage()

func (*RegisterInfo) ProtoReflect

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

func (*RegisterInfo) Reset

func (x *RegisterInfo) Reset()

func (*RegisterInfo) String

func (x *RegisterInfo) String() string

type RegisterMethod

type RegisterMethod struct {

	// Types that are assignable to Method:
	//
	//	*RegisterMethod_System_
	//	*RegisterMethod_Signup_
	//	*RegisterMethod_OauthProvider
	Method isRegisterMethod_Method `protobuf_oneof:"method"`
	// contains filtered or unexported fields
}

func (*RegisterMethod) Descriptor deprecated

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

Deprecated: Use RegisterMethod.ProtoReflect.Descriptor instead.

func (*RegisterMethod) GetMethod

func (m *RegisterMethod) GetMethod() isRegisterMethod_Method

func (*RegisterMethod) GetOauthProvider

func (x *RegisterMethod) GetOauthProvider() OauthProvider

func (*RegisterMethod) GetSignup

func (x *RegisterMethod) GetSignup() *RegisterMethod_Signup

func (*RegisterMethod) GetSystem

func (x *RegisterMethod) GetSystem() *RegisterMethod_System

func (*RegisterMethod) ProtoMessage

func (*RegisterMethod) ProtoMessage()

func (*RegisterMethod) ProtoReflect

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

func (*RegisterMethod) Reset

func (x *RegisterMethod) Reset()

func (*RegisterMethod) String

func (x *RegisterMethod) String() string

type RegisterMethod_OauthProvider

type RegisterMethod_OauthProvider struct {
	OauthProvider OauthProvider `protobuf:"varint,3,opt,name=oauth_provider,json=oauthProvider,proto3,enum=nuntio.management.model.user.OauthProvider,oneof"`
}

type RegisterMethod_Signup

type RegisterMethod_Signup struct {
	LoginType auth.LoginType `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*RegisterMethod_Signup) Descriptor deprecated

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

Deprecated: Use RegisterMethod_Signup.ProtoReflect.Descriptor instead.

func (*RegisterMethod_Signup) GetLoginType

func (x *RegisterMethod_Signup) GetLoginType() auth.LoginType

func (*RegisterMethod_Signup) ProtoMessage

func (*RegisterMethod_Signup) ProtoMessage()

func (*RegisterMethod_Signup) ProtoReflect

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

func (*RegisterMethod_Signup) Reset

func (x *RegisterMethod_Signup) Reset()

func (*RegisterMethod_Signup) String

func (x *RegisterMethod_Signup) String() string

type RegisterMethod_Signup_

type RegisterMethod_Signup_ struct {
	Signup *RegisterMethod_Signup `protobuf:"bytes,2,opt,name=signup,proto3,oneof"`
}

type RegisterMethod_System

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

func (*RegisterMethod_System) Descriptor deprecated

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

Deprecated: Use RegisterMethod_System.ProtoReflect.Descriptor instead.

func (*RegisterMethod_System) ProtoMessage

func (*RegisterMethod_System) ProtoMessage()

func (*RegisterMethod_System) ProtoReflect

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

func (*RegisterMethod_System) Reset

func (x *RegisterMethod_System) Reset()

func (*RegisterMethod_System) String

func (x *RegisterMethod_System) String() string

type RegisterMethod_System_

type RegisterMethod_System_ struct {
	System *RegisterMethod_System `protobuf:"bytes,1,opt,name=system,proto3,oneof"`
}

type Session

type Session struct {
	AuthMethod    *AuthMethod            `protobuf:"bytes,1,opt,name=auth_method,json=authMethod,proto3" json:"auth_method,omitempty"`
	IsInvalidated bool                   `protobuf:"varint,2,opt,name=is_invalidated,json=isInvalidated,proto3" json:"is_invalidated,omitempty"`
	CreatedAt     *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	InvalidatedAt *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=invalidated_at,json=invalidatedAt,proto3" json:"invalidated_at,omitempty"`
	ExpiresAt     *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=expires_at,json=expiresAt,proto3" json:"expires_at,omitempty"`
	RenewedAt     *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=renewed_at,json=renewedAt,proto3" json:"renewed_at,omitempty"`
	Country       string                 `protobuf:"bytes,7,opt,name=country,proto3" json:"country,omitempty"`
	PostalCode    int32                  `protobuf:"varint,8,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
	Device        DeviceInfo             `protobuf:"varint,9,opt,name=device,proto3,enum=nuntio.management.model.user.DeviceInfo" json:"device,omitempty"`
	// contains filtered or unexported fields
}

func (*Session) Descriptor deprecated

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

Deprecated: Use Session.ProtoReflect.Descriptor instead.

func (*Session) GetAuthMethod

func (x *Session) GetAuthMethod() *AuthMethod

func (*Session) GetCountry

func (x *Session) GetCountry() string

func (*Session) GetCreatedAt

func (x *Session) GetCreatedAt() *timestamppb.Timestamp

func (*Session) GetDevice

func (x *Session) GetDevice() DeviceInfo

func (*Session) GetExpiresAt

func (x *Session) GetExpiresAt() *timestamppb.Timestamp

func (*Session) GetInvalidatedAt

func (x *Session) GetInvalidatedAt() *timestamppb.Timestamp

func (*Session) GetIsInvalidated

func (x *Session) GetIsInvalidated() bool

func (*Session) GetPostalCode

func (x *Session) GetPostalCode() int32

func (*Session) GetRenewedAt

func (x *Session) GetRenewedAt() *timestamppb.Timestamp

func (*Session) ProtoMessage

func (*Session) ProtoMessage()

func (*Session) ProtoReflect

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

func (*Session) Reset

func (x *Session) Reset()

func (*Session) String

func (x *Session) String() string

type SessionEntry

type SessionEntry struct {
	SessionId *model.UUID `protobuf:"bytes,1,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
	Session   *Session    `protobuf:"bytes,2,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

func (*SessionEntry) Descriptor deprecated

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

Deprecated: Use SessionEntry.ProtoReflect.Descriptor instead.

func (*SessionEntry) GetSession

func (x *SessionEntry) GetSession() *Session

func (*SessionEntry) GetSessionId

func (x *SessionEntry) GetSessionId() *model.UUID

func (*SessionEntry) ProtoMessage

func (*SessionEntry) ProtoMessage()

func (*SessionEntry) ProtoReflect

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

func (*SessionEntry) Reset

func (x *SessionEntry) Reset()

func (*SessionEntry) String

func (x *SessionEntry) String() string

type Settings

type Settings struct {
	AllowRegister           bool                  `protobuf:"varint,1,opt,name=allow_register,json=allowRegister,proto3" json:"allow_register,omitempty"`
	IsVerifiedEmailRequired bool                  `` /* 135-byte string literal not displayed */
	IsVerifiedPhoneRequired bool                  `` /* 135-byte string literal not displayed */
	AccessTokenTtl          *durationpb.Duration  `protobuf:"bytes,4,opt,name=access_token_ttl,json=accessTokenTtl,proto3" json:"access_token_ttl,omitempty"`
	RefreshTokenTtl         *durationpb.Duration  `protobuf:"bytes,5,opt,name=refresh_token_ttl,json=refreshTokenTtl,proto3" json:"refresh_token_ttl,omitempty"`
	VerificationCodeTtl     *durationpb.Duration  `protobuf:"bytes,6,opt,name=verification_code_ttl,json=verificationCodeTtl,proto3" json:"verification_code_ttl,omitempty"`
	PasswordHashing         *common.HashingConfig `protobuf:"bytes,7,opt,name=password_hashing,json=passwordHashing,proto3" json:"password_hashing,omitempty"`
	LoginMechanisms         []auth.LoginType      `` /* 151-byte string literal not displayed */
	OauthSettings           *OauthSettings        `protobuf:"bytes,9,opt,name=oauth_settings,json=oauthSettings,proto3" json:"oauth_settings,omitempty"`
	// contains filtered or unexported fields
}

func (*Settings) Descriptor deprecated

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

Deprecated: Use Settings.ProtoReflect.Descriptor instead.

func (*Settings) GetAccessTokenTtl

func (x *Settings) GetAccessTokenTtl() *durationpb.Duration

func (*Settings) GetAllowRegister

func (x *Settings) GetAllowRegister() bool

func (*Settings) GetIsVerifiedEmailRequired

func (x *Settings) GetIsVerifiedEmailRequired() bool

func (*Settings) GetIsVerifiedPhoneRequired

func (x *Settings) GetIsVerifiedPhoneRequired() bool

func (*Settings) GetLoginMechanisms

func (x *Settings) GetLoginMechanisms() []auth.LoginType

func (*Settings) GetOauthSettings

func (x *Settings) GetOauthSettings() *OauthSettings

func (*Settings) GetPasswordHashing

func (x *Settings) GetPasswordHashing() *common.HashingConfig

func (*Settings) GetRefreshTokenTtl

func (x *Settings) GetRefreshTokenTtl() *durationpb.Duration

func (*Settings) GetVerificationCodeTtl

func (x *Settings) GetVerificationCodeTtl() *durationpb.Duration

func (*Settings) ProtoMessage

func (*Settings) ProtoMessage()

func (*Settings) ProtoReflect

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

func (*Settings) Reset

func (x *Settings) Reset()

func (*Settings) String

func (x *Settings) String() string

type Update

type Update struct {

	// Types that are assignable to Field:
	//
	//	*Update_Email
	//	*Update_Username
	//	*Update_PhoneNumber
	//	*Update_Password
	//	*Update_Profile
	//	*Update_IsEmailVerified
	//	*Update_IsPhoneVerified
	//	*Update_ResetRessions_
	//	*Update_SetMetadata
	//	*Update_DeleteMetadataKey
	//	*Update_AvatarColor
	Field isUpdate_Field `protobuf_oneof:"field"`
	// contains filtered or unexported fields
}

func (*Update) Descriptor deprecated

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

Deprecated: Use Update.ProtoReflect.Descriptor instead.

func (*Update) GetAvatarColor

func (x *Update) GetAvatarColor() common.AvatarColor

func (*Update) GetDeleteMetadataKey

func (x *Update) GetDeleteMetadataKey() string

func (*Update) GetEmail

func (x *Update) GetEmail() string

func (*Update) GetField

func (m *Update) GetField() isUpdate_Field

func (*Update) GetIsEmailVerified

func (x *Update) GetIsEmailVerified() bool

func (*Update) GetIsPhoneVerified

func (x *Update) GetIsPhoneVerified() bool

func (*Update) GetPassword

func (x *Update) GetPassword() string

func (*Update) GetPhoneNumber

func (x *Update) GetPhoneNumber() string

func (*Update) GetProfile

func (x *Update) GetProfile() *Profile

func (*Update) GetResetRessions

func (x *Update) GetResetRessions() *Update_ResetRessions

func (*Update) GetSetMetadata

func (x *Update) GetSetMetadata() *model.Metadata

func (*Update) GetUsername

func (x *Update) GetUsername() string

func (*Update) ProtoMessage

func (*Update) ProtoMessage()

func (*Update) ProtoReflect

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

func (*Update) Reset

func (x *Update) Reset()

func (*Update) String

func (x *Update) String() string

type Update_AvatarColor

type Update_AvatarColor struct {
	AvatarColor common.AvatarColor `protobuf:"varint,11,opt,name=avatar_color,json=avatarColor,proto3,enum=nuntio.management.model.common.AvatarColor,oneof"`
}

type Update_DeleteMetadataKey

type Update_DeleteMetadataKey struct {
	DeleteMetadataKey string `protobuf:"bytes,10,opt,name=delete_metadata_key,json=deleteMetadataKey,proto3,oneof"`
}

type Update_Email

type Update_Email struct {
	Email string `protobuf:"bytes,1,opt,name=email,proto3,oneof"`
}

type Update_IsEmailVerified

type Update_IsEmailVerified struct {
	IsEmailVerified bool `protobuf:"varint,6,opt,name=is_email_verified,json=isEmailVerified,proto3,oneof"`
}

type Update_IsPhoneVerified

type Update_IsPhoneVerified struct {
	IsPhoneVerified bool `protobuf:"varint,7,opt,name=is_phone_verified,json=isPhoneVerified,proto3,oneof"`
}

type Update_Password

type Update_Password struct {
	Password string `protobuf:"bytes,4,opt,name=password,proto3,oneof"`
}

type Update_PhoneNumber

type Update_PhoneNumber struct {
	PhoneNumber string `protobuf:"bytes,3,opt,name=phone_number,json=phoneNumber,proto3,oneof"`
}

type Update_Profile

type Update_Profile struct {
	Profile *Profile `protobuf:"bytes,5,opt,name=profile,proto3,oneof"`
}

type Update_ResetRessions

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

func (*Update_ResetRessions) Descriptor deprecated

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

Deprecated: Use Update_ResetRessions.ProtoReflect.Descriptor instead.

func (*Update_ResetRessions) ProtoMessage

func (*Update_ResetRessions) ProtoMessage()

func (*Update_ResetRessions) ProtoReflect

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

func (*Update_ResetRessions) Reset

func (x *Update_ResetRessions) Reset()

func (*Update_ResetRessions) String

func (x *Update_ResetRessions) String() string

type Update_ResetRessions_

type Update_ResetRessions_ struct {
	ResetRessions *Update_ResetRessions `protobuf:"bytes,8,opt,name=reset_ressions,json=resetRessions,proto3,oneof"`
}

type Update_SetMetadata

type Update_SetMetadata struct {
	SetMetadata *model.Metadata `protobuf:"bytes,9,opt,name=set_metadata,json=setMetadata,proto3,oneof"`
}

type Update_Username

type Update_Username struct {
	Username string `protobuf:"bytes,2,opt,name=username,proto3,oneof"`
}

type User

type User struct {
	UserInfo         *auth.UserInfo         `protobuf:"bytes,1,opt,name=user_info,json=userInfo,proto3" json:"user_info,omitempty"`
	Profile          *Profile               `protobuf:"bytes,2,opt,name=profile,proto3" json:"profile,omitempty"`
	UpdatedAt        *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	RegisterInfo     *RegisterInfo          `protobuf:"bytes,4,opt,name=register_info,json=registerInfo,proto3" json:"register_info,omitempty"`
	IsPhoneVerified  bool                   `protobuf:"varint,5,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
	IsEmailVerified  bool                   `protobuf:"varint,6,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
	NewSessionsSince *timestamppb.Timestamp `protobuf:"bytes,7,opt,name=new_sessions_since,json=newSessionsSince,proto3" json:"new_sessions_since,omitempty"`
	Metadata         map[string][]byte      `` /* 157-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*User) Descriptor deprecated

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

Deprecated: Use User.ProtoReflect.Descriptor instead.

func (*User) GetIsEmailVerified

func (x *User) GetIsEmailVerified() bool

func (*User) GetIsPhoneVerified

func (x *User) GetIsPhoneVerified() bool

func (*User) GetMetadata

func (x *User) GetMetadata() map[string][]byte

func (*User) GetNewSessionsSince

func (x *User) GetNewSessionsSince() *timestamppb.Timestamp

func (*User) GetProfile

func (x *User) GetProfile() *Profile

func (*User) GetRegisterInfo

func (x *User) GetRegisterInfo() *RegisterInfo

func (*User) GetUpdatedAt

func (x *User) GetUpdatedAt() *timestamppb.Timestamp

func (*User) GetUserInfo

func (x *User) GetUserInfo() *auth.UserInfo

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

type VerificationCode

type VerificationCode struct {
	Code        *common.HashingInstance `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
	SentAt      *timestamppb.Timestamp  `protobuf:"bytes,2,opt,name=sent_at,json=sentAt,proto3" json:"sent_at,omitempty"`
	ExpiresAt   *timestamppb.Timestamp  `protobuf:"bytes,3,opt,name=expires_at,json=expiresAt,proto3" json:"expires_at,omitempty"`
	Attempts    int32                   `protobuf:"varint,4,opt,name=attempts,proto3" json:"attempts,omitempty"`
	LastAttempt *timestamppb.Timestamp  `protobuf:"bytes,5,opt,name=last_attempt,json=lastAttempt,proto3" json:"last_attempt,omitempty"`
	Type        VerificationType        `protobuf:"varint,6,opt,name=type,proto3,enum=nuntio.management.model.user.VerificationType" json:"type,omitempty"`
	UserId      *model.UUID             `protobuf:"bytes,7,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*VerificationCode) Descriptor deprecated

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

Deprecated: Use VerificationCode.ProtoReflect.Descriptor instead.

func (*VerificationCode) GetAttempts

func (x *VerificationCode) GetAttempts() int32

func (*VerificationCode) GetCode

func (x *VerificationCode) GetCode() *common.HashingInstance

func (*VerificationCode) GetExpiresAt

func (x *VerificationCode) GetExpiresAt() *timestamppb.Timestamp

func (*VerificationCode) GetLastAttempt

func (x *VerificationCode) GetLastAttempt() *timestamppb.Timestamp

func (*VerificationCode) GetSentAt

func (x *VerificationCode) GetSentAt() *timestamppb.Timestamp

func (*VerificationCode) GetType

func (x *VerificationCode) GetType() VerificationType

func (*VerificationCode) GetUserId

func (x *VerificationCode) GetUserId() *model.UUID

func (*VerificationCode) ProtoMessage

func (*VerificationCode) ProtoMessage()

func (*VerificationCode) ProtoReflect

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

func (*VerificationCode) Reset

func (x *VerificationCode) Reset()

func (*VerificationCode) String

func (x *VerificationCode) String() string

type VerificationType

type VerificationType int32
const (
	VerificationType_VERIFICATION_TYPE_UNSPECIFIED    VerificationType = 0
	VerificationType_VERIFICATION_TYPE_EMAIL          VerificationType = 1
	VerificationType_VERIFICATION_TYPE_TEXT           VerificationType = 2
	VerificationType_VERIFICATION_TYPE_RESET_PASSWORD VerificationType = 3
	VerificationType_VERIFICATION_TYPE_MAGIC_CODE     VerificationType = 4
)

func (VerificationType) Descriptor

func (VerificationType) Enum

func (VerificationType) EnumDescriptor deprecated

func (VerificationType) EnumDescriptor() ([]byte, []int)

Deprecated: Use VerificationType.Descriptor instead.

func (VerificationType) Number

func (VerificationType) String

func (x VerificationType) String() string

func (VerificationType) Type

Jump to

Keyboard shortcuts

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