profile

package
v0.0.0-...-769d54b Latest Latest
Warning

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

Go to latest
Published: May 29, 2023 License: AGPL-3.0 Imports: 21 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	UserStatus_name = map[int32]string{
		0: "USER_STATUS_UNSPECIFIED",
		1: "USER_STATUS_ACTIVE",
		2: "USER_STATUS_DEACTIVATED",
	}
	UserStatus_value = map[string]int32{
		"USER_STATUS_UNSPECIFIED": 0,
		"USER_STATUS_ACTIVE":      1,
		"USER_STATUS_DEACTIVATED": 2,
	}
)

Enum value maps for UserStatus.

View Source
var (
	PageDir_name = map[int32]string{
		0: "Asc",
		1: "Desc",
	}
	PageDir_value = map[string]int32{
		"Asc":  0,
		"Desc": 1,
	}
)

Enum value maps for PageDir.

View Source
var File_api_profile_profile_proto protoreflect.FileDescriptor
View Source
var ProfileAPI_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "profile_api.v1.ProfileAPI",
	HandlerType: (*ProfileAPIServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "CreateUser",
			Handler:    _ProfileAPI_CreateUser_Handler,
		},
		{
			MethodName: "GetUser",
			Handler:    _ProfileAPI_GetUser_Handler,
		},
		{
			MethodName: "GetUserByUsername",
			Handler:    _ProfileAPI_GetUserByUsername_Handler,
		},
		{
			MethodName: "GetUsers",
			Handler:    _ProfileAPI_GetUsers_Handler,
		},
		{
			MethodName: "Update",
			Handler:    _ProfileAPI_Update_Handler,
		},
		{
			MethodName: "SetFollowStatus",
			Handler:    _ProfileAPI_SetFollowStatus_Handler,
		},
		{
			MethodName: "SetBlockStatus",
			Handler:    _ProfileAPI_SetBlockStatus_Handler,
		},
		{
			MethodName: "GetFollowers",
			Handler:    _ProfileAPI_GetFollowers_Handler,
		},
		{
			MethodName: "GetBlocked",
			Handler:    _ProfileAPI_GetBlocked_Handler,
		},
		{
			MethodName: "SearchForUser",
			Handler:    _ProfileAPI_SearchForUser_Handler,
		},
		{
			MethodName: "ChangeAvatar",
			Handler:    _ProfileAPI_ChangeAvatar_Handler,
		},
		{
			MethodName: "UpdatePrivacySettings",
			Handler:    _ProfileAPI_UpdatePrivacySettings_Handler,
		},
		{
			MethodName: "GetPrivacySettings",
			Handler:    _ProfileAPI_GetPrivacySettings_Handler,
		},
		{
			MethodName: "DeactivateMe",
			Handler:    _ProfileAPI_DeactivateMe_Handler,
		},
		{
			MethodName: "DeleteAccount",
			Handler:    _ProfileAPI_DeleteAccount_Handler,
		},
		{
			MethodName: "UpdateUserPreferredLanugages",
			Handler:    _ProfileAPI_UpdateUserPreferredLanugages_Handler,
		},
		{
			MethodName: "SetBanStatus",
			Handler:    _ProfileAPI_SetBanStatus_Handler,
		},
		{
			MethodName: "CheckUsername",
			Handler:    _ProfileAPI_CheckUsername_Handler,
		},
		{
			MethodName: "GlitterBomb",
			Handler:    _ProfileAPI_GlitterBomb_Handler,
		},
		{
			MethodName: "GetPublicProfileWithoutAuth",
			Handler:    _ProfileAPI_GetPublicProfileWithoutAuth_Handler,
		},
		{
			MethodName: "Verify",
			Handler:    _ProfileAPI_Verify_Handler,
		},
		{
			MethodName: "Unverify",
			Handler:    _ProfileAPI_Unverify_Handler,
		},
		{
			MethodName: "GetVerifiedUsers",
			Handler:    _ProfileAPI_GetVerifiedUsers_Handler,
		},
		{
			MethodName: "MigrationCreateUser",
			Handler:    _ProfileAPI_MigrationCreateUser_Handler,
		},
		{
			MethodName: "MigrationFollow",
			Handler:    _ProfileAPI_MigrationFollow_Handler,
		},
		{
			MethodName: "MigrationBlock",
			Handler:    _ProfileAPI_MigrationBlock_Handler,
		},
		{
			MethodName: "MigrateDataV1ToV2",
			Handler:    _ProfileAPI_MigrateDataV1ToV2_Handler,
		},
		{
			MethodName: "CanSendDM",
			Handler:    _ProfileAPI_CanSendDM_Handler,
		},
		{
			MethodName: "GetBlockList",
			Handler:    _ProfileAPI_GetBlockList_Handler,
		},
		{
			MethodName: "DeleteTestUser",
			Handler:    _ProfileAPI_DeleteTestUser_Handler,
		},
		{
			MethodName: "GetUserCounter",
			Handler:    _ProfileAPI_GetUserCounter_Handler,
		},
		{
			MethodName: "GetUserIDs",
			Handler:    _ProfileAPI_GetUserIDs_Handler,
		},
		{
			MethodName: "GetStatistics",
			Handler:    _ProfileAPI_GetStatistics_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "api/profile/profile.proto",
}

ProfileAPI_ServiceDesc is the grpc.ServiceDesc for ProfileAPI service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

Functions

func RegisterProfileAPIServer

func RegisterProfileAPIServer(s grpc.ServiceRegistrar, srv ProfileAPIServer)

Types

type CanSendDMRequest

type CanSendDMRequest struct {
	SenderUserId   string `protobuf:"bytes,1,opt,name=sender_user_id,json=senderUserId,proto3" json:"sender_user_id,omitempty"`
	ReceiverUserId string `protobuf:"bytes,2,opt,name=receiver_user_id,json=receiverUserId,proto3" json:"receiver_user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CanSendDMRequest) Descriptor deprecated

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

Deprecated: Use CanSendDMRequest.ProtoReflect.Descriptor instead.

func (*CanSendDMRequest) GetReceiverUserId

func (x *CanSendDMRequest) GetReceiverUserId() string

func (*CanSendDMRequest) GetSenderUserId

func (x *CanSendDMRequest) GetSenderUserId() string

func (*CanSendDMRequest) ProtoMessage

func (*CanSendDMRequest) ProtoMessage()

func (*CanSendDMRequest) ProtoReflect

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

func (*CanSendDMRequest) Reset

func (x *CanSendDMRequest) Reset()

func (*CanSendDMRequest) String

func (x *CanSendDMRequest) String() string

func (*CanSendDMRequest) Validate

func (m *CanSendDMRequest) Validate() error

Validate checks the field values on CanSendDMRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CanSendDMRequest) ValidateAll

func (m *CanSendDMRequest) ValidateAll() error

ValidateAll checks the field values on CanSendDMRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CanSendDMRequestMultiError, or nil if none found.

type CanSendDMRequestMultiError

type CanSendDMRequestMultiError []error

CanSendDMRequestMultiError is an error wrapping multiple validation errors returned by CanSendDMRequest.ValidateAll() if the designated constraints aren't met.

func (CanSendDMRequestMultiError) AllErrors

func (m CanSendDMRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CanSendDMRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type CanSendDMRequestValidationError

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

CanSendDMRequestValidationError is the validation error returned by CanSendDMRequest.Validate if the designated constraints aren't met.

func (CanSendDMRequestValidationError) Cause

Cause function returns cause value.

func (CanSendDMRequestValidationError) Error

Error satisfies the builtin error interface

func (CanSendDMRequestValidationError) ErrorName

ErrorName returns error name.

func (CanSendDMRequestValidationError) Field

Field function returns field value.

func (CanSendDMRequestValidationError) Key

Key function returns key value.

func (CanSendDMRequestValidationError) Reason

Reason function returns reason value.

type CanSendDMResponse

type CanSendDMResponse struct {
	CanSendDm bool `protobuf:"varint,1,opt,name=can_send_dm,json=canSendDm,proto3" json:"can_send_dm,omitempty"`
	// contains filtered or unexported fields
}

func (*CanSendDMResponse) Descriptor deprecated

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

Deprecated: Use CanSendDMResponse.ProtoReflect.Descriptor instead.

func (*CanSendDMResponse) GetCanSendDm

func (x *CanSendDMResponse) GetCanSendDm() bool

func (*CanSendDMResponse) ProtoMessage

func (*CanSendDMResponse) ProtoMessage()

func (*CanSendDMResponse) ProtoReflect

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

func (*CanSendDMResponse) Reset

func (x *CanSendDMResponse) Reset()

func (*CanSendDMResponse) String

func (x *CanSendDMResponse) String() string

func (*CanSendDMResponse) Validate

func (m *CanSendDMResponse) Validate() error

Validate checks the field values on CanSendDMResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CanSendDMResponse) ValidateAll

func (m *CanSendDMResponse) ValidateAll() error

ValidateAll checks the field values on CanSendDMResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CanSendDMResponseMultiError, or nil if none found.

type CanSendDMResponseMultiError

type CanSendDMResponseMultiError []error

CanSendDMResponseMultiError is an error wrapping multiple validation errors returned by CanSendDMResponse.ValidateAll() if the designated constraints aren't met.

func (CanSendDMResponseMultiError) AllErrors

func (m CanSendDMResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CanSendDMResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type CanSendDMResponseValidationError

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

CanSendDMResponseValidationError is the validation error returned by CanSendDMResponse.Validate if the designated constraints aren't met.

func (CanSendDMResponseValidationError) Cause

Cause function returns cause value.

func (CanSendDMResponseValidationError) Error

Error satisfies the builtin error interface

func (CanSendDMResponseValidationError) ErrorName

ErrorName returns error name.

func (CanSendDMResponseValidationError) Field

Field function returns field value.

func (CanSendDMResponseValidationError) Key

Key function returns key value.

func (CanSendDMResponseValidationError) Reason

Reason function returns reason value.

type ChangeAvatarRequest

type ChangeAvatarRequest struct {

	// string url = 1 [(validate.rules).string.uri = true];
	Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangeAvatarRequest) Descriptor deprecated

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

Deprecated: Use ChangeAvatarRequest.ProtoReflect.Descriptor instead.

func (*ChangeAvatarRequest) GetUrl

func (x *ChangeAvatarRequest) GetUrl() string

func (*ChangeAvatarRequest) ProtoMessage

func (*ChangeAvatarRequest) ProtoMessage()

func (*ChangeAvatarRequest) ProtoReflect

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

func (*ChangeAvatarRequest) Reset

func (x *ChangeAvatarRequest) Reset()

func (*ChangeAvatarRequest) String

func (x *ChangeAvatarRequest) String() string

func (*ChangeAvatarRequest) Validate

func (m *ChangeAvatarRequest) Validate() error

Validate checks the field values on ChangeAvatarRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ChangeAvatarRequest) ValidateAll

func (m *ChangeAvatarRequest) ValidateAll() error

ValidateAll checks the field values on ChangeAvatarRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ChangeAvatarRequestMultiError, or nil if none found.

type ChangeAvatarRequestMultiError

type ChangeAvatarRequestMultiError []error

ChangeAvatarRequestMultiError is an error wrapping multiple validation errors returned by ChangeAvatarRequest.ValidateAll() if the designated constraints aren't met.

func (ChangeAvatarRequestMultiError) AllErrors

func (m ChangeAvatarRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeAvatarRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ChangeAvatarRequestValidationError

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

ChangeAvatarRequestValidationError is the validation error returned by ChangeAvatarRequest.Validate if the designated constraints aren't met.

func (ChangeAvatarRequestValidationError) Cause

Cause function returns cause value.

func (ChangeAvatarRequestValidationError) Error

Error satisfies the builtin error interface

func (ChangeAvatarRequestValidationError) ErrorName

ErrorName returns error name.

func (ChangeAvatarRequestValidationError) Field

Field function returns field value.

func (ChangeAvatarRequestValidationError) Key

Key function returns key value.

func (ChangeAvatarRequestValidationError) Reason

Reason function returns reason value.

type CheckUsernameRequest

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

func (*CheckUsernameRequest) Descriptor deprecated

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

Deprecated: Use CheckUsernameRequest.ProtoReflect.Descriptor instead.

func (*CheckUsernameRequest) GetUsername

func (x *CheckUsernameRequest) GetUsername() string

func (*CheckUsernameRequest) ProtoMessage

func (*CheckUsernameRequest) ProtoMessage()

func (*CheckUsernameRequest) ProtoReflect

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

func (*CheckUsernameRequest) Reset

func (x *CheckUsernameRequest) Reset()

func (*CheckUsernameRequest) String

func (x *CheckUsernameRequest) String() string

func (*CheckUsernameRequest) Validate

func (m *CheckUsernameRequest) Validate() error

Validate checks the field values on CheckUsernameRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CheckUsernameRequest) ValidateAll

func (m *CheckUsernameRequest) ValidateAll() error

ValidateAll checks the field values on CheckUsernameRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CheckUsernameRequestMultiError, or nil if none found.

type CheckUsernameRequestMultiError

type CheckUsernameRequestMultiError []error

CheckUsernameRequestMultiError is an error wrapping multiple validation errors returned by CheckUsernameRequest.ValidateAll() if the designated constraints aren't met.

func (CheckUsernameRequestMultiError) AllErrors

func (m CheckUsernameRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CheckUsernameRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type CheckUsernameRequestValidationError

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

CheckUsernameRequestValidationError is the validation error returned by CheckUsernameRequest.Validate if the designated constraints aren't met.

func (CheckUsernameRequestValidationError) Cause

Cause function returns cause value.

func (CheckUsernameRequestValidationError) Error

Error satisfies the builtin error interface

func (CheckUsernameRequestValidationError) ErrorName

ErrorName returns error name.

func (CheckUsernameRequestValidationError) Field

Field function returns field value.

func (CheckUsernameRequestValidationError) Key

Key function returns key value.

func (CheckUsernameRequestValidationError) Reason

Reason function returns reason value.

type CheckUsernameResponse

type CheckUsernameResponse struct {
	Available bool `protobuf:"varint,1,opt,name=available,proto3" json:"available,omitempty"`
	// contains filtered or unexported fields
}

func (*CheckUsernameResponse) Descriptor deprecated

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

Deprecated: Use CheckUsernameResponse.ProtoReflect.Descriptor instead.

func (*CheckUsernameResponse) GetAvailable

func (x *CheckUsernameResponse) GetAvailable() bool

func (*CheckUsernameResponse) ProtoMessage

func (*CheckUsernameResponse) ProtoMessage()

func (*CheckUsernameResponse) ProtoReflect

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

func (*CheckUsernameResponse) Reset

func (x *CheckUsernameResponse) Reset()

func (*CheckUsernameResponse) String

func (x *CheckUsernameResponse) String() string

func (*CheckUsernameResponse) Validate

func (m *CheckUsernameResponse) Validate() error

Validate checks the field values on CheckUsernameResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CheckUsernameResponse) ValidateAll

func (m *CheckUsernameResponse) ValidateAll() error

ValidateAll checks the field values on CheckUsernameResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CheckUsernameResponseMultiError, or nil if none found.

type CheckUsernameResponseMultiError

type CheckUsernameResponseMultiError []error

CheckUsernameResponseMultiError is an error wrapping multiple validation errors returned by CheckUsernameResponse.ValidateAll() if the designated constraints aren't met.

func (CheckUsernameResponseMultiError) AllErrors

func (m CheckUsernameResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CheckUsernameResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type CheckUsernameResponseValidationError

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

CheckUsernameResponseValidationError is the validation error returned by CheckUsernameResponse.Validate if the designated constraints aren't met.

func (CheckUsernameResponseValidationError) Cause

Cause function returns cause value.

func (CheckUsernameResponseValidationError) Error

Error satisfies the builtin error interface

func (CheckUsernameResponseValidationError) ErrorName

ErrorName returns error name.

func (CheckUsernameResponseValidationError) Field

Field function returns field value.

func (CheckUsernameResponseValidationError) Key

Key function returns key value.

func (CheckUsernameResponseValidationError) Reason

Reason function returns reason value.

type CreateUserRequest

type CreateUserRequest struct {
	Input *UserInput `protobuf:"bytes,1,opt,name=input,proto3" json:"input,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateUserRequest) Descriptor deprecated

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

Deprecated: Use CreateUserRequest.ProtoReflect.Descriptor instead.

func (*CreateUserRequest) GetInput

func (x *CreateUserRequest) GetInput() *UserInput

func (*CreateUserRequest) ProtoMessage

func (*CreateUserRequest) ProtoMessage()

func (*CreateUserRequest) ProtoReflect

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

func (*CreateUserRequest) Reset

func (x *CreateUserRequest) Reset()

func (*CreateUserRequest) String

func (x *CreateUserRequest) String() string

func (*CreateUserRequest) Validate

func (m *CreateUserRequest) Validate() error

Validate checks the field values on CreateUserRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateUserRequest) ValidateAll

func (m *CreateUserRequest) ValidateAll() error

ValidateAll checks the field values on CreateUserRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateUserRequestMultiError, or nil if none found.

type CreateUserRequestMultiError

type CreateUserRequestMultiError []error

CreateUserRequestMultiError is an error wrapping multiple validation errors returned by CreateUserRequest.ValidateAll() if the designated constraints aren't met.

func (CreateUserRequestMultiError) AllErrors

func (m CreateUserRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateUserRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type CreateUserRequestValidationError

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

CreateUserRequestValidationError is the validation error returned by CreateUserRequest.Validate if the designated constraints aren't met.

func (CreateUserRequestValidationError) Cause

Cause function returns cause value.

func (CreateUserRequestValidationError) Error

Error satisfies the builtin error interface

func (CreateUserRequestValidationError) ErrorName

ErrorName returns error name.

func (CreateUserRequestValidationError) Field

Field function returns field value.

func (CreateUserRequestValidationError) Key

Key function returns key value.

func (CreateUserRequestValidationError) Reason

Reason function returns reason value.

type CreateUserResponse

type CreateUserResponse struct {
	User *User `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateUserResponse) Descriptor deprecated

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

Deprecated: Use CreateUserResponse.ProtoReflect.Descriptor instead.

func (*CreateUserResponse) GetUser

func (x *CreateUserResponse) GetUser() *User

func (*CreateUserResponse) ProtoMessage

func (*CreateUserResponse) ProtoMessage()

func (*CreateUserResponse) ProtoReflect

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

func (*CreateUserResponse) Reset

func (x *CreateUserResponse) Reset()

func (*CreateUserResponse) String

func (x *CreateUserResponse) String() string

func (*CreateUserResponse) Validate

func (m *CreateUserResponse) Validate() error

Validate checks the field values on CreateUserResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CreateUserResponse) ValidateAll

func (m *CreateUserResponse) ValidateAll() error

ValidateAll checks the field values on CreateUserResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateUserResponseMultiError, or nil if none found.

type CreateUserResponseMultiError

type CreateUserResponseMultiError []error

CreateUserResponseMultiError is an error wrapping multiple validation errors returned by CreateUserResponse.ValidateAll() if the designated constraints aren't met.

func (CreateUserResponseMultiError) AllErrors

func (m CreateUserResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateUserResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type CreateUserResponseValidationError

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

CreateUserResponseValidationError is the validation error returned by CreateUserResponse.Validate if the designated constraints aren't met.

func (CreateUserResponseValidationError) Cause

Cause function returns cause value.

func (CreateUserResponseValidationError) Error

Error satisfies the builtin error interface

func (CreateUserResponseValidationError) ErrorName

ErrorName returns error name.

func (CreateUserResponseValidationError) Field

Field function returns field value.

func (CreateUserResponseValidationError) Key

Key function returns key value.

func (CreateUserResponseValidationError) Reason

Reason function returns reason value.

type DeactivateMeRequest

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

func (*DeactivateMeRequest) Descriptor deprecated

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

Deprecated: Use DeactivateMeRequest.ProtoReflect.Descriptor instead.

func (*DeactivateMeRequest) GetReason

func (x *DeactivateMeRequest) GetReason() string

func (*DeactivateMeRequest) ProtoMessage

func (*DeactivateMeRequest) ProtoMessage()

func (*DeactivateMeRequest) ProtoReflect

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

func (*DeactivateMeRequest) Reset

func (x *DeactivateMeRequest) Reset()

func (*DeactivateMeRequest) String

func (x *DeactivateMeRequest) String() string

func (*DeactivateMeRequest) Validate

func (m *DeactivateMeRequest) Validate() error

Validate checks the field values on DeactivateMeRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeactivateMeRequest) ValidateAll

func (m *DeactivateMeRequest) ValidateAll() error

ValidateAll checks the field values on DeactivateMeRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeactivateMeRequestMultiError, or nil if none found.

type DeactivateMeRequestMultiError

type DeactivateMeRequestMultiError []error

DeactivateMeRequestMultiError is an error wrapping multiple validation errors returned by DeactivateMeRequest.ValidateAll() if the designated constraints aren't met.

func (DeactivateMeRequestMultiError) AllErrors

func (m DeactivateMeRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeactivateMeRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type DeactivateMeRequestValidationError

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

DeactivateMeRequestValidationError is the validation error returned by DeactivateMeRequest.Validate if the designated constraints aren't met.

func (DeactivateMeRequestValidationError) Cause

Cause function returns cause value.

func (DeactivateMeRequestValidationError) Error

Error satisfies the builtin error interface

func (DeactivateMeRequestValidationError) ErrorName

ErrorName returns error name.

func (DeactivateMeRequestValidationError) Field

Field function returns field value.

func (DeactivateMeRequestValidationError) Key

Key function returns key value.

func (DeactivateMeRequestValidationError) Reason

Reason function returns reason value.

type DeactivateMeResponse

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

func (*DeactivateMeResponse) Descriptor deprecated

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

Deprecated: Use DeactivateMeResponse.ProtoReflect.Descriptor instead.

func (*DeactivateMeResponse) ProtoMessage

func (*DeactivateMeResponse) ProtoMessage()

func (*DeactivateMeResponse) ProtoReflect

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

func (*DeactivateMeResponse) Reset

func (x *DeactivateMeResponse) Reset()

func (*DeactivateMeResponse) String

func (x *DeactivateMeResponse) String() string

func (*DeactivateMeResponse) Validate

func (m *DeactivateMeResponse) Validate() error

Validate checks the field values on DeactivateMeResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeactivateMeResponse) ValidateAll

func (m *DeactivateMeResponse) ValidateAll() error

ValidateAll checks the field values on DeactivateMeResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeactivateMeResponseMultiError, or nil if none found.

type DeactivateMeResponseMultiError

type DeactivateMeResponseMultiError []error

DeactivateMeResponseMultiError is an error wrapping multiple validation errors returned by DeactivateMeResponse.ValidateAll() if the designated constraints aren't met.

func (DeactivateMeResponseMultiError) AllErrors

func (m DeactivateMeResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeactivateMeResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type DeactivateMeResponseValidationError

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

DeactivateMeResponseValidationError is the validation error returned by DeactivateMeResponse.Validate if the designated constraints aren't met.

func (DeactivateMeResponseValidationError) Cause

Cause function returns cause value.

func (DeactivateMeResponseValidationError) Error

Error satisfies the builtin error interface

func (DeactivateMeResponseValidationError) ErrorName

ErrorName returns error name.

func (DeactivateMeResponseValidationError) Field

Field function returns field value.

func (DeactivateMeResponseValidationError) Key

Key function returns key value.

func (DeactivateMeResponseValidationError) Reason

Reason function returns reason value.

type DeleteAccountRequest

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

func (*DeleteAccountRequest) Descriptor deprecated

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

Deprecated: Use DeleteAccountRequest.ProtoReflect.Descriptor instead.

func (*DeleteAccountRequest) GetReason

func (x *DeleteAccountRequest) GetReason() string

func (*DeleteAccountRequest) ProtoMessage

func (*DeleteAccountRequest) ProtoMessage()

func (*DeleteAccountRequest) ProtoReflect

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

func (*DeleteAccountRequest) Reset

func (x *DeleteAccountRequest) Reset()

func (*DeleteAccountRequest) String

func (x *DeleteAccountRequest) String() string

func (*DeleteAccountRequest) Validate

func (m *DeleteAccountRequest) Validate() error

Validate checks the field values on DeleteAccountRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteAccountRequest) ValidateAll

func (m *DeleteAccountRequest) ValidateAll() error

ValidateAll checks the field values on DeleteAccountRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteAccountRequestMultiError, or nil if none found.

type DeleteAccountRequestMultiError

type DeleteAccountRequestMultiError []error

DeleteAccountRequestMultiError is an error wrapping multiple validation errors returned by DeleteAccountRequest.ValidateAll() if the designated constraints aren't met.

func (DeleteAccountRequestMultiError) AllErrors

func (m DeleteAccountRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteAccountRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type DeleteAccountRequestValidationError

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

DeleteAccountRequestValidationError is the validation error returned by DeleteAccountRequest.Validate if the designated constraints aren't met.

func (DeleteAccountRequestValidationError) Cause

Cause function returns cause value.

func (DeleteAccountRequestValidationError) Error

Error satisfies the builtin error interface

func (DeleteAccountRequestValidationError) ErrorName

ErrorName returns error name.

func (DeleteAccountRequestValidationError) Field

Field function returns field value.

func (DeleteAccountRequestValidationError) Key

Key function returns key value.

func (DeleteAccountRequestValidationError) Reason

Reason function returns reason value.

type DeleteTestUserRequest

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

func (*DeleteTestUserRequest) Descriptor deprecated

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

Deprecated: Use DeleteTestUserRequest.ProtoReflect.Descriptor instead.

func (*DeleteTestUserRequest) GetUsername

func (x *DeleteTestUserRequest) GetUsername() string

func (*DeleteTestUserRequest) ProtoMessage

func (*DeleteTestUserRequest) ProtoMessage()

func (*DeleteTestUserRequest) ProtoReflect

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

func (*DeleteTestUserRequest) Reset

func (x *DeleteTestUserRequest) Reset()

func (*DeleteTestUserRequest) String

func (x *DeleteTestUserRequest) String() string

func (*DeleteTestUserRequest) Validate

func (m *DeleteTestUserRequest) Validate() error

Validate checks the field values on DeleteTestUserRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteTestUserRequest) ValidateAll

func (m *DeleteTestUserRequest) ValidateAll() error

ValidateAll checks the field values on DeleteTestUserRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteTestUserRequestMultiError, or nil if none found.

type DeleteTestUserRequestMultiError

type DeleteTestUserRequestMultiError []error

DeleteTestUserRequestMultiError is an error wrapping multiple validation errors returned by DeleteTestUserRequest.ValidateAll() if the designated constraints aren't met.

func (DeleteTestUserRequestMultiError) AllErrors

func (m DeleteTestUserRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteTestUserRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type DeleteTestUserRequestValidationError

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

DeleteTestUserRequestValidationError is the validation error returned by DeleteTestUserRequest.Validate if the designated constraints aren't met.

func (DeleteTestUserRequestValidationError) Cause

Cause function returns cause value.

func (DeleteTestUserRequestValidationError) Error

Error satisfies the builtin error interface

func (DeleteTestUserRequestValidationError) ErrorName

ErrorName returns error name.

func (DeleteTestUserRequestValidationError) Field

Field function returns field value.

func (DeleteTestUserRequestValidationError) Key

Key function returns key value.

func (DeleteTestUserRequestValidationError) Reason

Reason function returns reason value.

type DeleteTestUserResponse

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

func (*DeleteTestUserResponse) Descriptor deprecated

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

Deprecated: Use DeleteTestUserResponse.ProtoReflect.Descriptor instead.

func (*DeleteTestUserResponse) GetId

func (x *DeleteTestUserResponse) GetId() string

func (*DeleteTestUserResponse) ProtoMessage

func (*DeleteTestUserResponse) ProtoMessage()

func (*DeleteTestUserResponse) ProtoReflect

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

func (*DeleteTestUserResponse) Reset

func (x *DeleteTestUserResponse) Reset()

func (*DeleteTestUserResponse) String

func (x *DeleteTestUserResponse) String() string

func (*DeleteTestUserResponse) Validate

func (m *DeleteTestUserResponse) Validate() error

Validate checks the field values on DeleteTestUserResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteTestUserResponse) ValidateAll

func (m *DeleteTestUserResponse) ValidateAll() error

ValidateAll checks the field values on DeleteTestUserResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteTestUserResponseMultiError, or nil if none found.

type DeleteTestUserResponseMultiError

type DeleteTestUserResponseMultiError []error

DeleteTestUserResponseMultiError is an error wrapping multiple validation errors returned by DeleteTestUserResponse.ValidateAll() if the designated constraints aren't met.

func (DeleteTestUserResponseMultiError) AllErrors

func (m DeleteTestUserResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteTestUserResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type DeleteTestUserResponseValidationError

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

DeleteTestUserResponseValidationError is the validation error returned by DeleteTestUserResponse.Validate if the designated constraints aren't met.

func (DeleteTestUserResponseValidationError) Cause

Cause function returns cause value.

func (DeleteTestUserResponseValidationError) Error

Error satisfies the builtin error interface

func (DeleteTestUserResponseValidationError) ErrorName

ErrorName returns error name.

func (DeleteTestUserResponseValidationError) Field

Field function returns field value.

func (DeleteTestUserResponseValidationError) Key

Key function returns key value.

func (DeleteTestUserResponseValidationError) Reason

Reason function returns reason value.

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 (m *Empty) Validate() error

Validate checks the field values on Empty with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Empty) ValidateAll

func (m *Empty) ValidateAll() error

ValidateAll checks the field values on Empty with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in EmptyMultiError, or nil if none found.

type EmptyMultiError

type EmptyMultiError []error

EmptyMultiError is an error wrapping multiple validation errors returned by Empty.ValidateAll() if the designated constraints aren't met.

func (EmptyMultiError) AllErrors

func (m EmptyMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EmptyMultiError) Error

func (m EmptyMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type EmptyValidationError

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

EmptyValidationError is the validation error returned by Empty.Validate if the designated constraints aren't met.

func (EmptyValidationError) Cause

func (e EmptyValidationError) Cause() error

Cause function returns cause value.

func (EmptyValidationError) Error

func (e EmptyValidationError) Error() string

Error satisfies the builtin error interface

func (EmptyValidationError) ErrorName

func (e EmptyValidationError) ErrorName() string

ErrorName returns error name.

func (EmptyValidationError) Field

func (e EmptyValidationError) Field() string

Field function returns field value.

func (EmptyValidationError) Key

func (e EmptyValidationError) Key() bool

Key function returns key value.

func (EmptyValidationError) Reason

func (e EmptyValidationError) Reason() string

Reason function returns reason value.

type GetBlockListRequest

type GetBlockListRequest struct {
	UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBlockListRequest) Descriptor deprecated

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

Deprecated: Use GetBlockListRequest.ProtoReflect.Descriptor instead.

func (*GetBlockListRequest) GetUserId

func (x *GetBlockListRequest) GetUserId() string

func (*GetBlockListRequest) ProtoMessage

func (*GetBlockListRequest) ProtoMessage()

func (*GetBlockListRequest) ProtoReflect

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

func (*GetBlockListRequest) Reset

func (x *GetBlockListRequest) Reset()

func (*GetBlockListRequest) String

func (x *GetBlockListRequest) String() string

func (*GetBlockListRequest) Validate

func (m *GetBlockListRequest) Validate() error

Validate checks the field values on GetBlockListRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetBlockListRequest) ValidateAll

func (m *GetBlockListRequest) ValidateAll() error

ValidateAll checks the field values on GetBlockListRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetBlockListRequestMultiError, or nil if none found.

type GetBlockListRequestMultiError

type GetBlockListRequestMultiError []error

GetBlockListRequestMultiError is an error wrapping multiple validation errors returned by GetBlockListRequest.ValidateAll() if the designated constraints aren't met.

func (GetBlockListRequestMultiError) AllErrors

func (m GetBlockListRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetBlockListRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetBlockListRequestValidationError

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

GetBlockListRequestValidationError is the validation error returned by GetBlockListRequest.Validate if the designated constraints aren't met.

func (GetBlockListRequestValidationError) Cause

Cause function returns cause value.

func (GetBlockListRequestValidationError) Error

Error satisfies the builtin error interface

func (GetBlockListRequestValidationError) ErrorName

ErrorName returns error name.

func (GetBlockListRequestValidationError) Field

Field function returns field value.

func (GetBlockListRequestValidationError) Key

Key function returns key value.

func (GetBlockListRequestValidationError) Reason

Reason function returns reason value.

type GetBlockListResponse

type GetBlockListResponse struct {
	UserIds []string `protobuf:"bytes,1,rep,name=user_ids,json=userIds,proto3" json:"user_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBlockListResponse) Descriptor deprecated

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

Deprecated: Use GetBlockListResponse.ProtoReflect.Descriptor instead.

func (*GetBlockListResponse) GetUserIds

func (x *GetBlockListResponse) GetUserIds() []string

func (*GetBlockListResponse) ProtoMessage

func (*GetBlockListResponse) ProtoMessage()

func (*GetBlockListResponse) ProtoReflect

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

func (*GetBlockListResponse) Reset

func (x *GetBlockListResponse) Reset()

func (*GetBlockListResponse) String

func (x *GetBlockListResponse) String() string

func (*GetBlockListResponse) Validate

func (m *GetBlockListResponse) Validate() error

Validate checks the field values on GetBlockListResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetBlockListResponse) ValidateAll

func (m *GetBlockListResponse) ValidateAll() error

ValidateAll checks the field values on GetBlockListResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetBlockListResponseMultiError, or nil if none found.

type GetBlockListResponseMultiError

type GetBlockListResponseMultiError []error

GetBlockListResponseMultiError is an error wrapping multiple validation errors returned by GetBlockListResponse.ValidateAll() if the designated constraints aren't met.

func (GetBlockListResponseMultiError) AllErrors

func (m GetBlockListResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetBlockListResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetBlockListResponseValidationError

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

GetBlockListResponseValidationError is the validation error returned by GetBlockListResponse.Validate if the designated constraints aren't met.

func (GetBlockListResponseValidationError) Cause

Cause function returns cause value.

func (GetBlockListResponseValidationError) Error

Error satisfies the builtin error interface

func (GetBlockListResponseValidationError) ErrorName

ErrorName returns error name.

func (GetBlockListResponseValidationError) Field

Field function returns field value.

func (GetBlockListResponseValidationError) Key

Key function returns key value.

func (GetBlockListResponseValidationError) Reason

Reason function returns reason value.

type GetBlockedRequest

type GetBlockedRequest struct {
	Cursor *PageCursor `protobuf:"bytes,1,opt,name=cursor,proto3" json:"cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBlockedRequest) Descriptor deprecated

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

Deprecated: Use GetBlockedRequest.ProtoReflect.Descriptor instead.

func (*GetBlockedRequest) GetCursor

func (x *GetBlockedRequest) GetCursor() *PageCursor

func (*GetBlockedRequest) ProtoMessage

func (*GetBlockedRequest) ProtoMessage()

func (*GetBlockedRequest) ProtoReflect

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

func (*GetBlockedRequest) Reset

func (x *GetBlockedRequest) Reset()

func (*GetBlockedRequest) String

func (x *GetBlockedRequest) String() string

func (*GetBlockedRequest) Validate

func (m *GetBlockedRequest) Validate() error

Validate checks the field values on GetBlockedRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetBlockedRequest) ValidateAll

func (m *GetBlockedRequest) ValidateAll() error

ValidateAll checks the field values on GetBlockedRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetBlockedRequestMultiError, or nil if none found.

type GetBlockedRequestMultiError

type GetBlockedRequestMultiError []error

GetBlockedRequestMultiError is an error wrapping multiple validation errors returned by GetBlockedRequest.ValidateAll() if the designated constraints aren't met.

func (GetBlockedRequestMultiError) AllErrors

func (m GetBlockedRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetBlockedRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetBlockedRequestValidationError

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

GetBlockedRequestValidationError is the validation error returned by GetBlockedRequest.Validate if the designated constraints aren't met.

func (GetBlockedRequestValidationError) Cause

Cause function returns cause value.

func (GetBlockedRequestValidationError) Error

Error satisfies the builtin error interface

func (GetBlockedRequestValidationError) ErrorName

ErrorName returns error name.

func (GetBlockedRequestValidationError) Field

Field function returns field value.

func (GetBlockedRequestValidationError) Key

Key function returns key value.

func (GetBlockedRequestValidationError) Reason

Reason function returns reason value.

type GetBlockedResponse

type GetBlockedResponse struct {
	Users    []*UserExcerpt `protobuf:"bytes,1,rep,name=users,proto3" json:"users,omitempty"`
	PageInfo *PageInfo      `protobuf:"bytes,2,opt,name=page_info,json=pageInfo,proto3" json:"page_info,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBlockedResponse) Descriptor deprecated

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

Deprecated: Use GetBlockedResponse.ProtoReflect.Descriptor instead.

func (*GetBlockedResponse) GetPageInfo

func (x *GetBlockedResponse) GetPageInfo() *PageInfo

func (*GetBlockedResponse) GetUsers

func (x *GetBlockedResponse) GetUsers() []*UserExcerpt

func (*GetBlockedResponse) ProtoMessage

func (*GetBlockedResponse) ProtoMessage()

func (*GetBlockedResponse) ProtoReflect

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

func (*GetBlockedResponse) Reset

func (x *GetBlockedResponse) Reset()

func (*GetBlockedResponse) String

func (x *GetBlockedResponse) String() string

func (*GetBlockedResponse) Validate

func (m *GetBlockedResponse) Validate() error

Validate checks the field values on GetBlockedResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetBlockedResponse) ValidateAll

func (m *GetBlockedResponse) ValidateAll() error

ValidateAll checks the field values on GetBlockedResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetBlockedResponseMultiError, or nil if none found.

type GetBlockedResponseMultiError

type GetBlockedResponseMultiError []error

GetBlockedResponseMultiError is an error wrapping multiple validation errors returned by GetBlockedResponse.ValidateAll() if the designated constraints aren't met.

func (GetBlockedResponseMultiError) AllErrors

func (m GetBlockedResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetBlockedResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetBlockedResponseValidationError

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

GetBlockedResponseValidationError is the validation error returned by GetBlockedResponse.Validate if the designated constraints aren't met.

func (GetBlockedResponseValidationError) Cause

Cause function returns cause value.

func (GetBlockedResponseValidationError) Error

Error satisfies the builtin error interface

func (GetBlockedResponseValidationError) ErrorName

ErrorName returns error name.

func (GetBlockedResponseValidationError) Field

Field function returns field value.

func (GetBlockedResponseValidationError) Key

Key function returns key value.

func (GetBlockedResponseValidationError) Reason

Reason function returns reason value.

type GetFollowersRequest

type GetFollowersRequest struct {
	UserId   string      `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
	Username *string     `protobuf:"bytes,2,opt,name=username,proto3,oneof" json:"username,omitempty"`
	Cursor   *PageCursor `protobuf:"bytes,3,opt,name=cursor,proto3" json:"cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFollowersRequest) Descriptor deprecated

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

Deprecated: Use GetFollowersRequest.ProtoReflect.Descriptor instead.

func (*GetFollowersRequest) GetCursor

func (x *GetFollowersRequest) GetCursor() *PageCursor

func (*GetFollowersRequest) GetUserId

func (x *GetFollowersRequest) GetUserId() string

func (*GetFollowersRequest) GetUsername

func (x *GetFollowersRequest) GetUsername() string

func (*GetFollowersRequest) ProtoMessage

func (*GetFollowersRequest) ProtoMessage()

func (*GetFollowersRequest) ProtoReflect

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

func (*GetFollowersRequest) Reset

func (x *GetFollowersRequest) Reset()

func (*GetFollowersRequest) String

func (x *GetFollowersRequest) String() string

func (*GetFollowersRequest) Validate

func (m *GetFollowersRequest) Validate() error

Validate checks the field values on GetFollowersRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetFollowersRequest) ValidateAll

func (m *GetFollowersRequest) ValidateAll() error

ValidateAll checks the field values on GetFollowersRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetFollowersRequestMultiError, or nil if none found.

type GetFollowersRequestMultiError

type GetFollowersRequestMultiError []error

GetFollowersRequestMultiError is an error wrapping multiple validation errors returned by GetFollowersRequest.ValidateAll() if the designated constraints aren't met.

func (GetFollowersRequestMultiError) AllErrors

func (m GetFollowersRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetFollowersRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetFollowersRequestValidationError

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

GetFollowersRequestValidationError is the validation error returned by GetFollowersRequest.Validate if the designated constraints aren't met.

func (GetFollowersRequestValidationError) Cause

Cause function returns cause value.

func (GetFollowersRequestValidationError) Error

Error satisfies the builtin error interface

func (GetFollowersRequestValidationError) ErrorName

ErrorName returns error name.

func (GetFollowersRequestValidationError) Field

Field function returns field value.

func (GetFollowersRequestValidationError) Key

Key function returns key value.

func (GetFollowersRequestValidationError) Reason

Reason function returns reason value.

type GetFollowersResponse

type GetFollowersResponse struct {
	Users    []*UserExcerpt `protobuf:"bytes,1,rep,name=users,proto3" json:"users,omitempty"`
	PageInfo *PageInfo      `protobuf:"bytes,2,opt,name=page_info,json=pageInfo,proto3" json:"page_info,omitempty"`
	// contains filtered or unexported fields
}

func (*GetFollowersResponse) Descriptor deprecated

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

Deprecated: Use GetFollowersResponse.ProtoReflect.Descriptor instead.

func (*GetFollowersResponse) GetPageInfo

func (x *GetFollowersResponse) GetPageInfo() *PageInfo

func (*GetFollowersResponse) GetUsers

func (x *GetFollowersResponse) GetUsers() []*UserExcerpt

func (*GetFollowersResponse) ProtoMessage

func (*GetFollowersResponse) ProtoMessage()

func (*GetFollowersResponse) ProtoReflect

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

func (*GetFollowersResponse) Reset

func (x *GetFollowersResponse) Reset()

func (*GetFollowersResponse) String

func (x *GetFollowersResponse) String() string

func (*GetFollowersResponse) Validate

func (m *GetFollowersResponse) Validate() error

Validate checks the field values on GetFollowersResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetFollowersResponse) ValidateAll

func (m *GetFollowersResponse) ValidateAll() error

ValidateAll checks the field values on GetFollowersResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetFollowersResponseMultiError, or nil if none found.

type GetFollowersResponseMultiError

type GetFollowersResponseMultiError []error

GetFollowersResponseMultiError is an error wrapping multiple validation errors returned by GetFollowersResponse.ValidateAll() if the designated constraints aren't met.

func (GetFollowersResponseMultiError) AllErrors

func (m GetFollowersResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetFollowersResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetFollowersResponseValidationError

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

GetFollowersResponseValidationError is the validation error returned by GetFollowersResponse.Validate if the designated constraints aren't met.

func (GetFollowersResponseValidationError) Cause

Cause function returns cause value.

func (GetFollowersResponseValidationError) Error

Error satisfies the builtin error interface

func (GetFollowersResponseValidationError) ErrorName

ErrorName returns error name.

func (GetFollowersResponseValidationError) Field

Field function returns field value.

func (GetFollowersResponseValidationError) Key

Key function returns key value.

func (GetFollowersResponseValidationError) Reason

Reason function returns reason value.

type GetPrivacySettingsResponse

type GetPrivacySettingsResponse struct {
	OnlyDmFromFollowed bool `protobuf:"varint,1,opt,name=only_dm_from_followed,json=onlyDmFromFollowed,proto3" json:"only_dm_from_followed,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPrivacySettingsResponse) Descriptor deprecated

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

Deprecated: Use GetPrivacySettingsResponse.ProtoReflect.Descriptor instead.

func (*GetPrivacySettingsResponse) GetOnlyDmFromFollowed

func (x *GetPrivacySettingsResponse) GetOnlyDmFromFollowed() bool

func (*GetPrivacySettingsResponse) ProtoMessage

func (*GetPrivacySettingsResponse) ProtoMessage()

func (*GetPrivacySettingsResponse) ProtoReflect

func (*GetPrivacySettingsResponse) Reset

func (x *GetPrivacySettingsResponse) Reset()

func (*GetPrivacySettingsResponse) String

func (x *GetPrivacySettingsResponse) String() string

func (*GetPrivacySettingsResponse) Validate

func (m *GetPrivacySettingsResponse) Validate() error

Validate checks the field values on GetPrivacySettingsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetPrivacySettingsResponse) ValidateAll

func (m *GetPrivacySettingsResponse) ValidateAll() error

ValidateAll checks the field values on GetPrivacySettingsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetPrivacySettingsResponseMultiError, or nil if none found.

type GetPrivacySettingsResponseMultiError

type GetPrivacySettingsResponseMultiError []error

GetPrivacySettingsResponseMultiError is an error wrapping multiple validation errors returned by GetPrivacySettingsResponse.ValidateAll() if the designated constraints aren't met.

func (GetPrivacySettingsResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GetPrivacySettingsResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetPrivacySettingsResponseValidationError

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

GetPrivacySettingsResponseValidationError is the validation error returned by GetPrivacySettingsResponse.Validate if the designated constraints aren't met.

func (GetPrivacySettingsResponseValidationError) Cause

Cause function returns cause value.

func (GetPrivacySettingsResponseValidationError) Error

Error satisfies the builtin error interface

func (GetPrivacySettingsResponseValidationError) ErrorName

ErrorName returns error name.

func (GetPrivacySettingsResponseValidationError) Field

Field function returns field value.

func (GetPrivacySettingsResponseValidationError) Key

Key function returns key value.

func (GetPrivacySettingsResponseValidationError) Reason

Reason function returns reason value.

type GetPublicProfileWithoutAuthRequest

type GetPublicProfileWithoutAuthRequest struct {
	UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPublicProfileWithoutAuthRequest) Descriptor deprecated

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

Deprecated: Use GetPublicProfileWithoutAuthRequest.ProtoReflect.Descriptor instead.

func (*GetPublicProfileWithoutAuthRequest) GetUserId

func (*GetPublicProfileWithoutAuthRequest) ProtoMessage

func (*GetPublicProfileWithoutAuthRequest) ProtoMessage()

func (*GetPublicProfileWithoutAuthRequest) ProtoReflect

func (*GetPublicProfileWithoutAuthRequest) Reset

func (*GetPublicProfileWithoutAuthRequest) String

func (*GetPublicProfileWithoutAuthRequest) Validate

Validate checks the field values on GetPublicProfileWithoutAuthRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetPublicProfileWithoutAuthRequest) ValidateAll

func (m *GetPublicProfileWithoutAuthRequest) ValidateAll() error

ValidateAll checks the field values on GetPublicProfileWithoutAuthRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetPublicProfileWithoutAuthRequestMultiError, or nil if none found.

type GetPublicProfileWithoutAuthRequestMultiError

type GetPublicProfileWithoutAuthRequestMultiError []error

GetPublicProfileWithoutAuthRequestMultiError is an error wrapping multiple validation errors returned by GetPublicProfileWithoutAuthRequest.ValidateAll() if the designated constraints aren't met.

func (GetPublicProfileWithoutAuthRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GetPublicProfileWithoutAuthRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetPublicProfileWithoutAuthRequestValidationError

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

GetPublicProfileWithoutAuthRequestValidationError is the validation error returned by GetPublicProfileWithoutAuthRequest.Validate if the designated constraints aren't met.

func (GetPublicProfileWithoutAuthRequestValidationError) Cause

Cause function returns cause value.

func (GetPublicProfileWithoutAuthRequestValidationError) Error

Error satisfies the builtin error interface

func (GetPublicProfileWithoutAuthRequestValidationError) ErrorName

ErrorName returns error name.

func (GetPublicProfileWithoutAuthRequestValidationError) Field

Field function returns field value.

func (GetPublicProfileWithoutAuthRequestValidationError) Key

Key function returns key value.

func (GetPublicProfileWithoutAuthRequestValidationError) Reason

Reason function returns reason value.

type GetPublicProfileWithoutAuthResponse

type GetPublicProfileWithoutAuthResponse struct {
	UserId       string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Username     string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
	FullName     string `protobuf:"bytes,3,opt,name=full_name,json=fullName,proto3" json:"full_name,omitempty"`
	Bio          string `protobuf:"bytes,4,opt,name=bio,proto3" json:"bio,omitempty"`
	Followers    int64  `protobuf:"varint,5,opt,name=followers,proto3" json:"followers,omitempty"`
	IsVerified   bool   `protobuf:"varint,6,opt,name=is_verified,json=isVerified,proto3" json:"is_verified,omitempty"`
	ProfileImage string `protobuf:"bytes,7,opt,name=profile_image,json=profileImage,proto3" json:"profile_image,omitempty"`
	ShareLink    string `protobuf:"bytes,8,opt,name=share_link,json=shareLink,proto3" json:"share_link,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPublicProfileWithoutAuthResponse) Descriptor deprecated

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

Deprecated: Use GetPublicProfileWithoutAuthResponse.ProtoReflect.Descriptor instead.

func (*GetPublicProfileWithoutAuthResponse) GetBio

func (*GetPublicProfileWithoutAuthResponse) GetFollowers

func (x *GetPublicProfileWithoutAuthResponse) GetFollowers() int64

func (*GetPublicProfileWithoutAuthResponse) GetFullName

func (*GetPublicProfileWithoutAuthResponse) GetIsVerified

func (x *GetPublicProfileWithoutAuthResponse) GetIsVerified() bool

func (*GetPublicProfileWithoutAuthResponse) GetProfileImage

func (x *GetPublicProfileWithoutAuthResponse) GetProfileImage() string
func (x *GetPublicProfileWithoutAuthResponse) GetShareLink() string

func (*GetPublicProfileWithoutAuthResponse) GetUserId

func (*GetPublicProfileWithoutAuthResponse) GetUsername

func (*GetPublicProfileWithoutAuthResponse) ProtoMessage

func (*GetPublicProfileWithoutAuthResponse) ProtoMessage()

func (*GetPublicProfileWithoutAuthResponse) ProtoReflect

func (*GetPublicProfileWithoutAuthResponse) Reset

func (*GetPublicProfileWithoutAuthResponse) String

func (*GetPublicProfileWithoutAuthResponse) Validate

Validate checks the field values on GetPublicProfileWithoutAuthResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetPublicProfileWithoutAuthResponse) ValidateAll

func (m *GetPublicProfileWithoutAuthResponse) ValidateAll() error

ValidateAll checks the field values on GetPublicProfileWithoutAuthResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetPublicProfileWithoutAuthResponseMultiError, or nil if none found.

type GetPublicProfileWithoutAuthResponseMultiError

type GetPublicProfileWithoutAuthResponseMultiError []error

GetPublicProfileWithoutAuthResponseMultiError is an error wrapping multiple validation errors returned by GetPublicProfileWithoutAuthResponse.ValidateAll() if the designated constraints aren't met.

func (GetPublicProfileWithoutAuthResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GetPublicProfileWithoutAuthResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetPublicProfileWithoutAuthResponseValidationError

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

GetPublicProfileWithoutAuthResponseValidationError is the validation error returned by GetPublicProfileWithoutAuthResponse.Validate if the designated constraints aren't met.

func (GetPublicProfileWithoutAuthResponseValidationError) Cause

Cause function returns cause value.

func (GetPublicProfileWithoutAuthResponseValidationError) Error

Error satisfies the builtin error interface

func (GetPublicProfileWithoutAuthResponseValidationError) ErrorName

ErrorName returns error name.

func (GetPublicProfileWithoutAuthResponseValidationError) Field

Field function returns field value.

func (GetPublicProfileWithoutAuthResponseValidationError) Key

Key function returns key value.

func (GetPublicProfileWithoutAuthResponseValidationError) Reason

Reason function returns reason value.

type GetStatisticsRequest

type GetStatisticsRequest struct {
	CreatedBefore *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=created_before,json=createdBefore,proto3,oneof" json:"created_before,omitempty"`
	// contains filtered or unexported fields
}

func (*GetStatisticsRequest) Descriptor deprecated

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

Deprecated: Use GetStatisticsRequest.ProtoReflect.Descriptor instead.

func (*GetStatisticsRequest) GetCreatedBefore

func (x *GetStatisticsRequest) GetCreatedBefore() *timestamppb.Timestamp

func (*GetStatisticsRequest) ProtoMessage

func (*GetStatisticsRequest) ProtoMessage()

func (*GetStatisticsRequest) ProtoReflect

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

func (*GetStatisticsRequest) Reset

func (x *GetStatisticsRequest) Reset()

func (*GetStatisticsRequest) String

func (x *GetStatisticsRequest) String() string

func (*GetStatisticsRequest) Validate

func (m *GetStatisticsRequest) Validate() error

Validate checks the field values on GetStatisticsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetStatisticsRequest) ValidateAll

func (m *GetStatisticsRequest) ValidateAll() error

ValidateAll checks the field values on GetStatisticsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetStatisticsRequestMultiError, or nil if none found.

type GetStatisticsRequestMultiError

type GetStatisticsRequestMultiError []error

GetStatisticsRequestMultiError is an error wrapping multiple validation errors returned by GetStatisticsRequest.ValidateAll() if the designated constraints aren't met.

func (GetStatisticsRequestMultiError) AllErrors

func (m GetStatisticsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetStatisticsRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetStatisticsRequestValidationError

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

GetStatisticsRequestValidationError is the validation error returned by GetStatisticsRequest.Validate if the designated constraints aren't met.

func (GetStatisticsRequestValidationError) Cause

Cause function returns cause value.

func (GetStatisticsRequestValidationError) Error

Error satisfies the builtin error interface

func (GetStatisticsRequestValidationError) ErrorName

ErrorName returns error name.

func (GetStatisticsRequestValidationError) Field

Field function returns field value.

func (GetStatisticsRequestValidationError) Key

Key function returns key value.

func (GetStatisticsRequestValidationError) Reason

Reason function returns reason value.

type GetStatisticsResponse

type GetStatisticsResponse struct {
	UserCount int64 `protobuf:"varint,1,opt,name=user_count,json=userCount,proto3" json:"user_count,omitempty"`
	// contains filtered or unexported fields
}

func (*GetStatisticsResponse) Descriptor deprecated

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

Deprecated: Use GetStatisticsResponse.ProtoReflect.Descriptor instead.

func (*GetStatisticsResponse) GetUserCount

func (x *GetStatisticsResponse) GetUserCount() int64

func (*GetStatisticsResponse) ProtoMessage

func (*GetStatisticsResponse) ProtoMessage()

func (*GetStatisticsResponse) ProtoReflect

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

func (*GetStatisticsResponse) Reset

func (x *GetStatisticsResponse) Reset()

func (*GetStatisticsResponse) String

func (x *GetStatisticsResponse) String() string

func (*GetStatisticsResponse) Validate

func (m *GetStatisticsResponse) Validate() error

Validate checks the field values on GetStatisticsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetStatisticsResponse) ValidateAll

func (m *GetStatisticsResponse) ValidateAll() error

ValidateAll checks the field values on GetStatisticsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetStatisticsResponseMultiError, or nil if none found.

type GetStatisticsResponseMultiError

type GetStatisticsResponseMultiError []error

GetStatisticsResponseMultiError is an error wrapping multiple validation errors returned by GetStatisticsResponse.ValidateAll() if the designated constraints aren't met.

func (GetStatisticsResponseMultiError) AllErrors

func (m GetStatisticsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetStatisticsResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetStatisticsResponseValidationError

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

GetStatisticsResponseValidationError is the validation error returned by GetStatisticsResponse.Validate if the designated constraints aren't met.

func (GetStatisticsResponseValidationError) Cause

Cause function returns cause value.

func (GetStatisticsResponseValidationError) Error

Error satisfies the builtin error interface

func (GetStatisticsResponseValidationError) ErrorName

ErrorName returns error name.

func (GetStatisticsResponseValidationError) Field

Field function returns field value.

func (GetStatisticsResponseValidationError) Key

Key function returns key value.

func (GetStatisticsResponseValidationError) Reason

Reason function returns reason value.

type GetUserByUsernameRequest

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

func (*GetUserByUsernameRequest) Descriptor deprecated

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

Deprecated: Use GetUserByUsernameRequest.ProtoReflect.Descriptor instead.

func (*GetUserByUsernameRequest) GetUsername

func (x *GetUserByUsernameRequest) GetUsername() string

func (*GetUserByUsernameRequest) ProtoMessage

func (*GetUserByUsernameRequest) ProtoMessage()

func (*GetUserByUsernameRequest) ProtoReflect

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

func (*GetUserByUsernameRequest) Reset

func (x *GetUserByUsernameRequest) Reset()

func (*GetUserByUsernameRequest) String

func (x *GetUserByUsernameRequest) String() string

func (*GetUserByUsernameRequest) Validate

func (m *GetUserByUsernameRequest) Validate() error

Validate checks the field values on GetUserByUsernameRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetUserByUsernameRequest) ValidateAll

func (m *GetUserByUsernameRequest) ValidateAll() error

ValidateAll checks the field values on GetUserByUsernameRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetUserByUsernameRequestMultiError, or nil if none found.

type GetUserByUsernameRequestMultiError

type GetUserByUsernameRequestMultiError []error

GetUserByUsernameRequestMultiError is an error wrapping multiple validation errors returned by GetUserByUsernameRequest.ValidateAll() if the designated constraints aren't met.

func (GetUserByUsernameRequestMultiError) AllErrors

func (m GetUserByUsernameRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetUserByUsernameRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetUserByUsernameRequestValidationError

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

GetUserByUsernameRequestValidationError is the validation error returned by GetUserByUsernameRequest.Validate if the designated constraints aren't met.

func (GetUserByUsernameRequestValidationError) Cause

Cause function returns cause value.

func (GetUserByUsernameRequestValidationError) Error

Error satisfies the builtin error interface

func (GetUserByUsernameRequestValidationError) ErrorName

ErrorName returns error name.

func (GetUserByUsernameRequestValidationError) Field

Field function returns field value.

func (GetUserByUsernameRequestValidationError) Key

Key function returns key value.

func (GetUserByUsernameRequestValidationError) Reason

Reason function returns reason value.

type GetUserByUsernameResponse

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

func (*GetUserByUsernameResponse) Descriptor deprecated

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

Deprecated: Use GetUserByUsernameResponse.ProtoReflect.Descriptor instead.

func (*GetUserByUsernameResponse) GetId

func (x *GetUserByUsernameResponse) GetId() string

func (*GetUserByUsernameResponse) ProtoMessage

func (*GetUserByUsernameResponse) ProtoMessage()

func (*GetUserByUsernameResponse) ProtoReflect

func (*GetUserByUsernameResponse) Reset

func (x *GetUserByUsernameResponse) Reset()

func (*GetUserByUsernameResponse) String

func (x *GetUserByUsernameResponse) String() string

func (*GetUserByUsernameResponse) Validate

func (m *GetUserByUsernameResponse) Validate() error

Validate checks the field values on GetUserByUsernameResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetUserByUsernameResponse) ValidateAll

func (m *GetUserByUsernameResponse) ValidateAll() error

ValidateAll checks the field values on GetUserByUsernameResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetUserByUsernameResponseMultiError, or nil if none found.

type GetUserByUsernameResponseMultiError

type GetUserByUsernameResponseMultiError []error

GetUserByUsernameResponseMultiError is an error wrapping multiple validation errors returned by GetUserByUsernameResponse.ValidateAll() if the designated constraints aren't met.

func (GetUserByUsernameResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GetUserByUsernameResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetUserByUsernameResponseValidationError

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

GetUserByUsernameResponseValidationError is the validation error returned by GetUserByUsernameResponse.Validate if the designated constraints aren't met.

func (GetUserByUsernameResponseValidationError) Cause

Cause function returns cause value.

func (GetUserByUsernameResponseValidationError) Error

Error satisfies the builtin error interface

func (GetUserByUsernameResponseValidationError) ErrorName

ErrorName returns error name.

func (GetUserByUsernameResponseValidationError) Field

Field function returns field value.

func (GetUserByUsernameResponseValidationError) Key

Key function returns key value.

func (GetUserByUsernameResponseValidationError) Reason

Reason function returns reason value.

type GetUserCounterRequest

type GetUserCounterRequest struct {
	UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserCounterRequest) Descriptor deprecated

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

Deprecated: Use GetUserCounterRequest.ProtoReflect.Descriptor instead.

func (*GetUserCounterRequest) GetUserId

func (x *GetUserCounterRequest) GetUserId() string

func (*GetUserCounterRequest) ProtoMessage

func (*GetUserCounterRequest) ProtoMessage()

func (*GetUserCounterRequest) ProtoReflect

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

func (*GetUserCounterRequest) Reset

func (x *GetUserCounterRequest) Reset()

func (*GetUserCounterRequest) String

func (x *GetUserCounterRequest) String() string

func (*GetUserCounterRequest) Validate

func (m *GetUserCounterRequest) Validate() error

Validate checks the field values on GetUserCounterRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetUserCounterRequest) ValidateAll

func (m *GetUserCounterRequest) ValidateAll() error

ValidateAll checks the field values on GetUserCounterRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetUserCounterRequestMultiError, or nil if none found.

type GetUserCounterRequestMultiError

type GetUserCounterRequestMultiError []error

GetUserCounterRequestMultiError is an error wrapping multiple validation errors returned by GetUserCounterRequest.ValidateAll() if the designated constraints aren't met.

func (GetUserCounterRequestMultiError) AllErrors

func (m GetUserCounterRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetUserCounterRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetUserCounterRequestValidationError

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

GetUserCounterRequestValidationError is the validation error returned by GetUserCounterRequest.Validate if the designated constraints aren't met.

func (GetUserCounterRequestValidationError) Cause

Cause function returns cause value.

func (GetUserCounterRequestValidationError) Error

Error satisfies the builtin error interface

func (GetUserCounterRequestValidationError) ErrorName

ErrorName returns error name.

func (GetUserCounterRequestValidationError) Field

Field function returns field value.

func (GetUserCounterRequestValidationError) Key

Key function returns key value.

func (GetUserCounterRequestValidationError) Reason

Reason function returns reason value.

type GetUserCounterResponse

type GetUserCounterResponse struct {
	Followers int64 `protobuf:"varint,1,opt,name=followers,proto3" json:"followers,omitempty"`
	Following int64 `protobuf:"varint,2,opt,name=following,proto3" json:"following,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserCounterResponse) Descriptor deprecated

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

Deprecated: Use GetUserCounterResponse.ProtoReflect.Descriptor instead.

func (*GetUserCounterResponse) GetFollowers

func (x *GetUserCounterResponse) GetFollowers() int64

func (*GetUserCounterResponse) GetFollowing

func (x *GetUserCounterResponse) GetFollowing() int64

func (*GetUserCounterResponse) ProtoMessage

func (*GetUserCounterResponse) ProtoMessage()

func (*GetUserCounterResponse) ProtoReflect

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

func (*GetUserCounterResponse) Reset

func (x *GetUserCounterResponse) Reset()

func (*GetUserCounterResponse) String

func (x *GetUserCounterResponse) String() string

func (*GetUserCounterResponse) Validate

func (m *GetUserCounterResponse) Validate() error

Validate checks the field values on GetUserCounterResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetUserCounterResponse) ValidateAll

func (m *GetUserCounterResponse) ValidateAll() error

ValidateAll checks the field values on GetUserCounterResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetUserCounterResponseMultiError, or nil if none found.

type GetUserCounterResponseMultiError

type GetUserCounterResponseMultiError []error

GetUserCounterResponseMultiError is an error wrapping multiple validation errors returned by GetUserCounterResponse.ValidateAll() if the designated constraints aren't met.

func (GetUserCounterResponseMultiError) AllErrors

func (m GetUserCounterResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetUserCounterResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetUserCounterResponseValidationError

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

GetUserCounterResponseValidationError is the validation error returned by GetUserCounterResponse.Validate if the designated constraints aren't met.

func (GetUserCounterResponseValidationError) Cause

Cause function returns cause value.

func (GetUserCounterResponseValidationError) Error

Error satisfies the builtin error interface

func (GetUserCounterResponseValidationError) ErrorName

ErrorName returns error name.

func (GetUserCounterResponseValidationError) Field

Field function returns field value.

func (GetUserCounterResponseValidationError) Key

Key function returns key value.

func (GetUserCounterResponseValidationError) Reason

Reason function returns reason value.

type GetUserIDsRequest

type GetUserIDsRequest struct {
	Cursor *PageCursor `protobuf:"bytes,1,opt,name=cursor,proto3" json:"cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserIDsRequest) Descriptor deprecated

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

Deprecated: Use GetUserIDsRequest.ProtoReflect.Descriptor instead.

func (*GetUserIDsRequest) GetCursor

func (x *GetUserIDsRequest) GetCursor() *PageCursor

func (*GetUserIDsRequest) ProtoMessage

func (*GetUserIDsRequest) ProtoMessage()

func (*GetUserIDsRequest) ProtoReflect

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

func (*GetUserIDsRequest) Reset

func (x *GetUserIDsRequest) Reset()

func (*GetUserIDsRequest) String

func (x *GetUserIDsRequest) String() string

func (*GetUserIDsRequest) Validate

func (m *GetUserIDsRequest) Validate() error

Validate checks the field values on GetUserIDsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetUserIDsRequest) ValidateAll

func (m *GetUserIDsRequest) ValidateAll() error

ValidateAll checks the field values on GetUserIDsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetUserIDsRequestMultiError, or nil if none found.

type GetUserIDsRequestMultiError

type GetUserIDsRequestMultiError []error

GetUserIDsRequestMultiError is an error wrapping multiple validation errors returned by GetUserIDsRequest.ValidateAll() if the designated constraints aren't met.

func (GetUserIDsRequestMultiError) AllErrors

func (m GetUserIDsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetUserIDsRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetUserIDsRequestValidationError

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

GetUserIDsRequestValidationError is the validation error returned by GetUserIDsRequest.Validate if the designated constraints aren't met.

func (GetUserIDsRequestValidationError) Cause

Cause function returns cause value.

func (GetUserIDsRequestValidationError) Error

Error satisfies the builtin error interface

func (GetUserIDsRequestValidationError) ErrorName

ErrorName returns error name.

func (GetUserIDsRequestValidationError) Field

Field function returns field value.

func (GetUserIDsRequestValidationError) Key

Key function returns key value.

func (GetUserIDsRequestValidationError) Reason

Reason function returns reason value.

type GetUserIDsResponse

type GetUserIDsResponse struct {
	UserIds  []string  `protobuf:"bytes,1,rep,name=user_ids,json=userIds,proto3" json:"user_ids,omitempty"`
	PageInfo *PageInfo `protobuf:"bytes,2,opt,name=page_info,json=pageInfo,proto3" json:"page_info,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserIDsResponse) Descriptor deprecated

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

Deprecated: Use GetUserIDsResponse.ProtoReflect.Descriptor instead.

func (*GetUserIDsResponse) GetPageInfo

func (x *GetUserIDsResponse) GetPageInfo() *PageInfo

func (*GetUserIDsResponse) GetUserIds

func (x *GetUserIDsResponse) GetUserIds() []string

func (*GetUserIDsResponse) ProtoMessage

func (*GetUserIDsResponse) ProtoMessage()

func (*GetUserIDsResponse) ProtoReflect

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

func (*GetUserIDsResponse) Reset

func (x *GetUserIDsResponse) Reset()

func (*GetUserIDsResponse) String

func (x *GetUserIDsResponse) String() string

func (*GetUserIDsResponse) Validate

func (m *GetUserIDsResponse) Validate() error

Validate checks the field values on GetUserIDsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetUserIDsResponse) ValidateAll

func (m *GetUserIDsResponse) ValidateAll() error

ValidateAll checks the field values on GetUserIDsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetUserIDsResponseMultiError, or nil if none found.

type GetUserIDsResponseMultiError

type GetUserIDsResponseMultiError []error

GetUserIDsResponseMultiError is an error wrapping multiple validation errors returned by GetUserIDsResponse.ValidateAll() if the designated constraints aren't met.

func (GetUserIDsResponseMultiError) AllErrors

func (m GetUserIDsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetUserIDsResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetUserIDsResponseValidationError

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

GetUserIDsResponseValidationError is the validation error returned by GetUserIDsResponse.Validate if the designated constraints aren't met.

func (GetUserIDsResponseValidationError) Cause

Cause function returns cause value.

func (GetUserIDsResponseValidationError) Error

Error satisfies the builtin error interface

func (GetUserIDsResponseValidationError) ErrorName

ErrorName returns error name.

func (GetUserIDsResponseValidationError) Field

Field function returns field value.

func (GetUserIDsResponseValidationError) Key

Key function returns key value.

func (GetUserIDsResponseValidationError) Reason

Reason function returns reason value.

type GetUserRequest

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

func (*GetUserRequest) Descriptor deprecated

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

Deprecated: Use GetUserRequest.ProtoReflect.Descriptor instead.

func (*GetUserRequest) GetId

func (x *GetUserRequest) GetId() string

func (*GetUserRequest) ProtoMessage

func (*GetUserRequest) ProtoMessage()

func (*GetUserRequest) ProtoReflect

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

func (*GetUserRequest) Reset

func (x *GetUserRequest) Reset()

func (*GetUserRequest) String

func (x *GetUserRequest) String() string

func (*GetUserRequest) Validate

func (m *GetUserRequest) Validate() error

Validate checks the field values on GetUserRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetUserRequest) ValidateAll

func (m *GetUserRequest) ValidateAll() error

ValidateAll checks the field values on GetUserRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetUserRequestMultiError, or nil if none found.

type GetUserRequestMultiError

type GetUserRequestMultiError []error

GetUserRequestMultiError is an error wrapping multiple validation errors returned by GetUserRequest.ValidateAll() if the designated constraints aren't met.

func (GetUserRequestMultiError) AllErrors

func (m GetUserRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetUserRequestMultiError) Error

func (m GetUserRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type GetUserRequestValidationError

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

GetUserRequestValidationError is the validation error returned by GetUserRequest.Validate if the designated constraints aren't met.

func (GetUserRequestValidationError) Cause

Cause function returns cause value.

func (GetUserRequestValidationError) Error

Error satisfies the builtin error interface

func (GetUserRequestValidationError) ErrorName

func (e GetUserRequestValidationError) ErrorName() string

ErrorName returns error name.

func (GetUserRequestValidationError) Field

Field function returns field value.

func (GetUserRequestValidationError) Key

Key function returns key value.

func (GetUserRequestValidationError) Reason

Reason function returns reason value.

type GetUserResponse

type GetUserResponse struct {
	User *User `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserResponse) Descriptor deprecated

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

Deprecated: Use GetUserResponse.ProtoReflect.Descriptor instead.

func (*GetUserResponse) GetUser

func (x *GetUserResponse) GetUser() *User

func (*GetUserResponse) ProtoMessage

func (*GetUserResponse) ProtoMessage()

func (*GetUserResponse) ProtoReflect

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

func (*GetUserResponse) Reset

func (x *GetUserResponse) Reset()

func (*GetUserResponse) String

func (x *GetUserResponse) String() string

func (*GetUserResponse) Validate

func (m *GetUserResponse) Validate() error

Validate checks the field values on GetUserResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetUserResponse) ValidateAll

func (m *GetUserResponse) ValidateAll() error

ValidateAll checks the field values on GetUserResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetUserResponseMultiError, or nil if none found.

type GetUserResponseMultiError

type GetUserResponseMultiError []error

GetUserResponseMultiError is an error wrapping multiple validation errors returned by GetUserResponse.ValidateAll() if the designated constraints aren't met.

func (GetUserResponseMultiError) AllErrors

func (m GetUserResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetUserResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetUserResponseValidationError

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

GetUserResponseValidationError is the validation error returned by GetUserResponse.Validate if the designated constraints aren't met.

func (GetUserResponseValidationError) Cause

Cause function returns cause value.

func (GetUserResponseValidationError) Error

Error satisfies the builtin error interface

func (GetUserResponseValidationError) ErrorName

func (e GetUserResponseValidationError) ErrorName() string

ErrorName returns error name.

func (GetUserResponseValidationError) Field

Field function returns field value.

func (GetUserResponseValidationError) Key

Key function returns key value.

func (GetUserResponseValidationError) Reason

Reason function returns reason value.

type GetUsersRequest

type GetUsersRequest struct {
	Ids []string `protobuf:"bytes,1,rep,name=ids,proto3" json:"ids,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUsersRequest) Descriptor deprecated

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

Deprecated: Use GetUsersRequest.ProtoReflect.Descriptor instead.

func (*GetUsersRequest) GetIds

func (x *GetUsersRequest) GetIds() []string

func (*GetUsersRequest) ProtoMessage

func (*GetUsersRequest) ProtoMessage()

func (*GetUsersRequest) ProtoReflect

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

func (*GetUsersRequest) Reset

func (x *GetUsersRequest) Reset()

func (*GetUsersRequest) String

func (x *GetUsersRequest) String() string

func (*GetUsersRequest) Validate

func (m *GetUsersRequest) Validate() error

Validate checks the field values on GetUsersRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetUsersRequest) ValidateAll

func (m *GetUsersRequest) ValidateAll() error

ValidateAll checks the field values on GetUsersRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetUsersRequestMultiError, or nil if none found.

type GetUsersRequestMultiError

type GetUsersRequestMultiError []error

GetUsersRequestMultiError is an error wrapping multiple validation errors returned by GetUsersRequest.ValidateAll() if the designated constraints aren't met.

func (GetUsersRequestMultiError) AllErrors

func (m GetUsersRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetUsersRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetUsersRequestValidationError

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

GetUsersRequestValidationError is the validation error returned by GetUsersRequest.Validate if the designated constraints aren't met.

func (GetUsersRequestValidationError) Cause

Cause function returns cause value.

func (GetUsersRequestValidationError) Error

Error satisfies the builtin error interface

func (GetUsersRequestValidationError) ErrorName

func (e GetUsersRequestValidationError) ErrorName() string

ErrorName returns error name.

func (GetUsersRequestValidationError) Field

Field function returns field value.

func (GetUsersRequestValidationError) Key

Key function returns key value.

func (GetUsersRequestValidationError) Reason

Reason function returns reason value.

type GetUsersResponse

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

func (*GetUsersResponse) Descriptor deprecated

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

Deprecated: Use GetUsersResponse.ProtoReflect.Descriptor instead.

func (*GetUsersResponse) GetUsers

func (x *GetUsersResponse) GetUsers() []*User

func (*GetUsersResponse) ProtoMessage

func (*GetUsersResponse) ProtoMessage()

func (*GetUsersResponse) ProtoReflect

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

func (*GetUsersResponse) Reset

func (x *GetUsersResponse) Reset()

func (*GetUsersResponse) String

func (x *GetUsersResponse) String() string

func (*GetUsersResponse) Validate

func (m *GetUsersResponse) Validate() error

Validate checks the field values on GetUsersResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetUsersResponse) ValidateAll

func (m *GetUsersResponse) ValidateAll() error

ValidateAll checks the field values on GetUsersResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetUsersResponseMultiError, or nil if none found.

type GetUsersResponseMultiError

type GetUsersResponseMultiError []error

GetUsersResponseMultiError is an error wrapping multiple validation errors returned by GetUsersResponse.ValidateAll() if the designated constraints aren't met.

func (GetUsersResponseMultiError) AllErrors

func (m GetUsersResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetUsersResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetUsersResponseValidationError

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

GetUsersResponseValidationError is the validation error returned by GetUsersResponse.Validate if the designated constraints aren't met.

func (GetUsersResponseValidationError) Cause

Cause function returns cause value.

func (GetUsersResponseValidationError) Error

Error satisfies the builtin error interface

func (GetUsersResponseValidationError) ErrorName

ErrorName returns error name.

func (GetUsersResponseValidationError) Field

Field function returns field value.

func (GetUsersResponseValidationError) Key

Key function returns key value.

func (GetUsersResponseValidationError) Reason

Reason function returns reason value.

type GetVerifiedUsersRequest

type GetVerifiedUsersRequest struct {
	Cursor *PageCursor `protobuf:"bytes,1,opt,name=cursor,proto3" json:"cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*GetVerifiedUsersRequest) Descriptor deprecated

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

Deprecated: Use GetVerifiedUsersRequest.ProtoReflect.Descriptor instead.

func (*GetVerifiedUsersRequest) GetCursor

func (x *GetVerifiedUsersRequest) GetCursor() *PageCursor

func (*GetVerifiedUsersRequest) ProtoMessage

func (*GetVerifiedUsersRequest) ProtoMessage()

func (*GetVerifiedUsersRequest) ProtoReflect

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

func (*GetVerifiedUsersRequest) Reset

func (x *GetVerifiedUsersRequest) Reset()

func (*GetVerifiedUsersRequest) String

func (x *GetVerifiedUsersRequest) String() string

func (*GetVerifiedUsersRequest) Validate

func (m *GetVerifiedUsersRequest) Validate() error

Validate checks the field values on GetVerifiedUsersRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetVerifiedUsersRequest) ValidateAll

func (m *GetVerifiedUsersRequest) ValidateAll() error

ValidateAll checks the field values on GetVerifiedUsersRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetVerifiedUsersRequestMultiError, or nil if none found.

type GetVerifiedUsersRequestMultiError

type GetVerifiedUsersRequestMultiError []error

GetVerifiedUsersRequestMultiError is an error wrapping multiple validation errors returned by GetVerifiedUsersRequest.ValidateAll() if the designated constraints aren't met.

func (GetVerifiedUsersRequestMultiError) AllErrors

func (m GetVerifiedUsersRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetVerifiedUsersRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetVerifiedUsersRequestValidationError

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

GetVerifiedUsersRequestValidationError is the validation error returned by GetVerifiedUsersRequest.Validate if the designated constraints aren't met.

func (GetVerifiedUsersRequestValidationError) Cause

Cause function returns cause value.

func (GetVerifiedUsersRequestValidationError) Error

Error satisfies the builtin error interface

func (GetVerifiedUsersRequestValidationError) ErrorName

ErrorName returns error name.

func (GetVerifiedUsersRequestValidationError) Field

Field function returns field value.

func (GetVerifiedUsersRequestValidationError) Key

Key function returns key value.

func (GetVerifiedUsersRequestValidationError) Reason

Reason function returns reason value.

type GetVerifiedUsersResponse

type GetVerifiedUsersResponse struct {
	UserIds  []string  `protobuf:"bytes,1,rep,name=user_ids,json=userIds,proto3" json:"user_ids,omitempty"`
	PageInfo *PageInfo `protobuf:"bytes,2,opt,name=page_info,json=pageInfo,proto3" json:"page_info,omitempty"`
	// contains filtered or unexported fields
}

func (*GetVerifiedUsersResponse) Descriptor deprecated

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

Deprecated: Use GetVerifiedUsersResponse.ProtoReflect.Descriptor instead.

func (*GetVerifiedUsersResponse) GetPageInfo

func (x *GetVerifiedUsersResponse) GetPageInfo() *PageInfo

func (*GetVerifiedUsersResponse) GetUserIds

func (x *GetVerifiedUsersResponse) GetUserIds() []string

func (*GetVerifiedUsersResponse) ProtoMessage

func (*GetVerifiedUsersResponse) ProtoMessage()

func (*GetVerifiedUsersResponse) ProtoReflect

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

func (*GetVerifiedUsersResponse) Reset

func (x *GetVerifiedUsersResponse) Reset()

func (*GetVerifiedUsersResponse) String

func (x *GetVerifiedUsersResponse) String() string

func (*GetVerifiedUsersResponse) Validate

func (m *GetVerifiedUsersResponse) Validate() error

Validate checks the field values on GetVerifiedUsersResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetVerifiedUsersResponse) ValidateAll

func (m *GetVerifiedUsersResponse) ValidateAll() error

ValidateAll checks the field values on GetVerifiedUsersResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetVerifiedUsersResponseMultiError, or nil if none found.

type GetVerifiedUsersResponseMultiError

type GetVerifiedUsersResponseMultiError []error

GetVerifiedUsersResponseMultiError is an error wrapping multiple validation errors returned by GetVerifiedUsersResponse.ValidateAll() if the designated constraints aren't met.

func (GetVerifiedUsersResponseMultiError) AllErrors

func (m GetVerifiedUsersResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetVerifiedUsersResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetVerifiedUsersResponseValidationError

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

GetVerifiedUsersResponseValidationError is the validation error returned by GetVerifiedUsersResponse.Validate if the designated constraints aren't met.

func (GetVerifiedUsersResponseValidationError) Cause

Cause function returns cause value.

func (GetVerifiedUsersResponseValidationError) Error

Error satisfies the builtin error interface

func (GetVerifiedUsersResponseValidationError) ErrorName

ErrorName returns error name.

func (GetVerifiedUsersResponseValidationError) Field

Field function returns field value.

func (GetVerifiedUsersResponseValidationError) Key

Key function returns key value.

func (GetVerifiedUsersResponseValidationError) Reason

Reason function returns reason value.

type GlitterBombRequest

type GlitterBombRequest struct {
	UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GlitterBombRequest) Descriptor deprecated

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

Deprecated: Use GlitterBombRequest.ProtoReflect.Descriptor instead.

func (*GlitterBombRequest) GetUserId

func (x *GlitterBombRequest) GetUserId() string

func (*GlitterBombRequest) ProtoMessage

func (*GlitterBombRequest) ProtoMessage()

func (*GlitterBombRequest) ProtoReflect

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

func (*GlitterBombRequest) Reset

func (x *GlitterBombRequest) Reset()

func (*GlitterBombRequest) String

func (x *GlitterBombRequest) String() string

func (*GlitterBombRequest) Validate

func (m *GlitterBombRequest) Validate() error

Validate checks the field values on GlitterBombRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GlitterBombRequest) ValidateAll

func (m *GlitterBombRequest) ValidateAll() error

ValidateAll checks the field values on GlitterBombRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GlitterBombRequestMultiError, or nil if none found.

type GlitterBombRequestMultiError

type GlitterBombRequestMultiError []error

GlitterBombRequestMultiError is an error wrapping multiple validation errors returned by GlitterBombRequest.ValidateAll() if the designated constraints aren't met.

func (GlitterBombRequestMultiError) AllErrors

func (m GlitterBombRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GlitterBombRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GlitterBombRequestValidationError

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

GlitterBombRequestValidationError is the validation error returned by GlitterBombRequest.Validate if the designated constraints aren't met.

func (GlitterBombRequestValidationError) Cause

Cause function returns cause value.

func (GlitterBombRequestValidationError) Error

Error satisfies the builtin error interface

func (GlitterBombRequestValidationError) ErrorName

ErrorName returns error name.

func (GlitterBombRequestValidationError) Field

Field function returns field value.

func (GlitterBombRequestValidationError) Key

Key function returns key value.

func (GlitterBombRequestValidationError) Reason

Reason function returns reason value.

type GlitterBombResponse

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

func (*GlitterBombResponse) Descriptor deprecated

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

Deprecated: Use GlitterBombResponse.ProtoReflect.Descriptor instead.

func (*GlitterBombResponse) ProtoMessage

func (*GlitterBombResponse) ProtoMessage()

func (*GlitterBombResponse) ProtoReflect

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

func (*GlitterBombResponse) Reset

func (x *GlitterBombResponse) Reset()

func (*GlitterBombResponse) String

func (x *GlitterBombResponse) String() string

func (*GlitterBombResponse) Validate

func (m *GlitterBombResponse) Validate() error

Validate checks the field values on GlitterBombResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GlitterBombResponse) ValidateAll

func (m *GlitterBombResponse) ValidateAll() error

ValidateAll checks the field values on GlitterBombResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GlitterBombResponseMultiError, or nil if none found.

type GlitterBombResponseMultiError

type GlitterBombResponseMultiError []error

GlitterBombResponseMultiError is an error wrapping multiple validation errors returned by GlitterBombResponse.ValidateAll() if the designated constraints aren't met.

func (GlitterBombResponseMultiError) AllErrors

func (m GlitterBombResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GlitterBombResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GlitterBombResponseValidationError

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

GlitterBombResponseValidationError is the validation error returned by GlitterBombResponse.Validate if the designated constraints aren't met.

func (GlitterBombResponseValidationError) Cause

Cause function returns cause value.

func (GlitterBombResponseValidationError) Error

Error satisfies the builtin error interface

func (GlitterBombResponseValidationError) ErrorName

ErrorName returns error name.

func (GlitterBombResponseValidationError) Field

Field function returns field value.

func (GlitterBombResponseValidationError) Key

Key function returns key value.

func (GlitterBombResponseValidationError) Reason

Reason function returns reason value.

type Language

type Language struct {
	LanguageId string `protobuf:"bytes,1,opt,name=language_id,json=languageId,proto3" json:"language_id,omitempty"`
	Code       string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
	Title      string `protobuf:"bytes,3,opt,name=title,proto3" json:"title,omitempty"`
	// contains filtered or unexported fields
}

func (*Language) Descriptor deprecated

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

Deprecated: Use Language.ProtoReflect.Descriptor instead.

func (*Language) GetCode

func (x *Language) GetCode() string

func (*Language) GetLanguageId

func (x *Language) GetLanguageId() string

func (*Language) GetTitle

func (x *Language) GetTitle() string

func (*Language) ProtoMessage

func (*Language) ProtoMessage()

func (*Language) ProtoReflect

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

func (*Language) Reset

func (x *Language) Reset()

func (*Language) String

func (x *Language) String() string

func (*Language) Validate

func (m *Language) Validate() error

Validate checks the field values on Language with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Language) ValidateAll

func (m *Language) ValidateAll() error

ValidateAll checks the field values on Language with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in LanguageMultiError, or nil if none found.

type LanguageMultiError

type LanguageMultiError []error

LanguageMultiError is an error wrapping multiple validation errors returned by Language.ValidateAll() if the designated constraints aren't met.

func (LanguageMultiError) AllErrors

func (m LanguageMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LanguageMultiError) Error

func (m LanguageMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type LanguageValidationError

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

LanguageValidationError is the validation error returned by Language.Validate if the designated constraints aren't met.

func (LanguageValidationError) Cause

func (e LanguageValidationError) Cause() error

Cause function returns cause value.

func (LanguageValidationError) Error

func (e LanguageValidationError) Error() string

Error satisfies the builtin error interface

func (LanguageValidationError) ErrorName

func (e LanguageValidationError) ErrorName() string

ErrorName returns error name.

func (LanguageValidationError) Field

func (e LanguageValidationError) Field() string

Field function returns field value.

func (LanguageValidationError) Key

func (e LanguageValidationError) Key() bool

Key function returns key value.

func (LanguageValidationError) Reason

func (e LanguageValidationError) Reason() string

Reason function returns reason value.

type MigrateDataV1ToV2Request

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

func (*MigrateDataV1ToV2Request) Descriptor deprecated

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

Deprecated: Use MigrateDataV1ToV2Request.ProtoReflect.Descriptor instead.

func (*MigrateDataV1ToV2Request) GetStartTime

func (x *MigrateDataV1ToV2Request) GetStartTime() string

func (*MigrateDataV1ToV2Request) ProtoMessage

func (*MigrateDataV1ToV2Request) ProtoMessage()

func (*MigrateDataV1ToV2Request) ProtoReflect

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

func (*MigrateDataV1ToV2Request) Reset

func (x *MigrateDataV1ToV2Request) Reset()

func (*MigrateDataV1ToV2Request) String

func (x *MigrateDataV1ToV2Request) String() string

func (*MigrateDataV1ToV2Request) Validate

func (m *MigrateDataV1ToV2Request) Validate() error

Validate checks the field values on MigrateDataV1ToV2Request with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*MigrateDataV1ToV2Request) ValidateAll

func (m *MigrateDataV1ToV2Request) ValidateAll() error

ValidateAll checks the field values on MigrateDataV1ToV2Request with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MigrateDataV1ToV2RequestMultiError, or nil if none found.

type MigrateDataV1ToV2RequestMultiError

type MigrateDataV1ToV2RequestMultiError []error

MigrateDataV1ToV2RequestMultiError is an error wrapping multiple validation errors returned by MigrateDataV1ToV2Request.ValidateAll() if the designated constraints aren't met.

func (MigrateDataV1ToV2RequestMultiError) AllErrors

func (m MigrateDataV1ToV2RequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (MigrateDataV1ToV2RequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type MigrateDataV1ToV2RequestValidationError

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

MigrateDataV1ToV2RequestValidationError is the validation error returned by MigrateDataV1ToV2Request.Validate if the designated constraints aren't met.

func (MigrateDataV1ToV2RequestValidationError) Cause

Cause function returns cause value.

func (MigrateDataV1ToV2RequestValidationError) Error

Error satisfies the builtin error interface

func (MigrateDataV1ToV2RequestValidationError) ErrorName

ErrorName returns error name.

func (MigrateDataV1ToV2RequestValidationError) Field

Field function returns field value.

func (MigrateDataV1ToV2RequestValidationError) Key

Key function returns key value.

func (MigrateDataV1ToV2RequestValidationError) Reason

Reason function returns reason value.

type MigrateDataV1ToV2Response

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

func (*MigrateDataV1ToV2Response) Descriptor deprecated

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

Deprecated: Use MigrateDataV1ToV2Response.ProtoReflect.Descriptor instead.

func (*MigrateDataV1ToV2Response) ProtoMessage

func (*MigrateDataV1ToV2Response) ProtoMessage()

func (*MigrateDataV1ToV2Response) ProtoReflect

func (*MigrateDataV1ToV2Response) Reset

func (x *MigrateDataV1ToV2Response) Reset()

func (*MigrateDataV1ToV2Response) String

func (x *MigrateDataV1ToV2Response) String() string

func (*MigrateDataV1ToV2Response) Validate

func (m *MigrateDataV1ToV2Response) Validate() error

Validate checks the field values on MigrateDataV1ToV2Response with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*MigrateDataV1ToV2Response) ValidateAll

func (m *MigrateDataV1ToV2Response) ValidateAll() error

ValidateAll checks the field values on MigrateDataV1ToV2Response with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MigrateDataV1ToV2ResponseMultiError, or nil if none found.

type MigrateDataV1ToV2ResponseMultiError

type MigrateDataV1ToV2ResponseMultiError []error

MigrateDataV1ToV2ResponseMultiError is an error wrapping multiple validation errors returned by MigrateDataV1ToV2Response.ValidateAll() if the designated constraints aren't met.

func (MigrateDataV1ToV2ResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (MigrateDataV1ToV2ResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type MigrateDataV1ToV2ResponseValidationError

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

MigrateDataV1ToV2ResponseValidationError is the validation error returned by MigrateDataV1ToV2Response.Validate if the designated constraints aren't met.

func (MigrateDataV1ToV2ResponseValidationError) Cause

Cause function returns cause value.

func (MigrateDataV1ToV2ResponseValidationError) Error

Error satisfies the builtin error interface

func (MigrateDataV1ToV2ResponseValidationError) ErrorName

ErrorName returns error name.

func (MigrateDataV1ToV2ResponseValidationError) Field

Field function returns field value.

func (MigrateDataV1ToV2ResponseValidationError) Key

Key function returns key value.

func (MigrateDataV1ToV2ResponseValidationError) Reason

Reason function returns reason value.

type MigrationBlockRequest

type MigrationBlockRequest struct {
	UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*MigrationBlockRequest) Descriptor deprecated

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

Deprecated: Use MigrationBlockRequest.ProtoReflect.Descriptor instead.

func (*MigrationBlockRequest) GetUserId

func (x *MigrationBlockRequest) GetUserId() string

func (*MigrationBlockRequest) ProtoMessage

func (*MigrationBlockRequest) ProtoMessage()

func (*MigrationBlockRequest) ProtoReflect

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

func (*MigrationBlockRequest) Reset

func (x *MigrationBlockRequest) Reset()

func (*MigrationBlockRequest) String

func (x *MigrationBlockRequest) String() string

func (*MigrationBlockRequest) Validate

func (m *MigrationBlockRequest) Validate() error

Validate checks the field values on MigrationBlockRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*MigrationBlockRequest) ValidateAll

func (m *MigrationBlockRequest) ValidateAll() error

ValidateAll checks the field values on MigrationBlockRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MigrationBlockRequestMultiError, or nil if none found.

type MigrationBlockRequestMultiError

type MigrationBlockRequestMultiError []error

MigrationBlockRequestMultiError is an error wrapping multiple validation errors returned by MigrationBlockRequest.ValidateAll() if the designated constraints aren't met.

func (MigrationBlockRequestMultiError) AllErrors

func (m MigrationBlockRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (MigrationBlockRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type MigrationBlockRequestValidationError

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

MigrationBlockRequestValidationError is the validation error returned by MigrationBlockRequest.Validate if the designated constraints aren't met.

func (MigrationBlockRequestValidationError) Cause

Cause function returns cause value.

func (MigrationBlockRequestValidationError) Error

Error satisfies the builtin error interface

func (MigrationBlockRequestValidationError) ErrorName

ErrorName returns error name.

func (MigrationBlockRequestValidationError) Field

Field function returns field value.

func (MigrationBlockRequestValidationError) Key

Key function returns key value.

func (MigrationBlockRequestValidationError) Reason

Reason function returns reason value.

type MigrationBlockResponse

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

func (*MigrationBlockResponse) Descriptor deprecated

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

Deprecated: Use MigrationBlockResponse.ProtoReflect.Descriptor instead.

func (*MigrationBlockResponse) ProtoMessage

func (*MigrationBlockResponse) ProtoMessage()

func (*MigrationBlockResponse) ProtoReflect

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

func (*MigrationBlockResponse) Reset

func (x *MigrationBlockResponse) Reset()

func (*MigrationBlockResponse) String

func (x *MigrationBlockResponse) String() string

func (*MigrationBlockResponse) Validate

func (m *MigrationBlockResponse) Validate() error

Validate checks the field values on MigrationBlockResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*MigrationBlockResponse) ValidateAll

func (m *MigrationBlockResponse) ValidateAll() error

ValidateAll checks the field values on MigrationBlockResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MigrationBlockResponseMultiError, or nil if none found.

type MigrationBlockResponseMultiError

type MigrationBlockResponseMultiError []error

MigrationBlockResponseMultiError is an error wrapping multiple validation errors returned by MigrationBlockResponse.ValidateAll() if the designated constraints aren't met.

func (MigrationBlockResponseMultiError) AllErrors

func (m MigrationBlockResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (MigrationBlockResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type MigrationBlockResponseValidationError

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

MigrationBlockResponseValidationError is the validation error returned by MigrationBlockResponse.Validate if the designated constraints aren't met.

func (MigrationBlockResponseValidationError) Cause

Cause function returns cause value.

func (MigrationBlockResponseValidationError) Error

Error satisfies the builtin error interface

func (MigrationBlockResponseValidationError) ErrorName

ErrorName returns error name.

func (MigrationBlockResponseValidationError) Field

Field function returns field value.

func (MigrationBlockResponseValidationError) Key

Key function returns key value.

func (MigrationBlockResponseValidationError) Reason

Reason function returns reason value.

type MigrationCreateUserRequest

type MigrationCreateUserRequest struct {
	UserId          string   `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Username        string   `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
	FullName        string   `protobuf:"bytes,3,opt,name=full_name,json=fullName,proto3" json:"full_name,omitempty"`
	Bio             string   `protobuf:"bytes,4,opt,name=bio,proto3" json:"bio,omitempty"`
	CountryCode     string   `protobuf:"bytes,5,opt,name=country_code,json=countryCode,proto3" json:"country_code,omitempty"`
	LanguageCodes   []string `protobuf:"bytes,6,rep,name=language_codes,json=languageCodes,proto3" json:"language_codes,omitempty"`
	Age             int64    `protobuf:"varint,7,opt,name=age,proto3" json:"age,omitempty"`
	ProfileImageUrl string   `protobuf:"bytes,8,opt,name=profileImageUrl,proto3" json:"profileImageUrl,omitempty"`
	Email           string   `protobuf:"bytes,9,opt,name=email,proto3" json:"email,omitempty"`
	Phone           string   `protobuf:"bytes,10,opt,name=phone,proto3" json:"phone,omitempty"`
	IsVerified      bool     `protobuf:"varint,11,opt,name=is_verified,json=isVerified,proto3" json:"is_verified,omitempty"`
	IsBanned        bool     `protobuf:"varint,12,opt,name=is_banned,json=isBanned,proto3" json:"is_banned,omitempty"`
	Version         string   `protobuf:"bytes,13,opt,name=version,proto3" json:"version,omitempty"`
	Timezone        string   `protobuf:"bytes,14,opt,name=timezone,proto3" json:"timezone,omitempty"`
	CreatedAt       int64    `protobuf:"varint,15,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// contains filtered or unexported fields
}

func (*MigrationCreateUserRequest) Descriptor deprecated

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

Deprecated: Use MigrationCreateUserRequest.ProtoReflect.Descriptor instead.

func (*MigrationCreateUserRequest) GetAge

func (x *MigrationCreateUserRequest) GetAge() int64

func (*MigrationCreateUserRequest) GetBio

func (x *MigrationCreateUserRequest) GetBio() string

func (*MigrationCreateUserRequest) GetCountryCode

func (x *MigrationCreateUserRequest) GetCountryCode() string

func (*MigrationCreateUserRequest) GetCreatedAt

func (x *MigrationCreateUserRequest) GetCreatedAt() int64

func (*MigrationCreateUserRequest) GetEmail

func (x *MigrationCreateUserRequest) GetEmail() string

func (*MigrationCreateUserRequest) GetFullName

func (x *MigrationCreateUserRequest) GetFullName() string

func (*MigrationCreateUserRequest) GetIsBanned

func (x *MigrationCreateUserRequest) GetIsBanned() bool

func (*MigrationCreateUserRequest) GetIsVerified

func (x *MigrationCreateUserRequest) GetIsVerified() bool

func (*MigrationCreateUserRequest) GetLanguageCodes

func (x *MigrationCreateUserRequest) GetLanguageCodes() []string

func (*MigrationCreateUserRequest) GetPhone

func (x *MigrationCreateUserRequest) GetPhone() string

func (*MigrationCreateUserRequest) GetProfileImageUrl

func (x *MigrationCreateUserRequest) GetProfileImageUrl() string

func (*MigrationCreateUserRequest) GetTimezone

func (x *MigrationCreateUserRequest) GetTimezone() string

func (*MigrationCreateUserRequest) GetUserId

func (x *MigrationCreateUserRequest) GetUserId() string

func (*MigrationCreateUserRequest) GetUsername

func (x *MigrationCreateUserRequest) GetUsername() string

func (*MigrationCreateUserRequest) GetVersion

func (x *MigrationCreateUserRequest) GetVersion() string

func (*MigrationCreateUserRequest) ProtoMessage

func (*MigrationCreateUserRequest) ProtoMessage()

func (*MigrationCreateUserRequest) ProtoReflect

func (*MigrationCreateUserRequest) Reset

func (x *MigrationCreateUserRequest) Reset()

func (*MigrationCreateUserRequest) String

func (x *MigrationCreateUserRequest) String() string

func (*MigrationCreateUserRequest) Validate

func (m *MigrationCreateUserRequest) Validate() error

Validate checks the field values on MigrationCreateUserRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*MigrationCreateUserRequest) ValidateAll

func (m *MigrationCreateUserRequest) ValidateAll() error

ValidateAll checks the field values on MigrationCreateUserRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MigrationCreateUserRequestMultiError, or nil if none found.

type MigrationCreateUserRequestMultiError

type MigrationCreateUserRequestMultiError []error

MigrationCreateUserRequestMultiError is an error wrapping multiple validation errors returned by MigrationCreateUserRequest.ValidateAll() if the designated constraints aren't met.

func (MigrationCreateUserRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (MigrationCreateUserRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type MigrationCreateUserRequestValidationError

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

MigrationCreateUserRequestValidationError is the validation error returned by MigrationCreateUserRequest.Validate if the designated constraints aren't met.

func (MigrationCreateUserRequestValidationError) Cause

Cause function returns cause value.

func (MigrationCreateUserRequestValidationError) Error

Error satisfies the builtin error interface

func (MigrationCreateUserRequestValidationError) ErrorName

ErrorName returns error name.

func (MigrationCreateUserRequestValidationError) Field

Field function returns field value.

func (MigrationCreateUserRequestValidationError) Key

Key function returns key value.

func (MigrationCreateUserRequestValidationError) Reason

Reason function returns reason value.

type MigrationCreateUserResponse

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

func (*MigrationCreateUserResponse) Descriptor deprecated

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

Deprecated: Use MigrationCreateUserResponse.ProtoReflect.Descriptor instead.

func (*MigrationCreateUserResponse) ProtoMessage

func (*MigrationCreateUserResponse) ProtoMessage()

func (*MigrationCreateUserResponse) ProtoReflect

func (*MigrationCreateUserResponse) Reset

func (x *MigrationCreateUserResponse) Reset()

func (*MigrationCreateUserResponse) String

func (x *MigrationCreateUserResponse) String() string

func (*MigrationCreateUserResponse) Validate

func (m *MigrationCreateUserResponse) Validate() error

Validate checks the field values on MigrationCreateUserResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*MigrationCreateUserResponse) ValidateAll

func (m *MigrationCreateUserResponse) ValidateAll() error

ValidateAll checks the field values on MigrationCreateUserResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MigrationCreateUserResponseMultiError, or nil if none found.

type MigrationCreateUserResponseMultiError

type MigrationCreateUserResponseMultiError []error

MigrationCreateUserResponseMultiError is an error wrapping multiple validation errors returned by MigrationCreateUserResponse.ValidateAll() if the designated constraints aren't met.

func (MigrationCreateUserResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (MigrationCreateUserResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type MigrationCreateUserResponseValidationError

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

MigrationCreateUserResponseValidationError is the validation error returned by MigrationCreateUserResponse.Validate if the designated constraints aren't met.

func (MigrationCreateUserResponseValidationError) Cause

Cause function returns cause value.

func (MigrationCreateUserResponseValidationError) Error

Error satisfies the builtin error interface

func (MigrationCreateUserResponseValidationError) ErrorName

ErrorName returns error name.

func (MigrationCreateUserResponseValidationError) Field

Field function returns field value.

func (MigrationCreateUserResponseValidationError) Key

Key function returns key value.

func (MigrationCreateUserResponseValidationError) Reason

Reason function returns reason value.

type MigrationFollowRequest

type MigrationFollowRequest struct {
	UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*MigrationFollowRequest) Descriptor deprecated

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

Deprecated: Use MigrationFollowRequest.ProtoReflect.Descriptor instead.

func (*MigrationFollowRequest) GetUserId

func (x *MigrationFollowRequest) GetUserId() string

func (*MigrationFollowRequest) ProtoMessage

func (*MigrationFollowRequest) ProtoMessage()

func (*MigrationFollowRequest) ProtoReflect

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

func (*MigrationFollowRequest) Reset

func (x *MigrationFollowRequest) Reset()

func (*MigrationFollowRequest) String

func (x *MigrationFollowRequest) String() string

func (*MigrationFollowRequest) Validate

func (m *MigrationFollowRequest) Validate() error

Validate checks the field values on MigrationFollowRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*MigrationFollowRequest) ValidateAll

func (m *MigrationFollowRequest) ValidateAll() error

ValidateAll checks the field values on MigrationFollowRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MigrationFollowRequestMultiError, or nil if none found.

type MigrationFollowRequestMultiError

type MigrationFollowRequestMultiError []error

MigrationFollowRequestMultiError is an error wrapping multiple validation errors returned by MigrationFollowRequest.ValidateAll() if the designated constraints aren't met.

func (MigrationFollowRequestMultiError) AllErrors

func (m MigrationFollowRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (MigrationFollowRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type MigrationFollowRequestValidationError

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

MigrationFollowRequestValidationError is the validation error returned by MigrationFollowRequest.Validate if the designated constraints aren't met.

func (MigrationFollowRequestValidationError) Cause

Cause function returns cause value.

func (MigrationFollowRequestValidationError) Error

Error satisfies the builtin error interface

func (MigrationFollowRequestValidationError) ErrorName

ErrorName returns error name.

func (MigrationFollowRequestValidationError) Field

Field function returns field value.

func (MigrationFollowRequestValidationError) Key

Key function returns key value.

func (MigrationFollowRequestValidationError) Reason

Reason function returns reason value.

type MigrationFollowResponse

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

func (*MigrationFollowResponse) Descriptor deprecated

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

Deprecated: Use MigrationFollowResponse.ProtoReflect.Descriptor instead.

func (*MigrationFollowResponse) ProtoMessage

func (*MigrationFollowResponse) ProtoMessage()

func (*MigrationFollowResponse) ProtoReflect

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

func (*MigrationFollowResponse) Reset

func (x *MigrationFollowResponse) Reset()

func (*MigrationFollowResponse) String

func (x *MigrationFollowResponse) String() string

func (*MigrationFollowResponse) Validate

func (m *MigrationFollowResponse) Validate() error

Validate checks the field values on MigrationFollowResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*MigrationFollowResponse) ValidateAll

func (m *MigrationFollowResponse) ValidateAll() error

ValidateAll checks the field values on MigrationFollowResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MigrationFollowResponseMultiError, or nil if none found.

type MigrationFollowResponseMultiError

type MigrationFollowResponseMultiError []error

MigrationFollowResponseMultiError is an error wrapping multiple validation errors returned by MigrationFollowResponse.ValidateAll() if the designated constraints aren't met.

func (MigrationFollowResponseMultiError) AllErrors

func (m MigrationFollowResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (MigrationFollowResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type MigrationFollowResponseValidationError

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

MigrationFollowResponseValidationError is the validation error returned by MigrationFollowResponse.Validate if the designated constraints aren't met.

func (MigrationFollowResponseValidationError) Cause

Cause function returns cause value.

func (MigrationFollowResponseValidationError) Error

Error satisfies the builtin error interface

func (MigrationFollowResponseValidationError) ErrorName

ErrorName returns error name.

func (MigrationFollowResponseValidationError) Field

Field function returns field value.

func (MigrationFollowResponseValidationError) Key

Key function returns key value.

func (MigrationFollowResponseValidationError) Reason

Reason function returns reason value.

type PageCursor

type PageCursor struct {
	LastId string  `protobuf:"bytes,1,opt,name=lastId,proto3" json:"lastId,omitempty"`
	Limit  uint32  `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	Dir    PageDir `protobuf:"varint,3,opt,name=dir,proto3,enum=profile_api.v1.PageDir" json:"dir,omitempty"`
	// contains filtered or unexported fields
}

func (*PageCursor) Descriptor deprecated

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

Deprecated: Use PageCursor.ProtoReflect.Descriptor instead.

func (*PageCursor) GetDir

func (x *PageCursor) GetDir() PageDir

func (*PageCursor) GetLastId

func (x *PageCursor) GetLastId() string

func (*PageCursor) GetLimit

func (x *PageCursor) GetLimit() uint32

func (*PageCursor) ProtoMessage

func (*PageCursor) ProtoMessage()

func (*PageCursor) ProtoReflect

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

func (*PageCursor) Reset

func (x *PageCursor) Reset()

func (*PageCursor) String

func (x *PageCursor) String() string

func (*PageCursor) Validate

func (m *PageCursor) Validate() error

Validate checks the field values on PageCursor with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PageCursor) ValidateAll

func (m *PageCursor) ValidateAll() error

ValidateAll checks the field values on PageCursor with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PageCursorMultiError, or nil if none found.

type PageCursorMultiError

type PageCursorMultiError []error

PageCursorMultiError is an error wrapping multiple validation errors returned by PageCursor.ValidateAll() if the designated constraints aren't met.

func (PageCursorMultiError) AllErrors

func (m PageCursorMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PageCursorMultiError) Error

func (m PageCursorMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type PageCursorValidationError

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

PageCursorValidationError is the validation error returned by PageCursor.Validate if the designated constraints aren't met.

func (PageCursorValidationError) Cause

func (e PageCursorValidationError) Cause() error

Cause function returns cause value.

func (PageCursorValidationError) Error

Error satisfies the builtin error interface

func (PageCursorValidationError) ErrorName

func (e PageCursorValidationError) ErrorName() string

ErrorName returns error name.

func (PageCursorValidationError) Field

Field function returns field value.

func (PageCursorValidationError) Key

Key function returns key value.

func (PageCursorValidationError) Reason

func (e PageCursorValidationError) Reason() string

Reason function returns reason value.

type PageDir

type PageDir int32
const (
	PageDir_Asc  PageDir = 0
	PageDir_Desc PageDir = 1
)

func (PageDir) Descriptor

func (PageDir) Descriptor() protoreflect.EnumDescriptor

func (PageDir) Enum

func (x PageDir) Enum() *PageDir

func (PageDir) EnumDescriptor deprecated

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

Deprecated: Use PageDir.Descriptor instead.

func (PageDir) Number

func (x PageDir) Number() protoreflect.EnumNumber

func (PageDir) String

func (x PageDir) String() string

func (PageDir) Type

func (PageDir) Type() protoreflect.EnumType

type PageInfo

type PageInfo struct {
	FirstId *string `protobuf:"bytes,1,opt,name=firstId,proto3,oneof" json:"firstId,omitempty"`
	LastId  *string `protobuf:"bytes,2,opt,name=lastId,proto3,oneof" json:"lastId,omitempty"`
	HasPrev bool    `protobuf:"varint,3,opt,name=hasPrev,proto3" json:"hasPrev,omitempty"`
	HasNext bool    `protobuf:"varint,4,opt,name=hasNext,proto3" json:"hasNext,omitempty"`
	Length  uint32  `protobuf:"varint,5,opt,name=length,proto3" json:"length,omitempty"`
	// contains filtered or unexported fields
}

func (*PageInfo) Descriptor deprecated

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

Deprecated: Use PageInfo.ProtoReflect.Descriptor instead.

func (*PageInfo) GetFirstId

func (x *PageInfo) GetFirstId() string

func (*PageInfo) GetHasNext

func (x *PageInfo) GetHasNext() bool

func (*PageInfo) GetHasPrev

func (x *PageInfo) GetHasPrev() bool

func (*PageInfo) GetLastId

func (x *PageInfo) GetLastId() string

func (*PageInfo) GetLength

func (x *PageInfo) GetLength() uint32

func (*PageInfo) ProtoMessage

func (*PageInfo) ProtoMessage()

func (*PageInfo) ProtoReflect

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

func (*PageInfo) Reset

func (x *PageInfo) Reset()

func (*PageInfo) String

func (x *PageInfo) String() string

func (*PageInfo) Validate

func (m *PageInfo) Validate() error

Validate checks the field values on PageInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PageInfo) ValidateAll

func (m *PageInfo) ValidateAll() error

ValidateAll checks the field values on PageInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PageInfoMultiError, or nil if none found.

type PageInfoMultiError

type PageInfoMultiError []error

PageInfoMultiError is an error wrapping multiple validation errors returned by PageInfo.ValidateAll() if the designated constraints aren't met.

func (PageInfoMultiError) AllErrors

func (m PageInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PageInfoMultiError) Error

func (m PageInfoMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type PageInfoValidationError

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

PageInfoValidationError is the validation error returned by PageInfo.Validate if the designated constraints aren't met.

func (PageInfoValidationError) Cause

func (e PageInfoValidationError) Cause() error

Cause function returns cause value.

func (PageInfoValidationError) Error

func (e PageInfoValidationError) Error() string

Error satisfies the builtin error interface

func (PageInfoValidationError) ErrorName

func (e PageInfoValidationError) ErrorName() string

ErrorName returns error name.

func (PageInfoValidationError) Field

func (e PageInfoValidationError) Field() string

Field function returns field value.

func (PageInfoValidationError) Key

func (e PageInfoValidationError) Key() bool

Key function returns key value.

func (PageInfoValidationError) Reason

func (e PageInfoValidationError) Reason() string

Reason function returns reason value.

type ProfileAPIClient

type ProfileAPIClient interface {
	CreateUser(ctx context.Context, in *CreateUserRequest, opts ...grpc.CallOption) (*CreateUserResponse, error)
	GetUser(ctx context.Context, in *GetUserRequest, opts ...grpc.CallOption) (*GetUserResponse, error)
	GetUserByUsername(ctx context.Context, in *GetUserByUsernameRequest, opts ...grpc.CallOption) (*GetUserByUsernameResponse, error)
	GetUsers(ctx context.Context, in *GetUsersRequest, opts ...grpc.CallOption) (*GetUsersResponse, error)
	Update(ctx context.Context, in *UserUpdateRequest, opts ...grpc.CallOption) (*UserUpdateResponse, error)
	SetFollowStatus(ctx context.Context, in *SetFollowRequest, opts ...grpc.CallOption) (*Empty, error)
	SetBlockStatus(ctx context.Context, in *SetBlockRequest, opts ...grpc.CallOption) (*Empty, error)
	GetFollowers(ctx context.Context, in *GetFollowersRequest, opts ...grpc.CallOption) (*GetFollowersResponse, error)
	GetBlocked(ctx context.Context, in *GetBlockedRequest, opts ...grpc.CallOption) (*GetBlockedResponse, error)
	SearchForUser(ctx context.Context, in *SearchForUserRequest, opts ...grpc.CallOption) (*SearchForUserResponse, error)
	ChangeAvatar(ctx context.Context, in *ChangeAvatarRequest, opts ...grpc.CallOption) (*Empty, error)
	UpdatePrivacySettings(ctx context.Context, in *UpdatePrivacySettingsRequest, opts ...grpc.CallOption) (*Empty, error)
	GetPrivacySettings(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*GetPrivacySettingsResponse, error)
	DeactivateMe(ctx context.Context, in *DeactivateMeRequest, opts ...grpc.CallOption) (*DeactivateMeResponse, error)
	DeleteAccount(ctx context.Context, in *DeleteAccountRequest, opts ...grpc.CallOption) (*Empty, error)
	UpdateUserPreferredLanugages(ctx context.Context, in *UpdateUserPreferredLanugagesRequest, opts ...grpc.CallOption) (*Empty, error)
	SetBanStatus(ctx context.Context, in *SetBanRequest, opts ...grpc.CallOption) (*Empty, error)
	CheckUsername(ctx context.Context, in *CheckUsernameRequest, opts ...grpc.CallOption) (*CheckUsernameResponse, error)
	GlitterBomb(ctx context.Context, in *GlitterBombRequest, opts ...grpc.CallOption) (*GlitterBombResponse, error)
	GetPublicProfileWithoutAuth(ctx context.Context, in *GetPublicProfileWithoutAuthRequest, opts ...grpc.CallOption) (*GetPublicProfileWithoutAuthResponse, error)
	Verify(ctx context.Context, in *VerifyRequest, opts ...grpc.CallOption) (*VerifyResponse, error)
	Unverify(ctx context.Context, in *UnverifyRequest, opts ...grpc.CallOption) (*UnverifyResponse, error)
	GetVerifiedUsers(ctx context.Context, in *GetVerifiedUsersRequest, opts ...grpc.CallOption) (*GetVerifiedUsersResponse, error)
	MigrationCreateUser(ctx context.Context, in *MigrationCreateUserRequest, opts ...grpc.CallOption) (*MigrationCreateUserResponse, error)
	MigrationFollow(ctx context.Context, in *MigrationFollowRequest, opts ...grpc.CallOption) (*MigrationFollowResponse, error)
	MigrationBlock(ctx context.Context, in *MigrationBlockRequest, opts ...grpc.CallOption) (*MigrationBlockResponse, error)
	MigrateDataV1ToV2(ctx context.Context, in *MigrateDataV1ToV2Request, opts ...grpc.CallOption) (*MigrateDataV1ToV2Response, error)
	CanSendDM(ctx context.Context, in *CanSendDMRequest, opts ...grpc.CallOption) (*CanSendDMResponse, error)
	GetBlockList(ctx context.Context, in *GetBlockListRequest, opts ...grpc.CallOption) (*GetBlockListResponse, error)
	DeleteTestUser(ctx context.Context, in *DeleteTestUserRequest, opts ...grpc.CallOption) (*DeleteTestUserResponse, error)
	GetUserCounter(ctx context.Context, in *GetUserCounterRequest, opts ...grpc.CallOption) (*GetUserCounterResponse, error)
	GetUserIDs(ctx context.Context, in *GetUserIDsRequest, opts ...grpc.CallOption) (*GetUserIDsResponse, error)
	// Analytics
	GetStatistics(ctx context.Context, in *GetStatisticsRequest, opts ...grpc.CallOption) (*GetStatisticsResponse, error)
}

ProfileAPIClient is the client API for ProfileAPI 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 NewProfileAPIClient

func NewProfileAPIClient(cc grpc.ClientConnInterface) ProfileAPIClient

type ProfileAPIServer

type ProfileAPIServer interface {
	CreateUser(context.Context, *CreateUserRequest) (*CreateUserResponse, error)
	GetUser(context.Context, *GetUserRequest) (*GetUserResponse, error)
	GetUserByUsername(context.Context, *GetUserByUsernameRequest) (*GetUserByUsernameResponse, error)
	GetUsers(context.Context, *GetUsersRequest) (*GetUsersResponse, error)
	Update(context.Context, *UserUpdateRequest) (*UserUpdateResponse, error)
	SetFollowStatus(context.Context, *SetFollowRequest) (*Empty, error)
	SetBlockStatus(context.Context, *SetBlockRequest) (*Empty, error)
	GetFollowers(context.Context, *GetFollowersRequest) (*GetFollowersResponse, error)
	GetBlocked(context.Context, *GetBlockedRequest) (*GetBlockedResponse, error)
	SearchForUser(context.Context, *SearchForUserRequest) (*SearchForUserResponse, error)
	ChangeAvatar(context.Context, *ChangeAvatarRequest) (*Empty, error)
	UpdatePrivacySettings(context.Context, *UpdatePrivacySettingsRequest) (*Empty, error)
	GetPrivacySettings(context.Context, *Empty) (*GetPrivacySettingsResponse, error)
	DeactivateMe(context.Context, *DeactivateMeRequest) (*DeactivateMeResponse, error)
	DeleteAccount(context.Context, *DeleteAccountRequest) (*Empty, error)
	UpdateUserPreferredLanugages(context.Context, *UpdateUserPreferredLanugagesRequest) (*Empty, error)
	SetBanStatus(context.Context, *SetBanRequest) (*Empty, error)
	CheckUsername(context.Context, *CheckUsernameRequest) (*CheckUsernameResponse, error)
	GlitterBomb(context.Context, *GlitterBombRequest) (*GlitterBombResponse, error)
	GetPublicProfileWithoutAuth(context.Context, *GetPublicProfileWithoutAuthRequest) (*GetPublicProfileWithoutAuthResponse, error)
	Verify(context.Context, *VerifyRequest) (*VerifyResponse, error)
	Unverify(context.Context, *UnverifyRequest) (*UnverifyResponse, error)
	GetVerifiedUsers(context.Context, *GetVerifiedUsersRequest) (*GetVerifiedUsersResponse, error)
	MigrationCreateUser(context.Context, *MigrationCreateUserRequest) (*MigrationCreateUserResponse, error)
	MigrationFollow(context.Context, *MigrationFollowRequest) (*MigrationFollowResponse, error)
	MigrationBlock(context.Context, *MigrationBlockRequest) (*MigrationBlockResponse, error)
	MigrateDataV1ToV2(context.Context, *MigrateDataV1ToV2Request) (*MigrateDataV1ToV2Response, error)
	CanSendDM(context.Context, *CanSendDMRequest) (*CanSendDMResponse, error)
	GetBlockList(context.Context, *GetBlockListRequest) (*GetBlockListResponse, error)
	DeleteTestUser(context.Context, *DeleteTestUserRequest) (*DeleteTestUserResponse, error)
	GetUserCounter(context.Context, *GetUserCounterRequest) (*GetUserCounterResponse, error)
	GetUserIDs(context.Context, *GetUserIDsRequest) (*GetUserIDsResponse, error)
	// Analytics
	GetStatistics(context.Context, *GetStatisticsRequest) (*GetStatisticsResponse, error)
	// contains filtered or unexported methods
}

ProfileAPIServer is the server API for ProfileAPI service. All implementations must embed UnimplementedProfileAPIServer for forward compatibility

type SearchForUserRequest

type SearchForUserRequest struct {
	Username string      `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
	Cursor   *PageCursor `protobuf:"bytes,2,opt,name=cursor,proto3" json:"cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchForUserRequest) Descriptor deprecated

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

Deprecated: Use SearchForUserRequest.ProtoReflect.Descriptor instead.

func (*SearchForUserRequest) GetCursor

func (x *SearchForUserRequest) GetCursor() *PageCursor

func (*SearchForUserRequest) GetUsername

func (x *SearchForUserRequest) GetUsername() string

func (*SearchForUserRequest) ProtoMessage

func (*SearchForUserRequest) ProtoMessage()

func (*SearchForUserRequest) ProtoReflect

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

func (*SearchForUserRequest) Reset

func (x *SearchForUserRequest) Reset()

func (*SearchForUserRequest) String

func (x *SearchForUserRequest) String() string

func (*SearchForUserRequest) Validate

func (m *SearchForUserRequest) Validate() error

Validate checks the field values on SearchForUserRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SearchForUserRequest) ValidateAll

func (m *SearchForUserRequest) ValidateAll() error

ValidateAll checks the field values on SearchForUserRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SearchForUserRequestMultiError, or nil if none found.

type SearchForUserRequestMultiError

type SearchForUserRequestMultiError []error

SearchForUserRequestMultiError is an error wrapping multiple validation errors returned by SearchForUserRequest.ValidateAll() if the designated constraints aren't met.

func (SearchForUserRequestMultiError) AllErrors

func (m SearchForUserRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SearchForUserRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type SearchForUserRequestValidationError

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

SearchForUserRequestValidationError is the validation error returned by SearchForUserRequest.Validate if the designated constraints aren't met.

func (SearchForUserRequestValidationError) Cause

Cause function returns cause value.

func (SearchForUserRequestValidationError) Error

Error satisfies the builtin error interface

func (SearchForUserRequestValidationError) ErrorName

ErrorName returns error name.

func (SearchForUserRequestValidationError) Field

Field function returns field value.

func (SearchForUserRequestValidationError) Key

Key function returns key value.

func (SearchForUserRequestValidationError) Reason

Reason function returns reason value.

type SearchForUserResponse

type SearchForUserResponse struct {
	Users []*User   `protobuf:"bytes,1,rep,name=users,proto3" json:"users,omitempty"`
	Info  *PageInfo `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchForUserResponse) Descriptor deprecated

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

Deprecated: Use SearchForUserResponse.ProtoReflect.Descriptor instead.

func (*SearchForUserResponse) GetInfo

func (x *SearchForUserResponse) GetInfo() *PageInfo

func (*SearchForUserResponse) GetUsers

func (x *SearchForUserResponse) GetUsers() []*User

func (*SearchForUserResponse) ProtoMessage

func (*SearchForUserResponse) ProtoMessage()

func (*SearchForUserResponse) ProtoReflect

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

func (*SearchForUserResponse) Reset

func (x *SearchForUserResponse) Reset()

func (*SearchForUserResponse) String

func (x *SearchForUserResponse) String() string

func (*SearchForUserResponse) Validate

func (m *SearchForUserResponse) Validate() error

Validate checks the field values on SearchForUserResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SearchForUserResponse) ValidateAll

func (m *SearchForUserResponse) ValidateAll() error

ValidateAll checks the field values on SearchForUserResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SearchForUserResponseMultiError, or nil if none found.

type SearchForUserResponseMultiError

type SearchForUserResponseMultiError []error

SearchForUserResponseMultiError is an error wrapping multiple validation errors returned by SearchForUserResponse.ValidateAll() if the designated constraints aren't met.

func (SearchForUserResponseMultiError) AllErrors

func (m SearchForUserResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SearchForUserResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type SearchForUserResponseValidationError

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

SearchForUserResponseValidationError is the validation error returned by SearchForUserResponse.Validate if the designated constraints aren't met.

func (SearchForUserResponseValidationError) Cause

Cause function returns cause value.

func (SearchForUserResponseValidationError) Error

Error satisfies the builtin error interface

func (SearchForUserResponseValidationError) ErrorName

ErrorName returns error name.

func (SearchForUserResponseValidationError) Field

Field function returns field value.

func (SearchForUserResponseValidationError) Key

Key function returns key value.

func (SearchForUserResponseValidationError) Reason

Reason function returns reason value.

type SetBanRequest

type SetBanRequest struct {
	UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Ban    bool   `protobuf:"varint,2,opt,name=ban,proto3" json:"ban,omitempty"`
	// contains filtered or unexported fields
}

func (*SetBanRequest) Descriptor deprecated

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

Deprecated: Use SetBanRequest.ProtoReflect.Descriptor instead.

func (*SetBanRequest) GetBan

func (x *SetBanRequest) GetBan() bool

func (*SetBanRequest) GetUserId

func (x *SetBanRequest) GetUserId() string

func (*SetBanRequest) ProtoMessage

func (*SetBanRequest) ProtoMessage()

func (*SetBanRequest) ProtoReflect

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

func (*SetBanRequest) Reset

func (x *SetBanRequest) Reset()

func (*SetBanRequest) String

func (x *SetBanRequest) String() string

func (*SetBanRequest) Validate

func (m *SetBanRequest) Validate() error

Validate checks the field values on SetBanRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SetBanRequest) ValidateAll

func (m *SetBanRequest) ValidateAll() error

ValidateAll checks the field values on SetBanRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SetBanRequestMultiError, or nil if none found.

type SetBanRequestMultiError

type SetBanRequestMultiError []error

SetBanRequestMultiError is an error wrapping multiple validation errors returned by SetBanRequest.ValidateAll() if the designated constraints aren't met.

func (SetBanRequestMultiError) AllErrors

func (m SetBanRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetBanRequestMultiError) Error

func (m SetBanRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type SetBanRequestValidationError

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

SetBanRequestValidationError is the validation error returned by SetBanRequest.Validate if the designated constraints aren't met.

func (SetBanRequestValidationError) Cause

Cause function returns cause value.

func (SetBanRequestValidationError) Error

Error satisfies the builtin error interface

func (SetBanRequestValidationError) ErrorName

func (e SetBanRequestValidationError) ErrorName() string

ErrorName returns error name.

func (SetBanRequestValidationError) Field

Field function returns field value.

func (SetBanRequestValidationError) Key

Key function returns key value.

func (SetBanRequestValidationError) Reason

Reason function returns reason value.

type SetBlockRequest

type SetBlockRequest struct {
	UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
	Block  bool   `protobuf:"varint,2,opt,name=block,proto3" json:"block,omitempty"`
	// contains filtered or unexported fields
}

func (*SetBlockRequest) Descriptor deprecated

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

Deprecated: Use SetBlockRequest.ProtoReflect.Descriptor instead.

func (*SetBlockRequest) GetBlock

func (x *SetBlockRequest) GetBlock() bool

func (*SetBlockRequest) GetUserId

func (x *SetBlockRequest) GetUserId() string

func (*SetBlockRequest) ProtoMessage

func (*SetBlockRequest) ProtoMessage()

func (*SetBlockRequest) ProtoReflect

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

func (*SetBlockRequest) Reset

func (x *SetBlockRequest) Reset()

func (*SetBlockRequest) String

func (x *SetBlockRequest) String() string

func (*SetBlockRequest) Validate

func (m *SetBlockRequest) Validate() error

Validate checks the field values on SetBlockRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SetBlockRequest) ValidateAll

func (m *SetBlockRequest) ValidateAll() error

ValidateAll checks the field values on SetBlockRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SetBlockRequestMultiError, or nil if none found.

type SetBlockRequestMultiError

type SetBlockRequestMultiError []error

SetBlockRequestMultiError is an error wrapping multiple validation errors returned by SetBlockRequest.ValidateAll() if the designated constraints aren't met.

func (SetBlockRequestMultiError) AllErrors

func (m SetBlockRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetBlockRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type SetBlockRequestValidationError

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

SetBlockRequestValidationError is the validation error returned by SetBlockRequest.Validate if the designated constraints aren't met.

func (SetBlockRequestValidationError) Cause

Cause function returns cause value.

func (SetBlockRequestValidationError) Error

Error satisfies the builtin error interface

func (SetBlockRequestValidationError) ErrorName

func (e SetBlockRequestValidationError) ErrorName() string

ErrorName returns error name.

func (SetBlockRequestValidationError) Field

Field function returns field value.

func (SetBlockRequestValidationError) Key

Key function returns key value.

func (SetBlockRequestValidationError) Reason

Reason function returns reason value.

type SetFollowRequest

type SetFollowRequest struct {
	UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
	Follow bool   `protobuf:"varint,2,opt,name=follow,proto3" json:"follow,omitempty"`
	// contains filtered or unexported fields
}

func (*SetFollowRequest) Descriptor deprecated

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

Deprecated: Use SetFollowRequest.ProtoReflect.Descriptor instead.

func (*SetFollowRequest) GetFollow

func (x *SetFollowRequest) GetFollow() bool

func (*SetFollowRequest) GetUserId

func (x *SetFollowRequest) GetUserId() string

func (*SetFollowRequest) ProtoMessage

func (*SetFollowRequest) ProtoMessage()

func (*SetFollowRequest) ProtoReflect

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

func (*SetFollowRequest) Reset

func (x *SetFollowRequest) Reset()

func (*SetFollowRequest) String

func (x *SetFollowRequest) String() string

func (*SetFollowRequest) Validate

func (m *SetFollowRequest) Validate() error

Validate checks the field values on SetFollowRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SetFollowRequest) ValidateAll

func (m *SetFollowRequest) ValidateAll() error

ValidateAll checks the field values on SetFollowRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SetFollowRequestMultiError, or nil if none found.

type SetFollowRequestMultiError

type SetFollowRequestMultiError []error

SetFollowRequestMultiError is an error wrapping multiple validation errors returned by SetFollowRequest.ValidateAll() if the designated constraints aren't met.

func (SetFollowRequestMultiError) AllErrors

func (m SetFollowRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetFollowRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type SetFollowRequestValidationError

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

SetFollowRequestValidationError is the validation error returned by SetFollowRequest.Validate if the designated constraints aren't met.

func (SetFollowRequestValidationError) Cause

Cause function returns cause value.

func (SetFollowRequestValidationError) Error

Error satisfies the builtin error interface

func (SetFollowRequestValidationError) ErrorName

ErrorName returns error name.

func (SetFollowRequestValidationError) Field

Field function returns field value.

func (SetFollowRequestValidationError) Key

Key function returns key value.

func (SetFollowRequestValidationError) Reason

Reason function returns reason value.

type UnimplementedProfileAPIServer

type UnimplementedProfileAPIServer struct {
}

UnimplementedProfileAPIServer must be embedded to have forward compatible implementations.

func (UnimplementedProfileAPIServer) CanSendDM

func (UnimplementedProfileAPIServer) ChangeAvatar

func (UnimplementedProfileAPIServer) CheckUsername

func (UnimplementedProfileAPIServer) CreateUser

func (UnimplementedProfileAPIServer) DeactivateMe

func (UnimplementedProfileAPIServer) DeleteAccount

func (UnimplementedProfileAPIServer) DeleteTestUser

func (UnimplementedProfileAPIServer) GetBlockList

func (UnimplementedProfileAPIServer) GetBlocked

func (UnimplementedProfileAPIServer) GetFollowers

func (UnimplementedProfileAPIServer) GetPrivacySettings

func (UnimplementedProfileAPIServer) GetStatistics

func (UnimplementedProfileAPIServer) GetUser

func (UnimplementedProfileAPIServer) GetUserByUsername

func (UnimplementedProfileAPIServer) GetUserCounter

func (UnimplementedProfileAPIServer) GetUserIDs

func (UnimplementedProfileAPIServer) GetUsers

func (UnimplementedProfileAPIServer) GetVerifiedUsers

func (UnimplementedProfileAPIServer) GlitterBomb

func (UnimplementedProfileAPIServer) MigrateDataV1ToV2

func (UnimplementedProfileAPIServer) MigrationBlock

func (UnimplementedProfileAPIServer) MigrationFollow

func (UnimplementedProfileAPIServer) SearchForUser

func (UnimplementedProfileAPIServer) SetBanStatus

func (UnimplementedProfileAPIServer) SetBlockStatus

func (UnimplementedProfileAPIServer) SetFollowStatus

func (UnimplementedProfileAPIServer) Unverify

func (UnimplementedProfileAPIServer) Update

func (UnimplementedProfileAPIServer) UpdatePrivacySettings

func (UnimplementedProfileAPIServer) UpdateUserPreferredLanugages

func (UnimplementedProfileAPIServer) Verify

type UnsafeProfileAPIServer

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

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

type UnverifyRequest

type UnverifyRequest struct {
	UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UnverifyRequest) Descriptor deprecated

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

Deprecated: Use UnverifyRequest.ProtoReflect.Descriptor instead.

func (*UnverifyRequest) GetUserId

func (x *UnverifyRequest) GetUserId() string

func (*UnverifyRequest) ProtoMessage

func (*UnverifyRequest) ProtoMessage()

func (*UnverifyRequest) ProtoReflect

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

func (*UnverifyRequest) Reset

func (x *UnverifyRequest) Reset()

func (*UnverifyRequest) String

func (x *UnverifyRequest) String() string

func (*UnverifyRequest) Validate

func (m *UnverifyRequest) Validate() error

Validate checks the field values on UnverifyRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UnverifyRequest) ValidateAll

func (m *UnverifyRequest) ValidateAll() error

ValidateAll checks the field values on UnverifyRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UnverifyRequestMultiError, or nil if none found.

type UnverifyRequestMultiError

type UnverifyRequestMultiError []error

UnverifyRequestMultiError is an error wrapping multiple validation errors returned by UnverifyRequest.ValidateAll() if the designated constraints aren't met.

func (UnverifyRequestMultiError) AllErrors

func (m UnverifyRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UnverifyRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type UnverifyRequestValidationError

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

UnverifyRequestValidationError is the validation error returned by UnverifyRequest.Validate if the designated constraints aren't met.

func (UnverifyRequestValidationError) Cause

Cause function returns cause value.

func (UnverifyRequestValidationError) Error

Error satisfies the builtin error interface

func (UnverifyRequestValidationError) ErrorName

func (e UnverifyRequestValidationError) ErrorName() string

ErrorName returns error name.

func (UnverifyRequestValidationError) Field

Field function returns field value.

func (UnverifyRequestValidationError) Key

Key function returns key value.

func (UnverifyRequestValidationError) Reason

Reason function returns reason value.

type UnverifyResponse

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

func (*UnverifyResponse) Descriptor deprecated

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

Deprecated: Use UnverifyResponse.ProtoReflect.Descriptor instead.

func (*UnverifyResponse) ProtoMessage

func (*UnverifyResponse) ProtoMessage()

func (*UnverifyResponse) ProtoReflect

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

func (*UnverifyResponse) Reset

func (x *UnverifyResponse) Reset()

func (*UnverifyResponse) String

func (x *UnverifyResponse) String() string

func (*UnverifyResponse) Validate

func (m *UnverifyResponse) Validate() error

Validate checks the field values on UnverifyResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UnverifyResponse) ValidateAll

func (m *UnverifyResponse) ValidateAll() error

ValidateAll checks the field values on UnverifyResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UnverifyResponseMultiError, or nil if none found.

type UnverifyResponseMultiError

type UnverifyResponseMultiError []error

UnverifyResponseMultiError is an error wrapping multiple validation errors returned by UnverifyResponse.ValidateAll() if the designated constraints aren't met.

func (UnverifyResponseMultiError) AllErrors

func (m UnverifyResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UnverifyResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type UnverifyResponseValidationError

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

UnverifyResponseValidationError is the validation error returned by UnverifyResponse.Validate if the designated constraints aren't met.

func (UnverifyResponseValidationError) Cause

Cause function returns cause value.

func (UnverifyResponseValidationError) Error

Error satisfies the builtin error interface

func (UnverifyResponseValidationError) ErrorName

ErrorName returns error name.

func (UnverifyResponseValidationError) Field

Field function returns field value.

func (UnverifyResponseValidationError) Key

Key function returns key value.

func (UnverifyResponseValidationError) Reason

Reason function returns reason value.

type UpdatePrivacySettingsRequest

type UpdatePrivacySettingsRequest struct {
	OnlyDmFromFollowed bool `protobuf:"varint,1,opt,name=only_dm_from_followed,json=onlyDmFromFollowed,proto3" json:"only_dm_from_followed,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdatePrivacySettingsRequest) Descriptor deprecated

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

Deprecated: Use UpdatePrivacySettingsRequest.ProtoReflect.Descriptor instead.

func (*UpdatePrivacySettingsRequest) GetOnlyDmFromFollowed

func (x *UpdatePrivacySettingsRequest) GetOnlyDmFromFollowed() bool

func (*UpdatePrivacySettingsRequest) ProtoMessage

func (*UpdatePrivacySettingsRequest) ProtoMessage()

func (*UpdatePrivacySettingsRequest) ProtoReflect

func (*UpdatePrivacySettingsRequest) Reset

func (x *UpdatePrivacySettingsRequest) Reset()

func (*UpdatePrivacySettingsRequest) String

func (*UpdatePrivacySettingsRequest) Validate

func (m *UpdatePrivacySettingsRequest) Validate() error

Validate checks the field values on UpdatePrivacySettingsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UpdatePrivacySettingsRequest) ValidateAll

func (m *UpdatePrivacySettingsRequest) ValidateAll() error

ValidateAll checks the field values on UpdatePrivacySettingsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UpdatePrivacySettingsRequestMultiError, or nil if none found.

type UpdatePrivacySettingsRequestMultiError

type UpdatePrivacySettingsRequestMultiError []error

UpdatePrivacySettingsRequestMultiError is an error wrapping multiple validation errors returned by UpdatePrivacySettingsRequest.ValidateAll() if the designated constraints aren't met.

func (UpdatePrivacySettingsRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (UpdatePrivacySettingsRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type UpdatePrivacySettingsRequestValidationError

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

UpdatePrivacySettingsRequestValidationError is the validation error returned by UpdatePrivacySettingsRequest.Validate if the designated constraints aren't met.

func (UpdatePrivacySettingsRequestValidationError) Cause

Cause function returns cause value.

func (UpdatePrivacySettingsRequestValidationError) Error

Error satisfies the builtin error interface

func (UpdatePrivacySettingsRequestValidationError) ErrorName

ErrorName returns error name.

func (UpdatePrivacySettingsRequestValidationError) Field

Field function returns field value.

func (UpdatePrivacySettingsRequestValidationError) Key

Key function returns key value.

func (UpdatePrivacySettingsRequestValidationError) Reason

Reason function returns reason value.

type UpdateUserPreferredLanugagesRequest

type UpdateUserPreferredLanugagesRequest struct {
	Languages []string `protobuf:"bytes,1,rep,name=languages,proto3" json:"languages,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateUserPreferredLanugagesRequest) Descriptor deprecated

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

Deprecated: Use UpdateUserPreferredLanugagesRequest.ProtoReflect.Descriptor instead.

func (*UpdateUserPreferredLanugagesRequest) GetLanguages

func (x *UpdateUserPreferredLanugagesRequest) GetLanguages() []string

func (*UpdateUserPreferredLanugagesRequest) ProtoMessage

func (*UpdateUserPreferredLanugagesRequest) ProtoMessage()

func (*UpdateUserPreferredLanugagesRequest) ProtoReflect

func (*UpdateUserPreferredLanugagesRequest) Reset

func (*UpdateUserPreferredLanugagesRequest) String

func (*UpdateUserPreferredLanugagesRequest) Validate

Validate checks the field values on UpdateUserPreferredLanugagesRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UpdateUserPreferredLanugagesRequest) ValidateAll

func (m *UpdateUserPreferredLanugagesRequest) ValidateAll() error

ValidateAll checks the field values on UpdateUserPreferredLanugagesRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UpdateUserPreferredLanugagesRequestMultiError, or nil if none found.

type UpdateUserPreferredLanugagesRequestMultiError

type UpdateUserPreferredLanugagesRequestMultiError []error

UpdateUserPreferredLanugagesRequestMultiError is an error wrapping multiple validation errors returned by UpdateUserPreferredLanugagesRequest.ValidateAll() if the designated constraints aren't met.

func (UpdateUserPreferredLanugagesRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (UpdateUserPreferredLanugagesRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type UpdateUserPreferredLanugagesRequestValidationError

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

UpdateUserPreferredLanugagesRequestValidationError is the validation error returned by UpdateUserPreferredLanugagesRequest.Validate if the designated constraints aren't met.

func (UpdateUserPreferredLanugagesRequestValidationError) Cause

Cause function returns cause value.

func (UpdateUserPreferredLanugagesRequestValidationError) Error

Error satisfies the builtin error interface

func (UpdateUserPreferredLanugagesRequestValidationError) ErrorName

ErrorName returns error name.

func (UpdateUserPreferredLanugagesRequestValidationError) Field

Field function returns field value.

func (UpdateUserPreferredLanugagesRequestValidationError) Key

Key function returns key value.

func (UpdateUserPreferredLanugagesRequestValidationError) Reason

Reason function returns reason value.

type User

type User struct {
	Id        string          `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Data      *User_Data      `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	Counters  *User_Counters  `protobuf:"bytes,3,opt,name=counters,proto3" json:"counters,omitempty"`
	Relations *User_Relations `protobuf:"bytes,4,opt,name=relations,proto3" json:"relations,omitempty"`
	// contains filtered or unexported fields
}

func (*User) Descriptor deprecated

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

Deprecated: Use User.ProtoReflect.Descriptor instead.

func (*User) GetCounters

func (x *User) GetCounters() *User_Counters

func (*User) GetData

func (x *User) GetData() *User_Data

func (*User) GetId

func (x *User) GetId() string

func (*User) GetRelations

func (x *User) GetRelations() *User_Relations

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 (m *User) Validate() error

Validate checks the field values on User with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*User) ValidateAll

func (m *User) ValidateAll() error

ValidateAll checks the field values on User with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UserMultiError, or nil if none found.

type UserExcerpt

type UserExcerpt struct {
	Id        string            `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Data      *UserExcerpt_Data `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	Relations *User_Relations   `protobuf:"bytes,3,opt,name=relations,proto3" json:"relations,omitempty"`
	// contains filtered or unexported fields
}

func (*UserExcerpt) Descriptor deprecated

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

Deprecated: Use UserExcerpt.ProtoReflect.Descriptor instead.

func (*UserExcerpt) GetData

func (x *UserExcerpt) GetData() *UserExcerpt_Data

func (*UserExcerpt) GetId

func (x *UserExcerpt) GetId() string

func (*UserExcerpt) GetRelations

func (x *UserExcerpt) GetRelations() *User_Relations

func (*UserExcerpt) ProtoMessage

func (*UserExcerpt) ProtoMessage()

func (*UserExcerpt) ProtoReflect

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

func (*UserExcerpt) Reset

func (x *UserExcerpt) Reset()

func (*UserExcerpt) String

func (x *UserExcerpt) String() string

func (*UserExcerpt) Validate

func (m *UserExcerpt) Validate() error

Validate checks the field values on UserExcerpt with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UserExcerpt) ValidateAll

func (m *UserExcerpt) ValidateAll() error

ValidateAll checks the field values on UserExcerpt with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UserExcerptMultiError, or nil if none found.

type UserExcerptMultiError

type UserExcerptMultiError []error

UserExcerptMultiError is an error wrapping multiple validation errors returned by UserExcerpt.ValidateAll() if the designated constraints aren't met.

func (UserExcerptMultiError) AllErrors

func (m UserExcerptMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserExcerptMultiError) Error

func (m UserExcerptMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type UserExcerptValidationError

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

UserExcerptValidationError is the validation error returned by UserExcerpt.Validate if the designated constraints aren't met.

func (UserExcerptValidationError) Cause

Cause function returns cause value.

func (UserExcerptValidationError) Error

Error satisfies the builtin error interface

func (UserExcerptValidationError) ErrorName

func (e UserExcerptValidationError) ErrorName() string

ErrorName returns error name.

func (UserExcerptValidationError) Field

Field function returns field value.

func (UserExcerptValidationError) Key

Key function returns key value.

func (UserExcerptValidationError) Reason

Reason function returns reason value.

type UserExcerpt_Data

type UserExcerpt_Data struct {
	Username        string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
	FullName        string `protobuf:"bytes,2,opt,name=fullName,proto3" json:"fullName,omitempty"`
	ProfileImageUrl string `protobuf:"bytes,3,opt,name=profileImageUrl,proto3" json:"profileImageUrl,omitempty"`
	IsVerified      bool   `protobuf:"varint,4,opt,name=is_verified,json=isVerified,proto3" json:"is_verified,omitempty"`
	// contains filtered or unexported fields
}

func (*UserExcerpt_Data) Descriptor deprecated

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

Deprecated: Use UserExcerpt_Data.ProtoReflect.Descriptor instead.

func (*UserExcerpt_Data) GetFullName

func (x *UserExcerpt_Data) GetFullName() string

func (*UserExcerpt_Data) GetIsVerified

func (x *UserExcerpt_Data) GetIsVerified() bool

func (*UserExcerpt_Data) GetProfileImageUrl

func (x *UserExcerpt_Data) GetProfileImageUrl() string

func (*UserExcerpt_Data) GetUsername

func (x *UserExcerpt_Data) GetUsername() string

func (*UserExcerpt_Data) ProtoMessage

func (*UserExcerpt_Data) ProtoMessage()

func (*UserExcerpt_Data) ProtoReflect

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

func (*UserExcerpt_Data) Reset

func (x *UserExcerpt_Data) Reset()

func (*UserExcerpt_Data) String

func (x *UserExcerpt_Data) String() string

func (*UserExcerpt_Data) Validate

func (m *UserExcerpt_Data) Validate() error

Validate checks the field values on UserExcerpt_Data with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UserExcerpt_Data) ValidateAll

func (m *UserExcerpt_Data) ValidateAll() error

ValidateAll checks the field values on UserExcerpt_Data with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UserExcerpt_DataMultiError, or nil if none found.

type UserExcerpt_DataMultiError

type UserExcerpt_DataMultiError []error

UserExcerpt_DataMultiError is an error wrapping multiple validation errors returned by UserExcerpt_Data.ValidateAll() if the designated constraints aren't met.

func (UserExcerpt_DataMultiError) AllErrors

func (m UserExcerpt_DataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserExcerpt_DataMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type UserExcerpt_DataValidationError

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

UserExcerpt_DataValidationError is the validation error returned by UserExcerpt_Data.Validate if the designated constraints aren't met.

func (UserExcerpt_DataValidationError) Cause

Cause function returns cause value.

func (UserExcerpt_DataValidationError) Error

Error satisfies the builtin error interface

func (UserExcerpt_DataValidationError) ErrorName

ErrorName returns error name.

func (UserExcerpt_DataValidationError) Field

Field function returns field value.

func (UserExcerpt_DataValidationError) Key

Key function returns key value.

func (UserExcerpt_DataValidationError) Reason

Reason function returns reason value.

type UserInput

type UserInput struct {
	Data *User_Data `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInput) Descriptor deprecated

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

Deprecated: Use UserInput.ProtoReflect.Descriptor instead.

func (*UserInput) GetData

func (x *UserInput) GetData() *User_Data

func (*UserInput) ProtoMessage

func (*UserInput) ProtoMessage()

func (*UserInput) ProtoReflect

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

func (*UserInput) Reset

func (x *UserInput) Reset()

func (*UserInput) String

func (x *UserInput) String() string

func (*UserInput) Validate

func (m *UserInput) Validate() error

Validate checks the field values on UserInput with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UserInput) ValidateAll

func (m *UserInput) ValidateAll() error

ValidateAll checks the field values on UserInput with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UserInputMultiError, or nil if none found.

type UserInputMultiError

type UserInputMultiError []error

UserInputMultiError is an error wrapping multiple validation errors returned by UserInput.ValidateAll() if the designated constraints aren't met.

func (UserInputMultiError) AllErrors

func (m UserInputMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserInputMultiError) Error

func (m UserInputMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type UserInputValidationError

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

UserInputValidationError is the validation error returned by UserInput.Validate if the designated constraints aren't met.

func (UserInputValidationError) Cause

func (e UserInputValidationError) Cause() error

Cause function returns cause value.

func (UserInputValidationError) Error

func (e UserInputValidationError) Error() string

Error satisfies the builtin error interface

func (UserInputValidationError) ErrorName

func (e UserInputValidationError) ErrorName() string

ErrorName returns error name.

func (UserInputValidationError) Field

func (e UserInputValidationError) Field() string

Field function returns field value.

func (UserInputValidationError) Key

Key function returns key value.

func (UserInputValidationError) Reason

func (e UserInputValidationError) Reason() string

Reason function returns reason value.

type UserMultiError

type UserMultiError []error

UserMultiError is an error wrapping multiple validation errors returned by User.ValidateAll() if the designated constraints aren't met.

func (UserMultiError) AllErrors

func (m UserMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserMultiError) Error

func (m UserMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type UserSearch

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

func (*UserSearch) Descriptor deprecated

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

Deprecated: Use UserSearch.ProtoReflect.Descriptor instead.

func (*UserSearch) GetUrl

func (x *UserSearch) GetUrl() string

func (*UserSearch) GetUsername

func (x *UserSearch) GetUsername() string

func (*UserSearch) ProtoMessage

func (*UserSearch) ProtoMessage()

func (*UserSearch) ProtoReflect

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

func (*UserSearch) Reset

func (x *UserSearch) Reset()

func (*UserSearch) String

func (x *UserSearch) String() string

func (*UserSearch) Validate

func (m *UserSearch) Validate() error

Validate checks the field values on UserSearch with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UserSearch) ValidateAll

func (m *UserSearch) ValidateAll() error

ValidateAll checks the field values on UserSearch with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UserSearchMultiError, or nil if none found.

type UserSearchMultiError

type UserSearchMultiError []error

UserSearchMultiError is an error wrapping multiple validation errors returned by UserSearch.ValidateAll() if the designated constraints aren't met.

func (UserSearchMultiError) AllErrors

func (m UserSearchMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserSearchMultiError) Error

func (m UserSearchMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type UserSearchValidationError

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

UserSearchValidationError is the validation error returned by UserSearch.Validate if the designated constraints aren't met.

func (UserSearchValidationError) Cause

func (e UserSearchValidationError) Cause() error

Cause function returns cause value.

func (UserSearchValidationError) Error

Error satisfies the builtin error interface

func (UserSearchValidationError) ErrorName

func (e UserSearchValidationError) ErrorName() string

ErrorName returns error name.

func (UserSearchValidationError) Field

Field function returns field value.

func (UserSearchValidationError) Key

Key function returns key value.

func (UserSearchValidationError) Reason

func (e UserSearchValidationError) Reason() string

Reason function returns reason value.

type UserStatus

type UserStatus int32
const (
	UserStatus_USER_STATUS_UNSPECIFIED UserStatus = 0
	UserStatus_USER_STATUS_ACTIVE      UserStatus = 1
	UserStatus_USER_STATUS_DEACTIVATED UserStatus = 2
)

func (UserStatus) Descriptor

func (UserStatus) Descriptor() protoreflect.EnumDescriptor

func (UserStatus) Enum

func (x UserStatus) Enum() *UserStatus

func (UserStatus) EnumDescriptor deprecated

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

Deprecated: Use UserStatus.Descriptor instead.

func (UserStatus) Number

func (x UserStatus) Number() protoreflect.EnumNumber

func (UserStatus) String

func (x UserStatus) String() string

func (UserStatus) Type

type UserUpdateMsg

type UserUpdateMsg struct {
	Username      *string  `protobuf:"bytes,2,opt,name=username,proto3,oneof" json:"username,omitempty"`
	Name          *string  `protobuf:"bytes,3,opt,name=name,proto3,oneof" json:"name,omitempty"`
	Bio           *string  `protobuf:"bytes,4,opt,name=bio,proto3,oneof" json:"bio,omitempty"`
	CountryCode   *string  `protobuf:"bytes,5,opt,name=country_code,json=countryCode,proto3,oneof" json:"country_code,omitempty"`
	LanguageCodes []string `protobuf:"bytes,6,rep,name=language_codes,json=languageCodes,proto3" json:"language_codes,omitempty"`
	// TODO: change to birthday after align with frontend
	Age                  *int64  `protobuf:"varint,7,opt,name=age,proto3,oneof" json:"age,omitempty"`
	NotificationsEnabled *bool   `` /* 128-byte string literal not displayed */
	PhoneNumber          *string `protobuf:"bytes,9,opt,name=phone_number,json=phoneNumber,proto3,oneof" json:"phone_number,omitempty"`
	Email                *string `protobuf:"bytes,10,opt,name=email,proto3,oneof" json:"email,omitempty"`
	ProfileImageUrl      *string `protobuf:"bytes,11,opt,name=profile_image_url,json=profileImageUrl,proto3,oneof" json:"profile_image_url,omitempty"`
	// contains filtered or unexported fields
}

func (*UserUpdateMsg) Descriptor deprecated

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

Deprecated: Use UserUpdateMsg.ProtoReflect.Descriptor instead.

func (*UserUpdateMsg) GetAge

func (x *UserUpdateMsg) GetAge() int64

func (*UserUpdateMsg) GetBio

func (x *UserUpdateMsg) GetBio() string

func (*UserUpdateMsg) GetCountryCode

func (x *UserUpdateMsg) GetCountryCode() string

func (*UserUpdateMsg) GetEmail

func (x *UserUpdateMsg) GetEmail() string

func (*UserUpdateMsg) GetLanguageCodes

func (x *UserUpdateMsg) GetLanguageCodes() []string

func (*UserUpdateMsg) GetName

func (x *UserUpdateMsg) GetName() string

func (*UserUpdateMsg) GetNotificationsEnabled

func (x *UserUpdateMsg) GetNotificationsEnabled() bool

func (*UserUpdateMsg) GetPhoneNumber

func (x *UserUpdateMsg) GetPhoneNumber() string

func (*UserUpdateMsg) GetProfileImageUrl

func (x *UserUpdateMsg) GetProfileImageUrl() string

func (*UserUpdateMsg) GetUsername

func (x *UserUpdateMsg) GetUsername() string

func (*UserUpdateMsg) ProtoMessage

func (*UserUpdateMsg) ProtoMessage()

func (*UserUpdateMsg) ProtoReflect

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

func (*UserUpdateMsg) Reset

func (x *UserUpdateMsg) Reset()

func (*UserUpdateMsg) String

func (x *UserUpdateMsg) String() string

func (*UserUpdateMsg) Validate

func (m *UserUpdateMsg) Validate() error

Validate checks the field values on UserUpdateMsg with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UserUpdateMsg) ValidateAll

func (m *UserUpdateMsg) ValidateAll() error

ValidateAll checks the field values on UserUpdateMsg with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UserUpdateMsgMultiError, or nil if none found.

type UserUpdateMsgMultiError

type UserUpdateMsgMultiError []error

UserUpdateMsgMultiError is an error wrapping multiple validation errors returned by UserUpdateMsg.ValidateAll() if the designated constraints aren't met.

func (UserUpdateMsgMultiError) AllErrors

func (m UserUpdateMsgMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserUpdateMsgMultiError) Error

func (m UserUpdateMsgMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type UserUpdateMsgValidationError

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

UserUpdateMsgValidationError is the validation error returned by UserUpdateMsg.Validate if the designated constraints aren't met.

func (UserUpdateMsgValidationError) Cause

Cause function returns cause value.

func (UserUpdateMsgValidationError) Error

Error satisfies the builtin error interface

func (UserUpdateMsgValidationError) ErrorName

func (e UserUpdateMsgValidationError) ErrorName() string

ErrorName returns error name.

func (UserUpdateMsgValidationError) Field

Field function returns field value.

func (UserUpdateMsgValidationError) Key

Key function returns key value.

func (UserUpdateMsgValidationError) Reason

Reason function returns reason value.

type UserUpdateRequest

type UserUpdateRequest struct {
	Info *UserUpdateMsg `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*UserUpdateRequest) Descriptor deprecated

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

Deprecated: Use UserUpdateRequest.ProtoReflect.Descriptor instead.

func (*UserUpdateRequest) GetInfo

func (x *UserUpdateRequest) GetInfo() *UserUpdateMsg

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 (m *UserUpdateRequest) Validate() error

Validate checks the field values on UserUpdateRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UserUpdateRequest) ValidateAll

func (m *UserUpdateRequest) ValidateAll() error

ValidateAll checks the field values on UserUpdateRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UserUpdateRequestMultiError, or nil if none found.

type UserUpdateRequestMultiError

type UserUpdateRequestMultiError []error

UserUpdateRequestMultiError is an error wrapping multiple validation errors returned by UserUpdateRequest.ValidateAll() if the designated constraints aren't met.

func (UserUpdateRequestMultiError) AllErrors

func (m UserUpdateRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserUpdateRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type UserUpdateRequestValidationError

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

UserUpdateRequestValidationError is the validation error returned by UserUpdateRequest.Validate if the designated constraints aren't met.

func (UserUpdateRequestValidationError) Cause

Cause function returns cause value.

func (UserUpdateRequestValidationError) Error

Error satisfies the builtin error interface

func (UserUpdateRequestValidationError) ErrorName

ErrorName returns error name.

func (UserUpdateRequestValidationError) Field

Field function returns field value.

func (UserUpdateRequestValidationError) Key

Key function returns key value.

func (UserUpdateRequestValidationError) Reason

Reason function returns reason value.

type UserUpdateResponse

type UserUpdateResponse struct {
	User      *UserUpdateMsg `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
	UpdatedAt string         `protobuf:"bytes,2,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
	// contains filtered or unexported fields
}

func (*UserUpdateResponse) Descriptor deprecated

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

Deprecated: Use UserUpdateResponse.ProtoReflect.Descriptor instead.

func (*UserUpdateResponse) GetUpdatedAt

func (x *UserUpdateResponse) GetUpdatedAt() string

func (*UserUpdateResponse) GetUser

func (x *UserUpdateResponse) GetUser() *UserUpdateMsg

func (*UserUpdateResponse) ProtoMessage

func (*UserUpdateResponse) ProtoMessage()

func (*UserUpdateResponse) ProtoReflect

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

func (*UserUpdateResponse) Reset

func (x *UserUpdateResponse) Reset()

func (*UserUpdateResponse) String

func (x *UserUpdateResponse) String() string

func (*UserUpdateResponse) Validate

func (m *UserUpdateResponse) Validate() error

Validate checks the field values on UserUpdateResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UserUpdateResponse) ValidateAll

func (m *UserUpdateResponse) ValidateAll() error

ValidateAll checks the field values on UserUpdateResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UserUpdateResponseMultiError, or nil if none found.

type UserUpdateResponseMultiError

type UserUpdateResponseMultiError []error

UserUpdateResponseMultiError is an error wrapping multiple validation errors returned by UserUpdateResponse.ValidateAll() if the designated constraints aren't met.

func (UserUpdateResponseMultiError) AllErrors

func (m UserUpdateResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserUpdateResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type UserUpdateResponseValidationError

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

UserUpdateResponseValidationError is the validation error returned by UserUpdateResponse.Validate if the designated constraints aren't met.

func (UserUpdateResponseValidationError) Cause

Cause function returns cause value.

func (UserUpdateResponseValidationError) Error

Error satisfies the builtin error interface

func (UserUpdateResponseValidationError) ErrorName

ErrorName returns error name.

func (UserUpdateResponseValidationError) Field

Field function returns field value.

func (UserUpdateResponseValidationError) Key

Key function returns key value.

func (UserUpdateResponseValidationError) Reason

Reason function returns reason value.

type UserValidationError

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

UserValidationError is the validation error returned by User.Validate if the designated constraints aren't met.

func (UserValidationError) Cause

func (e UserValidationError) Cause() error

Cause function returns cause value.

func (UserValidationError) Error

func (e UserValidationError) Error() string

Error satisfies the builtin error interface

func (UserValidationError) ErrorName

func (e UserValidationError) ErrorName() string

ErrorName returns error name.

func (UserValidationError) Field

func (e UserValidationError) Field() string

Field function returns field value.

func (UserValidationError) Key

func (e UserValidationError) Key() bool

Key function returns key value.

func (UserValidationError) Reason

func (e UserValidationError) Reason() string

Reason function returns reason value.

type User_Counters

type User_Counters struct {
	Views     int64 `protobuf:"varint,1,opt,name=views,proto3" json:"views,omitempty"`
	Likes     int64 `protobuf:"varint,2,opt,name=likes,proto3" json:"likes,omitempty"`
	Followers int64 `protobuf:"varint,3,opt,name=followers,proto3" json:"followers,omitempty"`
	// contains filtered or unexported fields
}

func (*User_Counters) Descriptor deprecated

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

Deprecated: Use User_Counters.ProtoReflect.Descriptor instead.

func (*User_Counters) GetFollowers

func (x *User_Counters) GetFollowers() int64

func (*User_Counters) GetLikes

func (x *User_Counters) GetLikes() int64

func (*User_Counters) GetViews

func (x *User_Counters) GetViews() int64

func (*User_Counters) ProtoMessage

func (*User_Counters) ProtoMessage()

func (*User_Counters) ProtoReflect

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

func (*User_Counters) Reset

func (x *User_Counters) Reset()

func (*User_Counters) String

func (x *User_Counters) String() string

func (*User_Counters) Validate

func (m *User_Counters) Validate() error

Validate checks the field values on User_Counters with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*User_Counters) ValidateAll

func (m *User_Counters) ValidateAll() error

ValidateAll checks the field values on User_Counters with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in User_CountersMultiError, or nil if none found.

type User_CountersMultiError

type User_CountersMultiError []error

User_CountersMultiError is an error wrapping multiple validation errors returned by User_Counters.ValidateAll() if the designated constraints aren't met.

func (User_CountersMultiError) AllErrors

func (m User_CountersMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (User_CountersMultiError) Error

func (m User_CountersMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type User_CountersValidationError

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

User_CountersValidationError is the validation error returned by User_Counters.Validate if the designated constraints aren't met.

func (User_CountersValidationError) Cause

Cause function returns cause value.

func (User_CountersValidationError) Error

Error satisfies the builtin error interface

func (User_CountersValidationError) ErrorName

func (e User_CountersValidationError) ErrorName() string

ErrorName returns error name.

func (User_CountersValidationError) Field

Field function returns field value.

func (User_CountersValidationError) Key

Key function returns key value.

func (User_CountersValidationError) Reason

Reason function returns reason value.

type User_Data

type User_Data struct {
	Username             string     `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
	FullName             string     `protobuf:"bytes,2,opt,name=fullName,proto3" json:"fullName,omitempty"`
	Bio                  string     `protobuf:"bytes,3,opt,name=bio,proto3" json:"bio,omitempty"`
	CountryCode          string     `protobuf:"bytes,4,opt,name=countryCode,proto3" json:"countryCode,omitempty"`
	LanguageCodes        []string   `protobuf:"bytes,5,rep,name=languageCodes,proto3" json:"languageCodes,omitempty"`
	Age                  int64      `protobuf:"varint,6,opt,name=age,proto3" json:"age,omitempty"`
	ProfileImageUrl      string     `protobuf:"bytes,7,opt,name=profileImageUrl,proto3" json:"profileImageUrl,omitempty"`
	Email                string     `protobuf:"bytes,9,opt,name=email,proto3" json:"email,omitempty"`
	Phone                string     `protobuf:"bytes,10,opt,name=phone,proto3" json:"phone,omitempty"`
	NotificationsEnabled bool       `protobuf:"varint,11,opt,name=notificationsEnabled,proto3" json:"notificationsEnabled,omitempty"`
	IsVerified           bool       `protobuf:"varint,12,opt,name=isVerified,proto3" json:"isVerified,omitempty"`
	IsBanned             bool       `protobuf:"varint,13,opt,name=isBanned,proto3" json:"isBanned,omitempty"`
	Version              string     `protobuf:"bytes,14,opt,name=version,proto3" json:"version,omitempty"`
	Timezone             string     `protobuf:"bytes,15,opt,name=timezone,proto3" json:"timezone,omitempty"`
	IsMigrated           bool       `protobuf:"varint,16,opt,name=isMigrated,proto3" json:"isMigrated,omitempty"`
	FirebaseId           string     `protobuf:"bytes,17,opt,name=firebaseId,proto3" json:"firebaseId,omitempty"`
	ShareLink            string     `protobuf:"bytes,18,opt,name=share_link,json=shareLink,proto3" json:"share_link,omitempty"`
	Status               UserStatus `protobuf:"varint,19,opt,name=status,proto3,enum=profile_api.v1.UserStatus" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*User_Data) Descriptor deprecated

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

Deprecated: Use User_Data.ProtoReflect.Descriptor instead.

func (*User_Data) GetAge

func (x *User_Data) GetAge() int64

func (*User_Data) GetBio

func (x *User_Data) GetBio() string

func (*User_Data) GetCountryCode

func (x *User_Data) GetCountryCode() string

func (*User_Data) GetEmail

func (x *User_Data) GetEmail() string

func (*User_Data) GetFirebaseId

func (x *User_Data) GetFirebaseId() string

func (*User_Data) GetFullName

func (x *User_Data) GetFullName() string

func (*User_Data) GetIsBanned

func (x *User_Data) GetIsBanned() bool

func (*User_Data) GetIsMigrated

func (x *User_Data) GetIsMigrated() bool

func (*User_Data) GetIsVerified

func (x *User_Data) GetIsVerified() bool

func (*User_Data) GetLanguageCodes

func (x *User_Data) GetLanguageCodes() []string

func (*User_Data) GetNotificationsEnabled

func (x *User_Data) GetNotificationsEnabled() bool

func (*User_Data) GetPhone

func (x *User_Data) GetPhone() string

func (*User_Data) GetProfileImageUrl

func (x *User_Data) GetProfileImageUrl() string
func (x *User_Data) GetShareLink() string

func (*User_Data) GetStatus

func (x *User_Data) GetStatus() UserStatus

func (*User_Data) GetTimezone

func (x *User_Data) GetTimezone() string

func (*User_Data) GetUsername

func (x *User_Data) GetUsername() string

func (*User_Data) GetVersion

func (x *User_Data) GetVersion() string

func (*User_Data) ProtoMessage

func (*User_Data) ProtoMessage()

func (*User_Data) ProtoReflect

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

func (*User_Data) Reset

func (x *User_Data) Reset()

func (*User_Data) String

func (x *User_Data) String() string

func (*User_Data) Validate

func (m *User_Data) Validate() error

Validate checks the field values on User_Data with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*User_Data) ValidateAll

func (m *User_Data) ValidateAll() error

ValidateAll checks the field values on User_Data with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in User_DataMultiError, or nil if none found.

type User_DataMultiError

type User_DataMultiError []error

User_DataMultiError is an error wrapping multiple validation errors returned by User_Data.ValidateAll() if the designated constraints aren't met.

func (User_DataMultiError) AllErrors

func (m User_DataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (User_DataMultiError) Error

func (m User_DataMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type User_DataValidationError

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

User_DataValidationError is the validation error returned by User_Data.Validate if the designated constraints aren't met.

func (User_DataValidationError) Cause

func (e User_DataValidationError) Cause() error

Cause function returns cause value.

func (User_DataValidationError) Error

func (e User_DataValidationError) Error() string

Error satisfies the builtin error interface

func (User_DataValidationError) ErrorName

func (e User_DataValidationError) ErrorName() string

ErrorName returns error name.

func (User_DataValidationError) Field

func (e User_DataValidationError) Field() string

Field function returns field value.

func (User_DataValidationError) Key

Key function returns key value.

func (User_DataValidationError) Reason

func (e User_DataValidationError) Reason() string

Reason function returns reason value.

type User_Relations

type User_Relations struct {
	Following  bool `protobuf:"varint,1,opt,name=following,proto3" json:"following,omitempty"`
	FollowedBy bool `protobuf:"varint,2,opt,name=followedBy,proto3" json:"followedBy,omitempty"`
	Blocking   bool `protobuf:"varint,3,opt,name=blocking,proto3" json:"blocking,omitempty"`
	// contains filtered or unexported fields
}

func (*User_Relations) Descriptor deprecated

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

Deprecated: Use User_Relations.ProtoReflect.Descriptor instead.

func (*User_Relations) GetBlocking

func (x *User_Relations) GetBlocking() bool

func (*User_Relations) GetFollowedBy

func (x *User_Relations) GetFollowedBy() bool

func (*User_Relations) GetFollowing

func (x *User_Relations) GetFollowing() bool

func (*User_Relations) ProtoMessage

func (*User_Relations) ProtoMessage()

func (*User_Relations) ProtoReflect

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

func (*User_Relations) Reset

func (x *User_Relations) Reset()

func (*User_Relations) String

func (x *User_Relations) String() string

func (*User_Relations) Validate

func (m *User_Relations) Validate() error

Validate checks the field values on User_Relations with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*User_Relations) ValidateAll

func (m *User_Relations) ValidateAll() error

ValidateAll checks the field values on User_Relations with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in User_RelationsMultiError, or nil if none found.

type User_RelationsMultiError

type User_RelationsMultiError []error

User_RelationsMultiError is an error wrapping multiple validation errors returned by User_Relations.ValidateAll() if the designated constraints aren't met.

func (User_RelationsMultiError) AllErrors

func (m User_RelationsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (User_RelationsMultiError) Error

func (m User_RelationsMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type User_RelationsValidationError

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

User_RelationsValidationError is the validation error returned by User_Relations.Validate if the designated constraints aren't met.

func (User_RelationsValidationError) Cause

Cause function returns cause value.

func (User_RelationsValidationError) Error

Error satisfies the builtin error interface

func (User_RelationsValidationError) ErrorName

func (e User_RelationsValidationError) ErrorName() string

ErrorName returns error name.

func (User_RelationsValidationError) Field

Field function returns field value.

func (User_RelationsValidationError) Key

Key function returns key value.

func (User_RelationsValidationError) Reason

Reason function returns reason value.

type VerifyRequest

type VerifyRequest struct {
	UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyRequest) Descriptor deprecated

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

Deprecated: Use VerifyRequest.ProtoReflect.Descriptor instead.

func (*VerifyRequest) GetUserId

func (x *VerifyRequest) GetUserId() string

func (*VerifyRequest) ProtoMessage

func (*VerifyRequest) ProtoMessage()

func (*VerifyRequest) ProtoReflect

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

func (*VerifyRequest) Reset

func (x *VerifyRequest) Reset()

func (*VerifyRequest) String

func (x *VerifyRequest) String() string

func (*VerifyRequest) Validate

func (m *VerifyRequest) Validate() error

Validate checks the field values on VerifyRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*VerifyRequest) ValidateAll

func (m *VerifyRequest) ValidateAll() error

ValidateAll checks the field values on VerifyRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in VerifyRequestMultiError, or nil if none found.

type VerifyRequestMultiError

type VerifyRequestMultiError []error

VerifyRequestMultiError is an error wrapping multiple validation errors returned by VerifyRequest.ValidateAll() if the designated constraints aren't met.

func (VerifyRequestMultiError) AllErrors

func (m VerifyRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (VerifyRequestMultiError) Error

func (m VerifyRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type VerifyRequestValidationError

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

VerifyRequestValidationError is the validation error returned by VerifyRequest.Validate if the designated constraints aren't met.

func (VerifyRequestValidationError) Cause

Cause function returns cause value.

func (VerifyRequestValidationError) Error

Error satisfies the builtin error interface

func (VerifyRequestValidationError) ErrorName

func (e VerifyRequestValidationError) ErrorName() string

ErrorName returns error name.

func (VerifyRequestValidationError) Field

Field function returns field value.

func (VerifyRequestValidationError) Key

Key function returns key value.

func (VerifyRequestValidationError) Reason

Reason function returns reason value.

type VerifyResponse

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

func (*VerifyResponse) Descriptor deprecated

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

Deprecated: Use VerifyResponse.ProtoReflect.Descriptor instead.

func (*VerifyResponse) ProtoMessage

func (*VerifyResponse) ProtoMessage()

func (*VerifyResponse) ProtoReflect

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

func (*VerifyResponse) Reset

func (x *VerifyResponse) Reset()

func (*VerifyResponse) String

func (x *VerifyResponse) String() string

func (*VerifyResponse) Validate

func (m *VerifyResponse) Validate() error

Validate checks the field values on VerifyResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*VerifyResponse) ValidateAll

func (m *VerifyResponse) ValidateAll() error

ValidateAll checks the field values on VerifyResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in VerifyResponseMultiError, or nil if none found.

type VerifyResponseMultiError

type VerifyResponseMultiError []error

VerifyResponseMultiError is an error wrapping multiple validation errors returned by VerifyResponse.ValidateAll() if the designated constraints aren't met.

func (VerifyResponseMultiError) AllErrors

func (m VerifyResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (VerifyResponseMultiError) Error

func (m VerifyResponseMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type VerifyResponseValidationError

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

VerifyResponseValidationError is the validation error returned by VerifyResponse.Validate if the designated constraints aren't met.

func (VerifyResponseValidationError) Cause

Cause function returns cause value.

func (VerifyResponseValidationError) Error

Error satisfies the builtin error interface

func (VerifyResponseValidationError) ErrorName

func (e VerifyResponseValidationError) ErrorName() string

ErrorName returns error name.

func (VerifyResponseValidationError) Field

Field function returns field value.

func (VerifyResponseValidationError) Key

Key function returns key value.

func (VerifyResponseValidationError) Reason

Reason function returns reason value.

Jump to

Keyboard shortcuts

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