userpb

package
v0.0.8 Latest Latest
Warning

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

Go to latest
Published: Feb 2, 2023 License: MIT Imports: 21 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Code_name = map[int32]string{
		0:  "CODE_UNSPECIFIED",
		1:  "CODE_OK",
		2:  "CODE_NEED_AUTHENTICATOR",
		3:  "CODE_NOT_COMPLETED",
		4:  "CODE_NO_DATA_ERROR",
		5:  "CODE_INVALID_ARGS_ERROR",
		6:  "CODE_INTERNAL_ERROR",
		7:  "CODE_EXISTS_ERROR",
		8:  "CODE_NOT_IMPLEMENT_ERROR",
		9:  "CODE_CONFLICT_ERROR",
		10: "CODE_EXPIRED_ERROR",
		11: "CODE_LOGIC_ERROR",
		12: "CODE_DUP_ERROR",
		13: "CODE_VERIFY_ERROR",
		14: "CODE_BAD_DATA_ERROR",
		15: "CODE_PERMISSION_ERROR",
	}
	Code_value = map[string]int32{
		"CODE_UNSPECIFIED":         0,
		"CODE_OK":                  1,
		"CODE_NEED_AUTHENTICATOR":  2,
		"CODE_NOT_COMPLETED":       3,
		"CODE_NO_DATA_ERROR":       4,
		"CODE_INVALID_ARGS_ERROR":  5,
		"CODE_INTERNAL_ERROR":      6,
		"CODE_EXISTS_ERROR":        7,
		"CODE_NOT_IMPLEMENT_ERROR": 8,
		"CODE_CONFLICT_ERROR":      9,
		"CODE_EXPIRED_ERROR":       10,
		"CODE_LOGIC_ERROR":         11,
		"CODE_DUP_ERROR":           12,
		"CODE_VERIFY_ERROR":        13,
		"CODE_BAD_DATA_ERROR":      14,
		"CODE_PERMISSION_ERROR":    15,
	}
)

Enum value maps for Code.

View Source
var (
	AuthenticatorIdentity_name = map[int32]string{
		0: "AUTHENTICATOR_IDENTITY_UNSPECIFIED",
		1: "AUTHENTICATOR_IDENTITY_USER",
		2: "AUTHENTICATOR_IDENTITY_ANONYMOUS",
		3: "AUTHENTICATOR_IDENTITY_USER_PASS",
		4: "AUTHENTICATOR_IDENTITY_USER_PASS_PASS",
		5: "AUTHENTICATOR_IDENTITY_PHONE",
		6: "AUTHENTICATOR_IDENTITY_EMAIL",
		7: "AUTHENTICATOR_IDENTITY_GOOGLE_2FA",
		8: "AUTHENTICATOR_IDENTITY_ADMIN_FLAG",
	}
	AuthenticatorIdentity_value = map[string]int32{
		"AUTHENTICATOR_IDENTITY_UNSPECIFIED":    0,
		"AUTHENTICATOR_IDENTITY_USER":           1,
		"AUTHENTICATOR_IDENTITY_ANONYMOUS":      2,
		"AUTHENTICATOR_IDENTITY_USER_PASS":      3,
		"AUTHENTICATOR_IDENTITY_USER_PASS_PASS": 4,
		"AUTHENTICATOR_IDENTITY_PHONE":          5,
		"AUTHENTICATOR_IDENTITY_EMAIL":          6,
		"AUTHENTICATOR_IDENTITY_GOOGLE_2FA":     7,
		"AUTHENTICATOR_IDENTITY_ADMIN_FLAG":     8,
	}
)

Enum value maps for AuthenticatorIdentity.

View Source
var (
	Event_name = map[int32]string{
		0: "EVENT_UNSPECIFIED",
		1: "EVENT_SETUP",
		2: "EVENT_VERIFY",
		3: "EVENT_DELETE",
	}
	Event_value = map[string]int32{
		"EVENT_UNSPECIFIED": 0,
		"EVENT_SETUP":       1,
		"EVENT_VERIFY":      2,
		"EVENT_DELETE":      3,
	}
)

Enum value maps for Event.

View Source
var AuthenticatorAdmin_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "AuthenticatorAdmin",
	HandlerType: (*AuthenticatorAdminServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "SetAdminFlag",
			Handler:    _AuthenticatorAdmin_SetAdminFlag_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "proto/user/authenticator_admin.proto",
}

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

View Source
var AuthenticatorAnonymous_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "AuthenticatorAnonymous",
	HandlerType: (*AuthenticatorAnonymousServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "SetUserName",
			Handler:    _AuthenticatorAnonymous_SetUserName_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "proto/user/authenticator_anonymous.proto",
}

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

View Source
var AuthenticatorGoogle2Fa_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "AuthenticatorGoogle2fa",
	HandlerType: (*AuthenticatorGoogle2FaServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetSetupInfo",
			Handler:    _AuthenticatorGoogle2Fa_GetSetupInfo_Handler,
		},
		{
			MethodName: "DoSetup",
			Handler:    _AuthenticatorGoogle2Fa_DoSetup_Handler,
		},
		{
			MethodName: "Verify",
			Handler:    _AuthenticatorGoogle2Fa_Verify_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "proto/user/authenticator_google2fa.proto",
}

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

View Source
var AuthenticatorUserPass_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "AuthenticatorUserPass",
	HandlerType: (*AuthenticatorUserPassServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Register",
			Handler:    _AuthenticatorUserPass_Register_Handler,
		},
		{
			MethodName: "Login",
			Handler:    _AuthenticatorUserPass_Login_Handler,
		},
		{
			MethodName: "VerifyPassword",
			Handler:    _AuthenticatorUserPass_VerifyPassword_Handler,
		},
		{
			MethodName: "ChangePassword",
			Handler:    _AuthenticatorUserPass_ChangePassword_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "proto/user/authenticator_userpass.proto",
}

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

View Source
var File_proto_user_authenticator_admin_proto protoreflect.FileDescriptor
View Source
var File_proto_user_authenticator_anonymous_proto protoreflect.FileDescriptor
View Source
var File_proto_user_authenticator_google2fa_proto protoreflect.FileDescriptor
View Source
var File_proto_user_authenticator_userpass_proto protoreflect.FileDescriptor
View Source
var File_proto_user_status_proto protoreflect.FileDescriptor
View Source
var File_proto_user_user_proto protoreflect.FileDescriptor
View Source
var UserServicer_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "UserServicer",
	HandlerType: (*UserServicerServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "RegisterBegin",
			Handler:    _UserServicer_RegisterBegin_Handler,
		},
		{
			MethodName: "RegisterCheck",
			Handler:    _UserServicer_RegisterCheck_Handler,
		},
		{
			MethodName: "RegisterEnd",
			Handler:    _UserServicer_RegisterEnd_Handler,
		},
		{
			MethodName: "LoginBegin",
			Handler:    _UserServicer_LoginBegin_Handler,
		},
		{
			MethodName: "LoginCheck",
			Handler:    _UserServicer_LoginCheck_Handler,
		},
		{
			MethodName: "LoginEnd",
			Handler:    _UserServicer_LoginEnd_Handler,
		},
		{
			MethodName: "ChangeBegin",
			Handler:    _UserServicer_ChangeBegin_Handler,
		},
		{
			MethodName: "ChangeCheck",
			Handler:    _UserServicer_ChangeCheck_Handler,
		},
		{
			MethodName: "ChangeEnd",
			Handler:    _UserServicer_ChangeEnd_Handler,
		},
		{
			MethodName: "DeleteBegin",
			Handler:    _UserServicer_DeleteBegin_Handler,
		},
		{
			MethodName: "DeleteCheck",
			Handler:    _UserServicer_DeleteCheck_Handler,
		},
		{
			MethodName: "DeleteEnd",
			Handler:    _UserServicer_DeleteEnd_Handler,
		},
		{
			MethodName: "ListUsers",
			Handler:    _UserServicer_ListUsers_Handler,
		},
		{
			MethodName: "CheckToken",
			Handler:    _UserServicer_CheckToken_Handler,
		},
		{
			MethodName: "RenewToken",
			Handler:    _UserServicer_RenewToken_Handler,
		},
		{
			MethodName: "Logout",
			Handler:    _UserServicer_Logout_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "proto/user/user.proto",
}

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

Functions

func RegisterAuthenticatorAdminServer

func RegisterAuthenticatorAdminServer(s grpc.ServiceRegistrar, srv AuthenticatorAdminServer)

func RegisterAuthenticatorAnonymousServer

func RegisterAuthenticatorAnonymousServer(s grpc.ServiceRegistrar, srv AuthenticatorAnonymousServer)

func RegisterAuthenticatorGoogle2FaServer

func RegisterAuthenticatorGoogle2FaServer(s grpc.ServiceRegistrar, srv AuthenticatorGoogle2FaServer)

func RegisterAuthenticatorUserPassServer

func RegisterAuthenticatorUserPassServer(s grpc.ServiceRegistrar, srv AuthenticatorUserPassServer)

func RegisterUserServicerServer

func RegisterUserServicerServer(s grpc.ServiceRegistrar, srv UserServicerServer)

Types

type AuthenticatorAdminClient

type AuthenticatorAdminClient interface {
	SetAdminFlag(ctx context.Context, in *SetAdminFlagRequest, opts ...grpc.CallOption) (*SetAdminFlagResponse, error)
}

AuthenticatorAdminClient is the client API for AuthenticatorAdmin service.

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

type AuthenticatorAdminServer

type AuthenticatorAdminServer interface {
	SetAdminFlag(context.Context, *SetAdminFlagRequest) (*SetAdminFlagResponse, error)
	// contains filtered or unexported methods
}

AuthenticatorAdminServer is the server API for AuthenticatorAdmin service. All implementations must embed UnimplementedAuthenticatorAdminServer for forward compatibility

type AuthenticatorAnonymousClient

type AuthenticatorAnonymousClient interface {
	SetUserName(ctx context.Context, in *SetUserNameRequest, opts ...grpc.CallOption) (*SetUserNameResponse, error)
}

AuthenticatorAnonymousClient is the client API for AuthenticatorAnonymous service.

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

type AuthenticatorAnonymousServer

type AuthenticatorAnonymousServer interface {
	SetUserName(context.Context, *SetUserNameRequest) (*SetUserNameResponse, error)
	// contains filtered or unexported methods
}

AuthenticatorAnonymousServer is the server API for AuthenticatorAnonymous service. All implementations must embed UnimplementedAuthenticatorAnonymousServer for forward compatibility

type AuthenticatorEvent

type AuthenticatorEvent struct {
	Authenticator AuthenticatorIdentity `protobuf:"varint,1,opt,name=authenticator,proto3,enum=AuthenticatorIdentity" json:"authenticator,omitempty"`
	Event         Event                 `protobuf:"varint,2,opt,name=event,proto3,enum=Event" json:"event,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthenticatorEvent) Descriptor deprecated

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

Deprecated: Use AuthenticatorEvent.ProtoReflect.Descriptor instead.

func (*AuthenticatorEvent) GetAuthenticator

func (x *AuthenticatorEvent) GetAuthenticator() AuthenticatorIdentity

func (*AuthenticatorEvent) GetEvent

func (x *AuthenticatorEvent) GetEvent() Event

func (*AuthenticatorEvent) ProtoMessage

func (*AuthenticatorEvent) ProtoMessage()

func (*AuthenticatorEvent) ProtoReflect

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

func (*AuthenticatorEvent) Reset

func (x *AuthenticatorEvent) Reset()

func (*AuthenticatorEvent) String

func (x *AuthenticatorEvent) String() string

func (*AuthenticatorEvent) Validate

func (m *AuthenticatorEvent) Validate() error

Validate checks the field values on AuthenticatorEvent 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 (*AuthenticatorEvent) ValidateAll

func (m *AuthenticatorEvent) ValidateAll() error

ValidateAll checks the field values on AuthenticatorEvent 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 AuthenticatorEventMultiError, or nil if none found.

type AuthenticatorEventMultiError

type AuthenticatorEventMultiError []error

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

func (AuthenticatorEventMultiError) AllErrors

func (m AuthenticatorEventMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AuthenticatorEventMultiError) Error

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

type AuthenticatorEventValidationError

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

AuthenticatorEventValidationError is the validation error returned by AuthenticatorEvent.Validate if the designated constraints aren't met.

func (AuthenticatorEventValidationError) Cause

Cause function returns cause value.

func (AuthenticatorEventValidationError) Error

Error satisfies the builtin error interface

func (AuthenticatorEventValidationError) ErrorName

ErrorName returns error name.

func (AuthenticatorEventValidationError) Field

Field function returns field value.

func (AuthenticatorEventValidationError) Key

Key function returns key value.

func (AuthenticatorEventValidationError) Reason

Reason function returns reason value.

type AuthenticatorGoogle2FaClient

type AuthenticatorGoogle2FaClient interface {
	GetSetupInfo(ctx context.Context, in *GetSetupInfoRequest, opts ...grpc.CallOption) (*GetSetupInfoResponse, error)
	DoSetup(ctx context.Context, in *DoSetupRequest, opts ...grpc.CallOption) (*DoSetupResponse, error)
	Verify(ctx context.Context, in *VerifyRequest, opts ...grpc.CallOption) (*VerifyResponse, error)
}

AuthenticatorGoogle2FaClient is the client API for AuthenticatorGoogle2Fa service.

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

type AuthenticatorGoogle2FaServer

type AuthenticatorGoogle2FaServer interface {
	GetSetupInfo(context.Context, *GetSetupInfoRequest) (*GetSetupInfoResponse, error)
	DoSetup(context.Context, *DoSetupRequest) (*DoSetupResponse, error)
	Verify(context.Context, *VerifyRequest) (*VerifyResponse, error)
	// contains filtered or unexported methods
}

AuthenticatorGoogle2FaServer is the server API for AuthenticatorGoogle2Fa service. All implementations must embed UnimplementedAuthenticatorGoogle2FaServer for forward compatibility

type AuthenticatorIdentity

type AuthenticatorIdentity int32
const (
	AuthenticatorIdentity_AUTHENTICATOR_IDENTITY_UNSPECIFIED    AuthenticatorIdentity = 0
	AuthenticatorIdentity_AUTHENTICATOR_IDENTITY_USER           AuthenticatorIdentity = 1
	AuthenticatorIdentity_AUTHENTICATOR_IDENTITY_ANONYMOUS      AuthenticatorIdentity = 2
	AuthenticatorIdentity_AUTHENTICATOR_IDENTITY_USER_PASS      AuthenticatorIdentity = 3
	AuthenticatorIdentity_AUTHENTICATOR_IDENTITY_USER_PASS_PASS AuthenticatorIdentity = 4
	AuthenticatorIdentity_AUTHENTICATOR_IDENTITY_PHONE          AuthenticatorIdentity = 5
	AuthenticatorIdentity_AUTHENTICATOR_IDENTITY_EMAIL          AuthenticatorIdentity = 6
	AuthenticatorIdentity_AUTHENTICATOR_IDENTITY_GOOGLE_2FA     AuthenticatorIdentity = 7
	AuthenticatorIdentity_AUTHENTICATOR_IDENTITY_ADMIN_FLAG     AuthenticatorIdentity = 8
)

func (AuthenticatorIdentity) Descriptor

func (AuthenticatorIdentity) Enum

func (AuthenticatorIdentity) EnumDescriptor deprecated

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

Deprecated: Use AuthenticatorIdentity.Descriptor instead.

func (AuthenticatorIdentity) Number

func (AuthenticatorIdentity) String

func (x AuthenticatorIdentity) String() string

func (AuthenticatorIdentity) Type

type AuthenticatorUserPassClient

type AuthenticatorUserPassClient interface {
	Register(ctx context.Context, in *RegisterRequest, opts ...grpc.CallOption) (*RegisterResponse, error)
	Login(ctx context.Context, in *LoginRequest, opts ...grpc.CallOption) (*LoginResponse, error)
	VerifyPassword(ctx context.Context, in *VerifyPasswordRequest, opts ...grpc.CallOption) (*VerifyPasswordResponse, error)
	ChangePassword(ctx context.Context, in *ChangePasswordRequest, opts ...grpc.CallOption) (*ChangePasswordResponse, error)
}

AuthenticatorUserPassClient is the client API for AuthenticatorUserPass service.

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

type AuthenticatorUserPassServer

type AuthenticatorUserPassServer interface {
	Register(context.Context, *RegisterRequest) (*RegisterResponse, error)
	Login(context.Context, *LoginRequest) (*LoginResponse, error)
	VerifyPassword(context.Context, *VerifyPasswordRequest) (*VerifyPasswordResponse, error)
	ChangePassword(context.Context, *ChangePasswordRequest) (*ChangePasswordResponse, error)
	// contains filtered or unexported methods
}

AuthenticatorUserPassServer is the server API for AuthenticatorUserPass service. All implementations must embed UnimplementedAuthenticatorUserPassServer for forward compatibility

type ChangeBeginRequest

type ChangeBeginRequest struct {
	Authenticators []AuthenticatorIdentity `protobuf:"varint,1,rep,packed,name=authenticators,proto3,enum=AuthenticatorIdentity" json:"authenticators,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangeBeginRequest) Descriptor deprecated

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

Deprecated: Use ChangeBeginRequest.ProtoReflect.Descriptor instead.

func (*ChangeBeginRequest) GetAuthenticators

func (x *ChangeBeginRequest) GetAuthenticators() []AuthenticatorIdentity

func (*ChangeBeginRequest) ProtoMessage

func (*ChangeBeginRequest) ProtoMessage()

func (*ChangeBeginRequest) ProtoReflect

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

func (*ChangeBeginRequest) Reset

func (x *ChangeBeginRequest) Reset()

func (*ChangeBeginRequest) String

func (x *ChangeBeginRequest) String() string

func (*ChangeBeginRequest) Validate

func (m *ChangeBeginRequest) Validate() error

Validate checks the field values on ChangeBeginRequest 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 (*ChangeBeginRequest) ValidateAll

func (m *ChangeBeginRequest) ValidateAll() error

ValidateAll checks the field values on ChangeBeginRequest 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 ChangeBeginRequestMultiError, or nil if none found.

type ChangeBeginRequestMultiError

type ChangeBeginRequestMultiError []error

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

func (ChangeBeginRequestMultiError) AllErrors

func (m ChangeBeginRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeBeginRequestMultiError) Error

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

type ChangeBeginRequestValidationError

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

ChangeBeginRequestValidationError is the validation error returned by ChangeBeginRequest.Validate if the designated constraints aren't met.

func (ChangeBeginRequestValidationError) Cause

Cause function returns cause value.

func (ChangeBeginRequestValidationError) Error

Error satisfies the builtin error interface

func (ChangeBeginRequestValidationError) ErrorName

ErrorName returns error name.

func (ChangeBeginRequestValidationError) Field

Field function returns field value.

func (ChangeBeginRequestValidationError) Key

Key function returns key value.

func (ChangeBeginRequestValidationError) Reason

Reason function returns reason value.

type ChangeBeginResponse

type ChangeBeginResponse struct {
	Status         *Status               `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	BizId          string                `protobuf:"bytes,2,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	NeededOrEvents []*AuthenticatorEvent `protobuf:"bytes,3,rep,name=needed_or_events,json=neededOrEvents,proto3" json:"needed_or_events,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangeBeginResponse) Descriptor deprecated

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

Deprecated: Use ChangeBeginResponse.ProtoReflect.Descriptor instead.

func (*ChangeBeginResponse) GetBizId

func (x *ChangeBeginResponse) GetBizId() string

func (*ChangeBeginResponse) GetNeededOrEvents

func (x *ChangeBeginResponse) GetNeededOrEvents() []*AuthenticatorEvent

func (*ChangeBeginResponse) GetStatus

func (x *ChangeBeginResponse) GetStatus() *Status

func (*ChangeBeginResponse) ProtoMessage

func (*ChangeBeginResponse) ProtoMessage()

func (*ChangeBeginResponse) ProtoReflect

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

func (*ChangeBeginResponse) Reset

func (x *ChangeBeginResponse) Reset()

func (*ChangeBeginResponse) String

func (x *ChangeBeginResponse) String() string

func (*ChangeBeginResponse) Validate

func (m *ChangeBeginResponse) Validate() error

Validate checks the field values on ChangeBeginResponse 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 (*ChangeBeginResponse) ValidateAll

func (m *ChangeBeginResponse) ValidateAll() error

ValidateAll checks the field values on ChangeBeginResponse 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 ChangeBeginResponseMultiError, or nil if none found.

type ChangeBeginResponseMultiError

type ChangeBeginResponseMultiError []error

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

func (ChangeBeginResponseMultiError) AllErrors

func (m ChangeBeginResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeBeginResponseMultiError) Error

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

type ChangeBeginResponseValidationError

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

ChangeBeginResponseValidationError is the validation error returned by ChangeBeginResponse.Validate if the designated constraints aren't met.

func (ChangeBeginResponseValidationError) Cause

Cause function returns cause value.

func (ChangeBeginResponseValidationError) Error

Error satisfies the builtin error interface

func (ChangeBeginResponseValidationError) ErrorName

ErrorName returns error name.

func (ChangeBeginResponseValidationError) Field

Field function returns field value.

func (ChangeBeginResponseValidationError) Key

Key function returns key value.

func (ChangeBeginResponseValidationError) Reason

Reason function returns reason value.

type ChangeCheckRequest

type ChangeCheckRequest struct {
	BizId string `protobuf:"bytes,1,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangeCheckRequest) Descriptor deprecated

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

Deprecated: Use ChangeCheckRequest.ProtoReflect.Descriptor instead.

func (*ChangeCheckRequest) GetBizId

func (x *ChangeCheckRequest) GetBizId() string

func (*ChangeCheckRequest) ProtoMessage

func (*ChangeCheckRequest) ProtoMessage()

func (*ChangeCheckRequest) ProtoReflect

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

func (*ChangeCheckRequest) Reset

func (x *ChangeCheckRequest) Reset()

func (*ChangeCheckRequest) String

func (x *ChangeCheckRequest) String() string

func (*ChangeCheckRequest) Validate

func (m *ChangeCheckRequest) Validate() error

Validate checks the field values on ChangeCheckRequest 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 (*ChangeCheckRequest) ValidateAll

func (m *ChangeCheckRequest) ValidateAll() error

ValidateAll checks the field values on ChangeCheckRequest 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 ChangeCheckRequestMultiError, or nil if none found.

type ChangeCheckRequestMultiError

type ChangeCheckRequestMultiError []error

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

func (ChangeCheckRequestMultiError) AllErrors

func (m ChangeCheckRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeCheckRequestMultiError) Error

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

type ChangeCheckRequestValidationError

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

ChangeCheckRequestValidationError is the validation error returned by ChangeCheckRequest.Validate if the designated constraints aren't met.

func (ChangeCheckRequestValidationError) Cause

Cause function returns cause value.

func (ChangeCheckRequestValidationError) Error

Error satisfies the builtin error interface

func (ChangeCheckRequestValidationError) ErrorName

ErrorName returns error name.

func (ChangeCheckRequestValidationError) Field

Field function returns field value.

func (ChangeCheckRequestValidationError) Key

Key function returns key value.

func (ChangeCheckRequestValidationError) Reason

Reason function returns reason value.

type ChangeCheckResponse

type ChangeCheckResponse struct {
	Status         *Status               `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	NeededOrEvents []*AuthenticatorEvent `protobuf:"bytes,2,rep,name=needed_or_events,json=neededOrEvents,proto3" json:"needed_or_events,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangeCheckResponse) Descriptor deprecated

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

Deprecated: Use ChangeCheckResponse.ProtoReflect.Descriptor instead.

func (*ChangeCheckResponse) GetNeededOrEvents

func (x *ChangeCheckResponse) GetNeededOrEvents() []*AuthenticatorEvent

func (*ChangeCheckResponse) GetStatus

func (x *ChangeCheckResponse) GetStatus() *Status

func (*ChangeCheckResponse) ProtoMessage

func (*ChangeCheckResponse) ProtoMessage()

func (*ChangeCheckResponse) ProtoReflect

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

func (*ChangeCheckResponse) Reset

func (x *ChangeCheckResponse) Reset()

func (*ChangeCheckResponse) String

func (x *ChangeCheckResponse) String() string

func (*ChangeCheckResponse) Validate

func (m *ChangeCheckResponse) Validate() error

Validate checks the field values on ChangeCheckResponse 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 (*ChangeCheckResponse) ValidateAll

func (m *ChangeCheckResponse) ValidateAll() error

ValidateAll checks the field values on ChangeCheckResponse 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 ChangeCheckResponseMultiError, or nil if none found.

type ChangeCheckResponseMultiError

type ChangeCheckResponseMultiError []error

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

func (ChangeCheckResponseMultiError) AllErrors

func (m ChangeCheckResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeCheckResponseMultiError) Error

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

type ChangeCheckResponseValidationError

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

ChangeCheckResponseValidationError is the validation error returned by ChangeCheckResponse.Validate if the designated constraints aren't met.

func (ChangeCheckResponseValidationError) Cause

Cause function returns cause value.

func (ChangeCheckResponseValidationError) Error

Error satisfies the builtin error interface

func (ChangeCheckResponseValidationError) ErrorName

ErrorName returns error name.

func (ChangeCheckResponseValidationError) Field

Field function returns field value.

func (ChangeCheckResponseValidationError) Key

Key function returns key value.

func (ChangeCheckResponseValidationError) Reason

Reason function returns reason value.

type ChangeEndRequest

type ChangeEndRequest struct {
	BizId string `protobuf:"bytes,1,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangeEndRequest) Descriptor deprecated

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

Deprecated: Use ChangeEndRequest.ProtoReflect.Descriptor instead.

func (*ChangeEndRequest) GetBizId

func (x *ChangeEndRequest) GetBizId() string

func (*ChangeEndRequest) ProtoMessage

func (*ChangeEndRequest) ProtoMessage()

func (*ChangeEndRequest) ProtoReflect

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

func (*ChangeEndRequest) Reset

func (x *ChangeEndRequest) Reset()

func (*ChangeEndRequest) String

func (x *ChangeEndRequest) String() string

func (*ChangeEndRequest) Validate

func (m *ChangeEndRequest) Validate() error

Validate checks the field values on ChangeEndRequest 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 (*ChangeEndRequest) ValidateAll

func (m *ChangeEndRequest) ValidateAll() error

ValidateAll checks the field values on ChangeEndRequest 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 ChangeEndRequestMultiError, or nil if none found.

type ChangeEndRequestMultiError

type ChangeEndRequestMultiError []error

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

func (ChangeEndRequestMultiError) AllErrors

func (m ChangeEndRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeEndRequestMultiError) Error

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

type ChangeEndRequestValidationError

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

ChangeEndRequestValidationError is the validation error returned by ChangeEndRequest.Validate if the designated constraints aren't met.

func (ChangeEndRequestValidationError) Cause

Cause function returns cause value.

func (ChangeEndRequestValidationError) Error

Error satisfies the builtin error interface

func (ChangeEndRequestValidationError) ErrorName

ErrorName returns error name.

func (ChangeEndRequestValidationError) Field

Field function returns field value.

func (ChangeEndRequestValidationError) Key

Key function returns key value.

func (ChangeEndRequestValidationError) Reason

Reason function returns reason value.

type ChangeEndResponse

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

func (*ChangeEndResponse) Descriptor deprecated

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

Deprecated: Use ChangeEndResponse.ProtoReflect.Descriptor instead.

func (*ChangeEndResponse) GetStatus

func (x *ChangeEndResponse) GetStatus() *Status

func (*ChangeEndResponse) ProtoMessage

func (*ChangeEndResponse) ProtoMessage()

func (*ChangeEndResponse) ProtoReflect

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

func (*ChangeEndResponse) Reset

func (x *ChangeEndResponse) Reset()

func (*ChangeEndResponse) String

func (x *ChangeEndResponse) String() string

func (*ChangeEndResponse) Validate

func (m *ChangeEndResponse) Validate() error

Validate checks the field values on ChangeEndResponse 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 (*ChangeEndResponse) ValidateAll

func (m *ChangeEndResponse) ValidateAll() error

ValidateAll checks the field values on ChangeEndResponse 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 ChangeEndResponseMultiError, or nil if none found.

type ChangeEndResponseMultiError

type ChangeEndResponseMultiError []error

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

func (ChangeEndResponseMultiError) AllErrors

func (m ChangeEndResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangeEndResponseMultiError) Error

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

type ChangeEndResponseValidationError

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

ChangeEndResponseValidationError is the validation error returned by ChangeEndResponse.Validate if the designated constraints aren't met.

func (ChangeEndResponseValidationError) Cause

Cause function returns cause value.

func (ChangeEndResponseValidationError) Error

Error satisfies the builtin error interface

func (ChangeEndResponseValidationError) ErrorName

ErrorName returns error name.

func (ChangeEndResponseValidationError) Field

Field function returns field value.

func (ChangeEndResponseValidationError) Key

Key function returns key value.

func (ChangeEndResponseValidationError) Reason

Reason function returns reason value.

type ChangePasswordRequest

type ChangePasswordRequest struct {
	BizId    string `protobuf:"bytes,1,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangePasswordRequest) Descriptor deprecated

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

Deprecated: Use ChangePasswordRequest.ProtoReflect.Descriptor instead.

func (*ChangePasswordRequest) GetBizId

func (x *ChangePasswordRequest) GetBizId() string

func (*ChangePasswordRequest) GetPassword

func (x *ChangePasswordRequest) GetPassword() string

func (*ChangePasswordRequest) ProtoMessage

func (*ChangePasswordRequest) ProtoMessage()

func (*ChangePasswordRequest) ProtoReflect

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

func (*ChangePasswordRequest) Reset

func (x *ChangePasswordRequest) Reset()

func (*ChangePasswordRequest) String

func (x *ChangePasswordRequest) String() string

func (*ChangePasswordRequest) Validate

func (m *ChangePasswordRequest) Validate() error

Validate checks the field values on ChangePasswordRequest 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 (*ChangePasswordRequest) ValidateAll

func (m *ChangePasswordRequest) ValidateAll() error

ValidateAll checks the field values on ChangePasswordRequest 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 ChangePasswordRequestMultiError, or nil if none found.

type ChangePasswordRequestMultiError

type ChangePasswordRequestMultiError []error

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

func (ChangePasswordRequestMultiError) AllErrors

func (m ChangePasswordRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangePasswordRequestMultiError) Error

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

type ChangePasswordRequestValidationError

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

ChangePasswordRequestValidationError is the validation error returned by ChangePasswordRequest.Validate if the designated constraints aren't met.

func (ChangePasswordRequestValidationError) Cause

Cause function returns cause value.

func (ChangePasswordRequestValidationError) Error

Error satisfies the builtin error interface

func (ChangePasswordRequestValidationError) ErrorName

ErrorName returns error name.

func (ChangePasswordRequestValidationError) Field

Field function returns field value.

func (ChangePasswordRequestValidationError) Key

Key function returns key value.

func (ChangePasswordRequestValidationError) Reason

Reason function returns reason value.

type ChangePasswordResponse

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

func (*ChangePasswordResponse) Descriptor deprecated

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

Deprecated: Use ChangePasswordResponse.ProtoReflect.Descriptor instead.

func (*ChangePasswordResponse) GetStatus

func (x *ChangePasswordResponse) GetStatus() *Status

func (*ChangePasswordResponse) ProtoMessage

func (*ChangePasswordResponse) ProtoMessage()

func (*ChangePasswordResponse) ProtoReflect

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

func (*ChangePasswordResponse) Reset

func (x *ChangePasswordResponse) Reset()

func (*ChangePasswordResponse) String

func (x *ChangePasswordResponse) String() string

func (*ChangePasswordResponse) Validate

func (m *ChangePasswordResponse) Validate() error

Validate checks the field values on ChangePasswordResponse 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 (*ChangePasswordResponse) ValidateAll

func (m *ChangePasswordResponse) ValidateAll() error

ValidateAll checks the field values on ChangePasswordResponse 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 ChangePasswordResponseMultiError, or nil if none found.

type ChangePasswordResponseMultiError

type ChangePasswordResponseMultiError []error

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

func (ChangePasswordResponseMultiError) AllErrors

func (m ChangePasswordResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ChangePasswordResponseMultiError) Error

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

type ChangePasswordResponseValidationError

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

ChangePasswordResponseValidationError is the validation error returned by ChangePasswordResponse.Validate if the designated constraints aren't met.

func (ChangePasswordResponseValidationError) Cause

Cause function returns cause value.

func (ChangePasswordResponseValidationError) Error

Error satisfies the builtin error interface

func (ChangePasswordResponseValidationError) ErrorName

ErrorName returns error name.

func (ChangePasswordResponseValidationError) Field

Field function returns field value.

func (ChangePasswordResponseValidationError) Key

Key function returns key value.

func (ChangePasswordResponseValidationError) Reason

Reason function returns reason value.

type CheckTokenRequest

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

func (*CheckTokenRequest) Descriptor deprecated

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

Deprecated: Use CheckTokenRequest.ProtoReflect.Descriptor instead.

func (*CheckTokenRequest) ProtoMessage

func (*CheckTokenRequest) ProtoMessage()

func (*CheckTokenRequest) ProtoReflect

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

func (*CheckTokenRequest) Reset

func (x *CheckTokenRequest) Reset()

func (*CheckTokenRequest) String

func (x *CheckTokenRequest) String() string

func (*CheckTokenRequest) Validate

func (m *CheckTokenRequest) Validate() error

Validate checks the field values on CheckTokenRequest 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 (*CheckTokenRequest) ValidateAll

func (m *CheckTokenRequest) ValidateAll() error

ValidateAll checks the field values on CheckTokenRequest 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 CheckTokenRequestMultiError, or nil if none found.

type CheckTokenRequestMultiError

type CheckTokenRequestMultiError []error

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

func (CheckTokenRequestMultiError) AllErrors

func (m CheckTokenRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CheckTokenRequestMultiError) Error

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

type CheckTokenRequestValidationError

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

CheckTokenRequestValidationError is the validation error returned by CheckTokenRequest.Validate if the designated constraints aren't met.

func (CheckTokenRequestValidationError) Cause

Cause function returns cause value.

func (CheckTokenRequestValidationError) Error

Error satisfies the builtin error interface

func (CheckTokenRequestValidationError) ErrorName

ErrorName returns error name.

func (CheckTokenRequestValidationError) Field

Field function returns field value.

func (CheckTokenRequestValidationError) Key

Key function returns key value.

func (CheckTokenRequestValidationError) Reason

Reason function returns reason value.

type CheckTokenResponse

type CheckTokenResponse struct {
	Status    *Status        `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	TokenInfo *UserTokenInfo `protobuf:"bytes,2,opt,name=token_info,json=tokenInfo,proto3" json:"token_info,omitempty"`
	// contains filtered or unexported fields
}

func (*CheckTokenResponse) Descriptor deprecated

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

Deprecated: Use CheckTokenResponse.ProtoReflect.Descriptor instead.

func (*CheckTokenResponse) GetStatus

func (x *CheckTokenResponse) GetStatus() *Status

func (*CheckTokenResponse) GetTokenInfo

func (x *CheckTokenResponse) GetTokenInfo() *UserTokenInfo

func (*CheckTokenResponse) ProtoMessage

func (*CheckTokenResponse) ProtoMessage()

func (*CheckTokenResponse) ProtoReflect

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

func (*CheckTokenResponse) Reset

func (x *CheckTokenResponse) Reset()

func (*CheckTokenResponse) String

func (x *CheckTokenResponse) String() string

func (*CheckTokenResponse) Validate

func (m *CheckTokenResponse) Validate() error

Validate checks the field values on CheckTokenResponse 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 (*CheckTokenResponse) ValidateAll

func (m *CheckTokenResponse) ValidateAll() error

ValidateAll checks the field values on CheckTokenResponse 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 CheckTokenResponseMultiError, or nil if none found.

type CheckTokenResponseMultiError

type CheckTokenResponseMultiError []error

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

func (CheckTokenResponseMultiError) AllErrors

func (m CheckTokenResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CheckTokenResponseMultiError) Error

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

type CheckTokenResponseValidationError

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

CheckTokenResponseValidationError is the validation error returned by CheckTokenResponse.Validate if the designated constraints aren't met.

func (CheckTokenResponseValidationError) Cause

Cause function returns cause value.

func (CheckTokenResponseValidationError) Error

Error satisfies the builtin error interface

func (CheckTokenResponseValidationError) ErrorName

ErrorName returns error name.

func (CheckTokenResponseValidationError) Field

Field function returns field value.

func (CheckTokenResponseValidationError) Key

Key function returns key value.

func (CheckTokenResponseValidationError) Reason

Reason function returns reason value.

type Code

type Code int32
const (
	Code_CODE_UNSPECIFIED         Code = 0
	Code_CODE_OK                  Code = 1
	Code_CODE_NEED_AUTHENTICATOR  Code = 2
	Code_CODE_NOT_COMPLETED       Code = 3
	Code_CODE_NO_DATA_ERROR       Code = 4
	Code_CODE_INVALID_ARGS_ERROR  Code = 5
	Code_CODE_INTERNAL_ERROR      Code = 6
	Code_CODE_EXISTS_ERROR        Code = 7
	Code_CODE_NOT_IMPLEMENT_ERROR Code = 8
	Code_CODE_CONFLICT_ERROR      Code = 9
	Code_CODE_EXPIRED_ERROR       Code = 10
	Code_CODE_LOGIC_ERROR         Code = 11
	Code_CODE_DUP_ERROR           Code = 12
	Code_CODE_VERIFY_ERROR        Code = 13
	Code_CODE_BAD_DATA_ERROR      Code = 14
	Code_CODE_PERMISSION_ERROR    Code = 15
)

func (Code) Descriptor

func (Code) Descriptor() protoreflect.EnumDescriptor

func (Code) Enum

func (x Code) Enum() *Code

func (Code) EnumDescriptor deprecated

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

Deprecated: Use Code.Descriptor instead.

func (Code) Number

func (x Code) Number() protoreflect.EnumNumber

func (Code) String

func (x Code) String() string

func (Code) Type

func (Code) Type() protoreflect.EnumType

type DeleteBeginRequest

type DeleteBeginRequest struct {
	Authenticators []AuthenticatorIdentity `protobuf:"varint,1,rep,packed,name=authenticators,proto3,enum=AuthenticatorIdentity" json:"authenticators,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteBeginRequest) Descriptor deprecated

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

Deprecated: Use DeleteBeginRequest.ProtoReflect.Descriptor instead.

func (*DeleteBeginRequest) GetAuthenticators

func (x *DeleteBeginRequest) GetAuthenticators() []AuthenticatorIdentity

func (*DeleteBeginRequest) ProtoMessage

func (*DeleteBeginRequest) ProtoMessage()

func (*DeleteBeginRequest) ProtoReflect

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

func (*DeleteBeginRequest) Reset

func (x *DeleteBeginRequest) Reset()

func (*DeleteBeginRequest) String

func (x *DeleteBeginRequest) String() string

func (*DeleteBeginRequest) Validate

func (m *DeleteBeginRequest) Validate() error

Validate checks the field values on DeleteBeginRequest 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 (*DeleteBeginRequest) ValidateAll

func (m *DeleteBeginRequest) ValidateAll() error

ValidateAll checks the field values on DeleteBeginRequest 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 DeleteBeginRequestMultiError, or nil if none found.

type DeleteBeginRequestMultiError

type DeleteBeginRequestMultiError []error

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

func (DeleteBeginRequestMultiError) AllErrors

func (m DeleteBeginRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteBeginRequestMultiError) Error

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

type DeleteBeginRequestValidationError

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

DeleteBeginRequestValidationError is the validation error returned by DeleteBeginRequest.Validate if the designated constraints aren't met.

func (DeleteBeginRequestValidationError) Cause

Cause function returns cause value.

func (DeleteBeginRequestValidationError) Error

Error satisfies the builtin error interface

func (DeleteBeginRequestValidationError) ErrorName

ErrorName returns error name.

func (DeleteBeginRequestValidationError) Field

Field function returns field value.

func (DeleteBeginRequestValidationError) Key

Key function returns key value.

func (DeleteBeginRequestValidationError) Reason

Reason function returns reason value.

type DeleteBeginResponse

type DeleteBeginResponse struct {
	Status         *Status               `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	BizId          string                `protobuf:"bytes,2,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	NeededOrEvents []*AuthenticatorEvent `protobuf:"bytes,3,rep,name=needed_or_events,json=neededOrEvents,proto3" json:"needed_or_events,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteBeginResponse) Descriptor deprecated

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

Deprecated: Use DeleteBeginResponse.ProtoReflect.Descriptor instead.

func (*DeleteBeginResponse) GetBizId

func (x *DeleteBeginResponse) GetBizId() string

func (*DeleteBeginResponse) GetNeededOrEvents

func (x *DeleteBeginResponse) GetNeededOrEvents() []*AuthenticatorEvent

func (*DeleteBeginResponse) GetStatus

func (x *DeleteBeginResponse) GetStatus() *Status

func (*DeleteBeginResponse) ProtoMessage

func (*DeleteBeginResponse) ProtoMessage()

func (*DeleteBeginResponse) ProtoReflect

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

func (*DeleteBeginResponse) Reset

func (x *DeleteBeginResponse) Reset()

func (*DeleteBeginResponse) String

func (x *DeleteBeginResponse) String() string

func (*DeleteBeginResponse) Validate

func (m *DeleteBeginResponse) Validate() error

Validate checks the field values on DeleteBeginResponse 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 (*DeleteBeginResponse) ValidateAll

func (m *DeleteBeginResponse) ValidateAll() error

ValidateAll checks the field values on DeleteBeginResponse 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 DeleteBeginResponseMultiError, or nil if none found.

type DeleteBeginResponseMultiError

type DeleteBeginResponseMultiError []error

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

func (DeleteBeginResponseMultiError) AllErrors

func (m DeleteBeginResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteBeginResponseMultiError) Error

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

type DeleteBeginResponseValidationError

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

DeleteBeginResponseValidationError is the validation error returned by DeleteBeginResponse.Validate if the designated constraints aren't met.

func (DeleteBeginResponseValidationError) Cause

Cause function returns cause value.

func (DeleteBeginResponseValidationError) Error

Error satisfies the builtin error interface

func (DeleteBeginResponseValidationError) ErrorName

ErrorName returns error name.

func (DeleteBeginResponseValidationError) Field

Field function returns field value.

func (DeleteBeginResponseValidationError) Key

Key function returns key value.

func (DeleteBeginResponseValidationError) Reason

Reason function returns reason value.

type DeleteCheckRequest

type DeleteCheckRequest struct {
	BizId string `protobuf:"bytes,1,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteCheckRequest) Descriptor deprecated

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

Deprecated: Use DeleteCheckRequest.ProtoReflect.Descriptor instead.

func (*DeleteCheckRequest) GetBizId

func (x *DeleteCheckRequest) GetBizId() string

func (*DeleteCheckRequest) ProtoMessage

func (*DeleteCheckRequest) ProtoMessage()

func (*DeleteCheckRequest) ProtoReflect

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

func (*DeleteCheckRequest) Reset

func (x *DeleteCheckRequest) Reset()

func (*DeleteCheckRequest) String

func (x *DeleteCheckRequest) String() string

func (*DeleteCheckRequest) Validate

func (m *DeleteCheckRequest) Validate() error

Validate checks the field values on DeleteCheckRequest 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 (*DeleteCheckRequest) ValidateAll

func (m *DeleteCheckRequest) ValidateAll() error

ValidateAll checks the field values on DeleteCheckRequest 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 DeleteCheckRequestMultiError, or nil if none found.

type DeleteCheckRequestMultiError

type DeleteCheckRequestMultiError []error

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

func (DeleteCheckRequestMultiError) AllErrors

func (m DeleteCheckRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteCheckRequestMultiError) Error

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

type DeleteCheckRequestValidationError

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

DeleteCheckRequestValidationError is the validation error returned by DeleteCheckRequest.Validate if the designated constraints aren't met.

func (DeleteCheckRequestValidationError) Cause

Cause function returns cause value.

func (DeleteCheckRequestValidationError) Error

Error satisfies the builtin error interface

func (DeleteCheckRequestValidationError) ErrorName

ErrorName returns error name.

func (DeleteCheckRequestValidationError) Field

Field function returns field value.

func (DeleteCheckRequestValidationError) Key

Key function returns key value.

func (DeleteCheckRequestValidationError) Reason

Reason function returns reason value.

type DeleteCheckResponse

type DeleteCheckResponse struct {
	Status         *Status               `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	NeededOrEvents []*AuthenticatorEvent `protobuf:"bytes,2,rep,name=needed_or_events,json=neededOrEvents,proto3" json:"needed_or_events,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteCheckResponse) Descriptor deprecated

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

Deprecated: Use DeleteCheckResponse.ProtoReflect.Descriptor instead.

func (*DeleteCheckResponse) GetNeededOrEvents

func (x *DeleteCheckResponse) GetNeededOrEvents() []*AuthenticatorEvent

func (*DeleteCheckResponse) GetStatus

func (x *DeleteCheckResponse) GetStatus() *Status

func (*DeleteCheckResponse) ProtoMessage

func (*DeleteCheckResponse) ProtoMessage()

func (*DeleteCheckResponse) ProtoReflect

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

func (*DeleteCheckResponse) Reset

func (x *DeleteCheckResponse) Reset()

func (*DeleteCheckResponse) String

func (x *DeleteCheckResponse) String() string

func (*DeleteCheckResponse) Validate

func (m *DeleteCheckResponse) Validate() error

Validate checks the field values on DeleteCheckResponse 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 (*DeleteCheckResponse) ValidateAll

func (m *DeleteCheckResponse) ValidateAll() error

ValidateAll checks the field values on DeleteCheckResponse 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 DeleteCheckResponseMultiError, or nil if none found.

type DeleteCheckResponseMultiError

type DeleteCheckResponseMultiError []error

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

func (DeleteCheckResponseMultiError) AllErrors

func (m DeleteCheckResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteCheckResponseMultiError) Error

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

type DeleteCheckResponseValidationError

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

DeleteCheckResponseValidationError is the validation error returned by DeleteCheckResponse.Validate if the designated constraints aren't met.

func (DeleteCheckResponseValidationError) Cause

Cause function returns cause value.

func (DeleteCheckResponseValidationError) Error

Error satisfies the builtin error interface

func (DeleteCheckResponseValidationError) ErrorName

ErrorName returns error name.

func (DeleteCheckResponseValidationError) Field

Field function returns field value.

func (DeleteCheckResponseValidationError) Key

Key function returns key value.

func (DeleteCheckResponseValidationError) Reason

Reason function returns reason value.

type DeleteEndRequest

type DeleteEndRequest struct {
	BizId string `protobuf:"bytes,1,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteEndRequest) Descriptor deprecated

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

Deprecated: Use DeleteEndRequest.ProtoReflect.Descriptor instead.

func (*DeleteEndRequest) GetBizId

func (x *DeleteEndRequest) GetBizId() string

func (*DeleteEndRequest) ProtoMessage

func (*DeleteEndRequest) ProtoMessage()

func (*DeleteEndRequest) ProtoReflect

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

func (*DeleteEndRequest) Reset

func (x *DeleteEndRequest) Reset()

func (*DeleteEndRequest) String

func (x *DeleteEndRequest) String() string

func (*DeleteEndRequest) Validate

func (m *DeleteEndRequest) Validate() error

Validate checks the field values on DeleteEndRequest 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 (*DeleteEndRequest) ValidateAll

func (m *DeleteEndRequest) ValidateAll() error

ValidateAll checks the field values on DeleteEndRequest 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 DeleteEndRequestMultiError, or nil if none found.

type DeleteEndRequestMultiError

type DeleteEndRequestMultiError []error

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

func (DeleteEndRequestMultiError) AllErrors

func (m DeleteEndRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteEndRequestMultiError) Error

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

type DeleteEndRequestValidationError

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

DeleteEndRequestValidationError is the validation error returned by DeleteEndRequest.Validate if the designated constraints aren't met.

func (DeleteEndRequestValidationError) Cause

Cause function returns cause value.

func (DeleteEndRequestValidationError) Error

Error satisfies the builtin error interface

func (DeleteEndRequestValidationError) ErrorName

ErrorName returns error name.

func (DeleteEndRequestValidationError) Field

Field function returns field value.

func (DeleteEndRequestValidationError) Key

Key function returns key value.

func (DeleteEndRequestValidationError) Reason

Reason function returns reason value.

type DeleteEndResponse

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

func (*DeleteEndResponse) Descriptor deprecated

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

Deprecated: Use DeleteEndResponse.ProtoReflect.Descriptor instead.

func (*DeleteEndResponse) GetStatus

func (x *DeleteEndResponse) GetStatus() *Status

func (*DeleteEndResponse) ProtoMessage

func (*DeleteEndResponse) ProtoMessage()

func (*DeleteEndResponse) ProtoReflect

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

func (*DeleteEndResponse) Reset

func (x *DeleteEndResponse) Reset()

func (*DeleteEndResponse) String

func (x *DeleteEndResponse) String() string

func (*DeleteEndResponse) Validate

func (m *DeleteEndResponse) Validate() error

Validate checks the field values on DeleteEndResponse 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 (*DeleteEndResponse) ValidateAll

func (m *DeleteEndResponse) ValidateAll() error

ValidateAll checks the field values on DeleteEndResponse 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 DeleteEndResponseMultiError, or nil if none found.

type DeleteEndResponseMultiError

type DeleteEndResponseMultiError []error

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

func (DeleteEndResponseMultiError) AllErrors

func (m DeleteEndResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteEndResponseMultiError) Error

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

type DeleteEndResponseValidationError

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

DeleteEndResponseValidationError is the validation error returned by DeleteEndResponse.Validate if the designated constraints aren't met.

func (DeleteEndResponseValidationError) Cause

Cause function returns cause value.

func (DeleteEndResponseValidationError) Error

Error satisfies the builtin error interface

func (DeleteEndResponseValidationError) ErrorName

ErrorName returns error name.

func (DeleteEndResponseValidationError) Field

Field function returns field value.

func (DeleteEndResponseValidationError) Key

Key function returns key value.

func (DeleteEndResponseValidationError) Reason

Reason function returns reason value.

type DoSetupRequest

type DoSetupRequest struct {
	BizId string `protobuf:"bytes,1,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	Code  string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
	// contains filtered or unexported fields
}

func (*DoSetupRequest) Descriptor deprecated

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

Deprecated: Use DoSetupRequest.ProtoReflect.Descriptor instead.

func (*DoSetupRequest) GetBizId

func (x *DoSetupRequest) GetBizId() string

func (*DoSetupRequest) GetCode

func (x *DoSetupRequest) GetCode() string

func (*DoSetupRequest) ProtoMessage

func (*DoSetupRequest) ProtoMessage()

func (*DoSetupRequest) ProtoReflect

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

func (*DoSetupRequest) Reset

func (x *DoSetupRequest) Reset()

func (*DoSetupRequest) String

func (x *DoSetupRequest) String() string

func (*DoSetupRequest) Validate

func (m *DoSetupRequest) Validate() error

Validate checks the field values on DoSetupRequest 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 (*DoSetupRequest) ValidateAll

func (m *DoSetupRequest) ValidateAll() error

ValidateAll checks the field values on DoSetupRequest 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 DoSetupRequestMultiError, or nil if none found.

type DoSetupRequestMultiError

type DoSetupRequestMultiError []error

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

func (DoSetupRequestMultiError) AllErrors

func (m DoSetupRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DoSetupRequestMultiError) Error

func (m DoSetupRequestMultiError) Error() string

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

type DoSetupRequestValidationError

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

DoSetupRequestValidationError is the validation error returned by DoSetupRequest.Validate if the designated constraints aren't met.

func (DoSetupRequestValidationError) Cause

Cause function returns cause value.

func (DoSetupRequestValidationError) Error

Error satisfies the builtin error interface

func (DoSetupRequestValidationError) ErrorName

func (e DoSetupRequestValidationError) ErrorName() string

ErrorName returns error name.

func (DoSetupRequestValidationError) Field

Field function returns field value.

func (DoSetupRequestValidationError) Key

Key function returns key value.

func (DoSetupRequestValidationError) Reason

Reason function returns reason value.

type DoSetupResponse

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

func (*DoSetupResponse) Descriptor deprecated

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

Deprecated: Use DoSetupResponse.ProtoReflect.Descriptor instead.

func (*DoSetupResponse) GetStatus

func (x *DoSetupResponse) GetStatus() *Status

func (*DoSetupResponse) ProtoMessage

func (*DoSetupResponse) ProtoMessage()

func (*DoSetupResponse) ProtoReflect

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

func (*DoSetupResponse) Reset

func (x *DoSetupResponse) Reset()

func (*DoSetupResponse) String

func (x *DoSetupResponse) String() string

func (*DoSetupResponse) Validate

func (m *DoSetupResponse) Validate() error

Validate checks the field values on DoSetupResponse 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 (*DoSetupResponse) ValidateAll

func (m *DoSetupResponse) ValidateAll() error

ValidateAll checks the field values on DoSetupResponse 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 DoSetupResponseMultiError, or nil if none found.

type DoSetupResponseMultiError

type DoSetupResponseMultiError []error

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

func (DoSetupResponseMultiError) AllErrors

func (m DoSetupResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DoSetupResponseMultiError) Error

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

type DoSetupResponseValidationError

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

DoSetupResponseValidationError is the validation error returned by DoSetupResponse.Validate if the designated constraints aren't met.

func (DoSetupResponseValidationError) Cause

Cause function returns cause value.

func (DoSetupResponseValidationError) Error

Error satisfies the builtin error interface

func (DoSetupResponseValidationError) ErrorName

func (e DoSetupResponseValidationError) ErrorName() string

ErrorName returns error name.

func (DoSetupResponseValidationError) Field

Field function returns field value.

func (DoSetupResponseValidationError) Key

Key function returns key value.

func (DoSetupResponseValidationError) Reason

Reason function returns reason value.

type Event

type Event int32
const (
	Event_EVENT_UNSPECIFIED Event = 0
	Event_EVENT_SETUP       Event = 1
	Event_EVENT_VERIFY      Event = 2
	Event_EVENT_DELETE      Event = 3
)

func (Event) Descriptor

func (Event) Descriptor() protoreflect.EnumDescriptor

func (Event) Enum

func (x Event) Enum() *Event

func (Event) EnumDescriptor deprecated

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

Deprecated: Use Event.Descriptor instead.

func (Event) Number

func (x Event) Number() protoreflect.EnumNumber

func (Event) String

func (x Event) String() string

func (Event) Type

func (Event) Type() protoreflect.EnumType

type GetSetupInfoRequest

type GetSetupInfoRequest struct {
	BizId string `protobuf:"bytes,1,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSetupInfoRequest) Descriptor deprecated

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

Deprecated: Use GetSetupInfoRequest.ProtoReflect.Descriptor instead.

func (*GetSetupInfoRequest) GetBizId

func (x *GetSetupInfoRequest) GetBizId() string

func (*GetSetupInfoRequest) ProtoMessage

func (*GetSetupInfoRequest) ProtoMessage()

func (*GetSetupInfoRequest) ProtoReflect

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

func (*GetSetupInfoRequest) Reset

func (x *GetSetupInfoRequest) Reset()

func (*GetSetupInfoRequest) String

func (x *GetSetupInfoRequest) String() string

func (*GetSetupInfoRequest) Validate

func (m *GetSetupInfoRequest) Validate() error

Validate checks the field values on GetSetupInfoRequest 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 (*GetSetupInfoRequest) ValidateAll

func (m *GetSetupInfoRequest) ValidateAll() error

ValidateAll checks the field values on GetSetupInfoRequest 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 GetSetupInfoRequestMultiError, or nil if none found.

type GetSetupInfoRequestMultiError

type GetSetupInfoRequestMultiError []error

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

func (GetSetupInfoRequestMultiError) AllErrors

func (m GetSetupInfoRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetSetupInfoRequestMultiError) Error

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

type GetSetupInfoRequestValidationError

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

GetSetupInfoRequestValidationError is the validation error returned by GetSetupInfoRequest.Validate if the designated constraints aren't met.

func (GetSetupInfoRequestValidationError) Cause

Cause function returns cause value.

func (GetSetupInfoRequestValidationError) Error

Error satisfies the builtin error interface

func (GetSetupInfoRequestValidationError) ErrorName

ErrorName returns error name.

func (GetSetupInfoRequestValidationError) Field

Field function returns field value.

func (GetSetupInfoRequestValidationError) Key

Key function returns key value.

func (GetSetupInfoRequestValidationError) Reason

Reason function returns reason value.

type GetSetupInfoResponse

type GetSetupInfoResponse struct {
	Status    *Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	SecretKey string  `protobuf:"bytes,2,opt,name=secret_key,json=secretKey,proto3" json:"secret_key,omitempty"`
	QrCode    string  `protobuf:"bytes,3,opt,name=qr_code,json=qrCode,proto3" json:"qr_code,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSetupInfoResponse) Descriptor deprecated

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

Deprecated: Use GetSetupInfoResponse.ProtoReflect.Descriptor instead.

func (*GetSetupInfoResponse) GetQrCode

func (x *GetSetupInfoResponse) GetQrCode() string

func (*GetSetupInfoResponse) GetSecretKey

func (x *GetSetupInfoResponse) GetSecretKey() string

func (*GetSetupInfoResponse) GetStatus

func (x *GetSetupInfoResponse) GetStatus() *Status

func (*GetSetupInfoResponse) ProtoMessage

func (*GetSetupInfoResponse) ProtoMessage()

func (*GetSetupInfoResponse) ProtoReflect

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

func (*GetSetupInfoResponse) Reset

func (x *GetSetupInfoResponse) Reset()

func (*GetSetupInfoResponse) String

func (x *GetSetupInfoResponse) String() string

func (*GetSetupInfoResponse) Validate

func (m *GetSetupInfoResponse) Validate() error

Validate checks the field values on GetSetupInfoResponse 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 (*GetSetupInfoResponse) ValidateAll

func (m *GetSetupInfoResponse) ValidateAll() error

ValidateAll checks the field values on GetSetupInfoResponse 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 GetSetupInfoResponseMultiError, or nil if none found.

type GetSetupInfoResponseMultiError

type GetSetupInfoResponseMultiError []error

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

func (GetSetupInfoResponseMultiError) AllErrors

func (m GetSetupInfoResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetSetupInfoResponseMultiError) Error

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

type GetSetupInfoResponseValidationError

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

GetSetupInfoResponseValidationError is the validation error returned by GetSetupInfoResponse.Validate if the designated constraints aren't met.

func (GetSetupInfoResponseValidationError) Cause

Cause function returns cause value.

func (GetSetupInfoResponseValidationError) Error

Error satisfies the builtin error interface

func (GetSetupInfoResponseValidationError) ErrorName

ErrorName returns error name.

func (GetSetupInfoResponseValidationError) Field

Field function returns field value.

func (GetSetupInfoResponseValidationError) Key

Key function returns key value.

func (GetSetupInfoResponseValidationError) Reason

Reason function returns reason value.

type ListUsersRequest

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

func (*ListUsersRequest) Descriptor deprecated

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

Deprecated: Use ListUsersRequest.ProtoReflect.Descriptor instead.

func (*ListUsersRequest) ProtoMessage

func (*ListUsersRequest) ProtoMessage()

func (*ListUsersRequest) ProtoReflect

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

func (*ListUsersRequest) Reset

func (x *ListUsersRequest) Reset()

func (*ListUsersRequest) String

func (x *ListUsersRequest) String() string

func (*ListUsersRequest) Validate

func (m *ListUsersRequest) Validate() error

Validate checks the field values on ListUsersRequest 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 (*ListUsersRequest) ValidateAll

func (m *ListUsersRequest) ValidateAll() error

ValidateAll checks the field values on ListUsersRequest 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 ListUsersRequestMultiError, or nil if none found.

type ListUsersRequestMultiError

type ListUsersRequestMultiError []error

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

func (ListUsersRequestMultiError) AllErrors

func (m ListUsersRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListUsersRequestMultiError) Error

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

type ListUsersRequestValidationError

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

ListUsersRequestValidationError is the validation error returned by ListUsersRequest.Validate if the designated constraints aren't met.

func (ListUsersRequestValidationError) Cause

Cause function returns cause value.

func (ListUsersRequestValidationError) Error

Error satisfies the builtin error interface

func (ListUsersRequestValidationError) ErrorName

ErrorName returns error name.

func (ListUsersRequestValidationError) Field

Field function returns field value.

func (ListUsersRequestValidationError) Key

Key function returns key value.

func (ListUsersRequestValidationError) Reason

Reason function returns reason value.

type ListUsersResponse

type ListUsersResponse struct {
	Status    *Status     `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	UserInfos []*UserInfo `protobuf:"bytes,2,rep,name=user_infos,json=userInfos,proto3" json:"user_infos,omitempty"`
	// contains filtered or unexported fields
}

func (*ListUsersResponse) Descriptor deprecated

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

Deprecated: Use ListUsersResponse.ProtoReflect.Descriptor instead.

func (*ListUsersResponse) GetStatus

func (x *ListUsersResponse) GetStatus() *Status

func (*ListUsersResponse) GetUserInfos

func (x *ListUsersResponse) GetUserInfos() []*UserInfo

func (*ListUsersResponse) ProtoMessage

func (*ListUsersResponse) ProtoMessage()

func (*ListUsersResponse) ProtoReflect

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

func (*ListUsersResponse) Reset

func (x *ListUsersResponse) Reset()

func (*ListUsersResponse) String

func (x *ListUsersResponse) String() string

func (*ListUsersResponse) Validate

func (m *ListUsersResponse) Validate() error

Validate checks the field values on ListUsersResponse 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 (*ListUsersResponse) ValidateAll

func (m *ListUsersResponse) ValidateAll() error

ValidateAll checks the field values on ListUsersResponse 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 ListUsersResponseMultiError, or nil if none found.

type ListUsersResponseMultiError

type ListUsersResponseMultiError []error

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

func (ListUsersResponseMultiError) AllErrors

func (m ListUsersResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListUsersResponseMultiError) Error

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

type ListUsersResponseValidationError

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

ListUsersResponseValidationError is the validation error returned by ListUsersResponse.Validate if the designated constraints aren't met.

func (ListUsersResponseValidationError) Cause

Cause function returns cause value.

func (ListUsersResponseValidationError) Error

Error satisfies the builtin error interface

func (ListUsersResponseValidationError) ErrorName

ErrorName returns error name.

func (ListUsersResponseValidationError) Field

Field function returns field value.

func (ListUsersResponseValidationError) Key

Key function returns key value.

func (ListUsersResponseValidationError) Reason

Reason function returns reason value.

type LoginBeginRequest

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

func (*LoginBeginRequest) Descriptor deprecated

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

Deprecated: Use LoginBeginRequest.ProtoReflect.Descriptor instead.

func (*LoginBeginRequest) ProtoMessage

func (*LoginBeginRequest) ProtoMessage()

func (*LoginBeginRequest) ProtoReflect

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

func (*LoginBeginRequest) Reset

func (x *LoginBeginRequest) Reset()

func (*LoginBeginRequest) String

func (x *LoginBeginRequest) String() string

func (*LoginBeginRequest) Validate

func (m *LoginBeginRequest) Validate() error

Validate checks the field values on LoginBeginRequest 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 (*LoginBeginRequest) ValidateAll

func (m *LoginBeginRequest) ValidateAll() error

ValidateAll checks the field values on LoginBeginRequest 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 LoginBeginRequestMultiError, or nil if none found.

type LoginBeginRequestMultiError

type LoginBeginRequestMultiError []error

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

func (LoginBeginRequestMultiError) AllErrors

func (m LoginBeginRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginBeginRequestMultiError) Error

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

type LoginBeginRequestValidationError

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

LoginBeginRequestValidationError is the validation error returned by LoginBeginRequest.Validate if the designated constraints aren't met.

func (LoginBeginRequestValidationError) Cause

Cause function returns cause value.

func (LoginBeginRequestValidationError) Error

Error satisfies the builtin error interface

func (LoginBeginRequestValidationError) ErrorName

ErrorName returns error name.

func (LoginBeginRequestValidationError) Field

Field function returns field value.

func (LoginBeginRequestValidationError) Key

Key function returns key value.

func (LoginBeginRequestValidationError) Reason

Reason function returns reason value.

type LoginBeginResponse

type LoginBeginResponse struct {
	Status         *Status               `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	BizId          string                `protobuf:"bytes,2,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	NeededOrEvents []*AuthenticatorEvent `protobuf:"bytes,3,rep,name=needed_or_events,json=neededOrEvents,proto3" json:"needed_or_events,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginBeginResponse) Descriptor deprecated

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

Deprecated: Use LoginBeginResponse.ProtoReflect.Descriptor instead.

func (*LoginBeginResponse) GetBizId

func (x *LoginBeginResponse) GetBizId() string

func (*LoginBeginResponse) GetNeededOrEvents

func (x *LoginBeginResponse) GetNeededOrEvents() []*AuthenticatorEvent

func (*LoginBeginResponse) GetStatus

func (x *LoginBeginResponse) GetStatus() *Status

func (*LoginBeginResponse) ProtoMessage

func (*LoginBeginResponse) ProtoMessage()

func (*LoginBeginResponse) ProtoReflect

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

func (*LoginBeginResponse) Reset

func (x *LoginBeginResponse) Reset()

func (*LoginBeginResponse) String

func (x *LoginBeginResponse) String() string

func (*LoginBeginResponse) Validate

func (m *LoginBeginResponse) Validate() error

Validate checks the field values on LoginBeginResponse 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 (*LoginBeginResponse) ValidateAll

func (m *LoginBeginResponse) ValidateAll() error

ValidateAll checks the field values on LoginBeginResponse 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 LoginBeginResponseMultiError, or nil if none found.

type LoginBeginResponseMultiError

type LoginBeginResponseMultiError []error

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

func (LoginBeginResponseMultiError) AllErrors

func (m LoginBeginResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginBeginResponseMultiError) Error

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

type LoginBeginResponseValidationError

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

LoginBeginResponseValidationError is the validation error returned by LoginBeginResponse.Validate if the designated constraints aren't met.

func (LoginBeginResponseValidationError) Cause

Cause function returns cause value.

func (LoginBeginResponseValidationError) Error

Error satisfies the builtin error interface

func (LoginBeginResponseValidationError) ErrorName

ErrorName returns error name.

func (LoginBeginResponseValidationError) Field

Field function returns field value.

func (LoginBeginResponseValidationError) Key

Key function returns key value.

func (LoginBeginResponseValidationError) Reason

Reason function returns reason value.

type LoginCheckRequest

type LoginCheckRequest struct {
	BizId string `protobuf:"bytes,1,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginCheckRequest) Descriptor deprecated

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

Deprecated: Use LoginCheckRequest.ProtoReflect.Descriptor instead.

func (*LoginCheckRequest) GetBizId

func (x *LoginCheckRequest) GetBizId() string

func (*LoginCheckRequest) ProtoMessage

func (*LoginCheckRequest) ProtoMessage()

func (*LoginCheckRequest) ProtoReflect

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

func (*LoginCheckRequest) Reset

func (x *LoginCheckRequest) Reset()

func (*LoginCheckRequest) String

func (x *LoginCheckRequest) String() string

func (*LoginCheckRequest) Validate

func (m *LoginCheckRequest) Validate() error

Validate checks the field values on LoginCheckRequest 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 (*LoginCheckRequest) ValidateAll

func (m *LoginCheckRequest) ValidateAll() error

ValidateAll checks the field values on LoginCheckRequest 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 LoginCheckRequestMultiError, or nil if none found.

type LoginCheckRequestMultiError

type LoginCheckRequestMultiError []error

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

func (LoginCheckRequestMultiError) AllErrors

func (m LoginCheckRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginCheckRequestMultiError) Error

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

type LoginCheckRequestValidationError

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

LoginCheckRequestValidationError is the validation error returned by LoginCheckRequest.Validate if the designated constraints aren't met.

func (LoginCheckRequestValidationError) Cause

Cause function returns cause value.

func (LoginCheckRequestValidationError) Error

Error satisfies the builtin error interface

func (LoginCheckRequestValidationError) ErrorName

ErrorName returns error name.

func (LoginCheckRequestValidationError) Field

Field function returns field value.

func (LoginCheckRequestValidationError) Key

Key function returns key value.

func (LoginCheckRequestValidationError) Reason

Reason function returns reason value.

type LoginCheckResponse

type LoginCheckResponse struct {
	Status         *Status               `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	NeededOrEvents []*AuthenticatorEvent `protobuf:"bytes,2,rep,name=needed_or_events,json=neededOrEvents,proto3" json:"needed_or_events,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginCheckResponse) Descriptor deprecated

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

Deprecated: Use LoginCheckResponse.ProtoReflect.Descriptor instead.

func (*LoginCheckResponse) GetNeededOrEvents

func (x *LoginCheckResponse) GetNeededOrEvents() []*AuthenticatorEvent

func (*LoginCheckResponse) GetStatus

func (x *LoginCheckResponse) GetStatus() *Status

func (*LoginCheckResponse) ProtoMessage

func (*LoginCheckResponse) ProtoMessage()

func (*LoginCheckResponse) ProtoReflect

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

func (*LoginCheckResponse) Reset

func (x *LoginCheckResponse) Reset()

func (*LoginCheckResponse) String

func (x *LoginCheckResponse) String() string

func (*LoginCheckResponse) Validate

func (m *LoginCheckResponse) Validate() error

Validate checks the field values on LoginCheckResponse 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 (*LoginCheckResponse) ValidateAll

func (m *LoginCheckResponse) ValidateAll() error

ValidateAll checks the field values on LoginCheckResponse 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 LoginCheckResponseMultiError, or nil if none found.

type LoginCheckResponseMultiError

type LoginCheckResponseMultiError []error

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

func (LoginCheckResponseMultiError) AllErrors

func (m LoginCheckResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginCheckResponseMultiError) Error

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

type LoginCheckResponseValidationError

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

LoginCheckResponseValidationError is the validation error returned by LoginCheckResponse.Validate if the designated constraints aren't met.

func (LoginCheckResponseValidationError) Cause

Cause function returns cause value.

func (LoginCheckResponseValidationError) Error

Error satisfies the builtin error interface

func (LoginCheckResponseValidationError) ErrorName

ErrorName returns error name.

func (LoginCheckResponseValidationError) Field

Field function returns field value.

func (LoginCheckResponseValidationError) Key

Key function returns key value.

func (LoginCheckResponseValidationError) Reason

Reason function returns reason value.

type LoginEndRequest

type LoginEndRequest struct {
	BizId string `protobuf:"bytes,1,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginEndRequest) Descriptor deprecated

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

Deprecated: Use LoginEndRequest.ProtoReflect.Descriptor instead.

func (*LoginEndRequest) GetBizId

func (x *LoginEndRequest) GetBizId() string

func (*LoginEndRequest) ProtoMessage

func (*LoginEndRequest) ProtoMessage()

func (*LoginEndRequest) ProtoReflect

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

func (*LoginEndRequest) Reset

func (x *LoginEndRequest) Reset()

func (*LoginEndRequest) String

func (x *LoginEndRequest) String() string

func (*LoginEndRequest) Validate

func (m *LoginEndRequest) Validate() error

Validate checks the field values on LoginEndRequest 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 (*LoginEndRequest) ValidateAll

func (m *LoginEndRequest) ValidateAll() error

ValidateAll checks the field values on LoginEndRequest 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 LoginEndRequestMultiError, or nil if none found.

type LoginEndRequestMultiError

type LoginEndRequestMultiError []error

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

func (LoginEndRequestMultiError) AllErrors

func (m LoginEndRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginEndRequestMultiError) Error

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

type LoginEndRequestValidationError

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

LoginEndRequestValidationError is the validation error returned by LoginEndRequest.Validate if the designated constraints aren't met.

func (LoginEndRequestValidationError) Cause

Cause function returns cause value.

func (LoginEndRequestValidationError) Error

Error satisfies the builtin error interface

func (LoginEndRequestValidationError) ErrorName

func (e LoginEndRequestValidationError) ErrorName() string

ErrorName returns error name.

func (LoginEndRequestValidationError) Field

Field function returns field value.

func (LoginEndRequestValidationError) Key

Key function returns key value.

func (LoginEndRequestValidationError) Reason

Reason function returns reason value.

type LoginEndResponse

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

func (*LoginEndResponse) Descriptor deprecated

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

Deprecated: Use LoginEndResponse.ProtoReflect.Descriptor instead.

func (*LoginEndResponse) GetStatus

func (x *LoginEndResponse) GetStatus() *Status

func (*LoginEndResponse) GetUserId

func (x *LoginEndResponse) GetUserId() string

func (*LoginEndResponse) ProtoMessage

func (*LoginEndResponse) ProtoMessage()

func (*LoginEndResponse) ProtoReflect

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

func (*LoginEndResponse) Reset

func (x *LoginEndResponse) Reset()

func (*LoginEndResponse) String

func (x *LoginEndResponse) String() string

func (*LoginEndResponse) Validate

func (m *LoginEndResponse) Validate() error

Validate checks the field values on LoginEndResponse 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 (*LoginEndResponse) ValidateAll

func (m *LoginEndResponse) ValidateAll() error

ValidateAll checks the field values on LoginEndResponse 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 LoginEndResponseMultiError, or nil if none found.

type LoginEndResponseMultiError

type LoginEndResponseMultiError []error

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

func (LoginEndResponseMultiError) AllErrors

func (m LoginEndResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginEndResponseMultiError) Error

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

type LoginEndResponseValidationError

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

LoginEndResponseValidationError is the validation error returned by LoginEndResponse.Validate if the designated constraints aren't met.

func (LoginEndResponseValidationError) Cause

Cause function returns cause value.

func (LoginEndResponseValidationError) Error

Error satisfies the builtin error interface

func (LoginEndResponseValidationError) ErrorName

ErrorName returns error name.

func (LoginEndResponseValidationError) Field

Field function returns field value.

func (LoginEndResponseValidationError) Key

Key function returns key value.

func (LoginEndResponseValidationError) Reason

Reason function returns reason value.

type LoginRequest

type LoginRequest struct {
	BizId    string `protobuf:"bytes,1,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
	Password string `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginRequest) Descriptor deprecated

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

Deprecated: Use LoginRequest.ProtoReflect.Descriptor instead.

func (*LoginRequest) GetBizId

func (x *LoginRequest) GetBizId() string

func (*LoginRequest) GetPassword

func (x *LoginRequest) GetPassword() string

func (*LoginRequest) GetUserName

func (x *LoginRequest) GetUserName() string

func (*LoginRequest) ProtoMessage

func (*LoginRequest) ProtoMessage()

func (*LoginRequest) ProtoReflect

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

func (*LoginRequest) Reset

func (x *LoginRequest) Reset()

func (*LoginRequest) String

func (x *LoginRequest) String() string

func (*LoginRequest) Validate

func (m *LoginRequest) Validate() error

Validate checks the field values on LoginRequest 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 (*LoginRequest) ValidateAll

func (m *LoginRequest) ValidateAll() error

ValidateAll checks the field values on LoginRequest 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 LoginRequestMultiError, or nil if none found.

type LoginRequestMultiError

type LoginRequestMultiError []error

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

func (LoginRequestMultiError) AllErrors

func (m LoginRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginRequestMultiError) Error

func (m LoginRequestMultiError) Error() string

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

type LoginRequestValidationError

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

LoginRequestValidationError is the validation error returned by LoginRequest.Validate if the designated constraints aren't met.

func (LoginRequestValidationError) Cause

Cause function returns cause value.

func (LoginRequestValidationError) Error

Error satisfies the builtin error interface

func (LoginRequestValidationError) ErrorName

func (e LoginRequestValidationError) ErrorName() string

ErrorName returns error name.

func (LoginRequestValidationError) Field

Field function returns field value.

func (LoginRequestValidationError) Key

Key function returns key value.

func (LoginRequestValidationError) Reason

Reason function returns reason value.

type LoginResponse

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

func (*LoginResponse) Descriptor deprecated

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

Deprecated: Use LoginResponse.ProtoReflect.Descriptor instead.

func (*LoginResponse) GetStatus

func (x *LoginResponse) GetStatus() *Status

func (*LoginResponse) ProtoMessage

func (*LoginResponse) ProtoMessage()

func (*LoginResponse) ProtoReflect

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

func (*LoginResponse) Reset

func (x *LoginResponse) Reset()

func (*LoginResponse) String

func (x *LoginResponse) String() string

func (*LoginResponse) Validate

func (m *LoginResponse) Validate() error

Validate checks the field values on LoginResponse 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 (*LoginResponse) ValidateAll

func (m *LoginResponse) ValidateAll() error

ValidateAll checks the field values on LoginResponse 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 LoginResponseMultiError, or nil if none found.

type LoginResponseMultiError

type LoginResponseMultiError []error

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

func (LoginResponseMultiError) AllErrors

func (m LoginResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginResponseMultiError) Error

func (m LoginResponseMultiError) Error() string

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

type LoginResponseValidationError

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

LoginResponseValidationError is the validation error returned by LoginResponse.Validate if the designated constraints aren't met.

func (LoginResponseValidationError) Cause

Cause function returns cause value.

func (LoginResponseValidationError) Error

Error satisfies the builtin error interface

func (LoginResponseValidationError) ErrorName

func (e LoginResponseValidationError) ErrorName() string

ErrorName returns error name.

func (LoginResponseValidationError) Field

Field function returns field value.

func (LoginResponseValidationError) Key

Key function returns key value.

func (LoginResponseValidationError) Reason

Reason function returns reason value.

type LogoutRequest

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

func (*LogoutRequest) Descriptor deprecated

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

Deprecated: Use LogoutRequest.ProtoReflect.Descriptor instead.

func (*LogoutRequest) ProtoMessage

func (*LogoutRequest) ProtoMessage()

func (*LogoutRequest) ProtoReflect

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

func (*LogoutRequest) Reset

func (x *LogoutRequest) Reset()

func (*LogoutRequest) String

func (x *LogoutRequest) String() string

func (*LogoutRequest) Validate

func (m *LogoutRequest) Validate() error

Validate checks the field values on LogoutRequest 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 (*LogoutRequest) ValidateAll

func (m *LogoutRequest) ValidateAll() error

ValidateAll checks the field values on LogoutRequest 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 LogoutRequestMultiError, or nil if none found.

type LogoutRequestMultiError

type LogoutRequestMultiError []error

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

func (LogoutRequestMultiError) AllErrors

func (m LogoutRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LogoutRequestMultiError) Error

func (m LogoutRequestMultiError) Error() string

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

type LogoutRequestValidationError

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

LogoutRequestValidationError is the validation error returned by LogoutRequest.Validate if the designated constraints aren't met.

func (LogoutRequestValidationError) Cause

Cause function returns cause value.

func (LogoutRequestValidationError) Error

Error satisfies the builtin error interface

func (LogoutRequestValidationError) ErrorName

func (e LogoutRequestValidationError) ErrorName() string

ErrorName returns error name.

func (LogoutRequestValidationError) Field

Field function returns field value.

func (LogoutRequestValidationError) Key

Key function returns key value.

func (LogoutRequestValidationError) Reason

Reason function returns reason value.

type LogoutResponse

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

func (*LogoutResponse) Descriptor deprecated

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

Deprecated: Use LogoutResponse.ProtoReflect.Descriptor instead.

func (*LogoutResponse) GetStatus

func (x *LogoutResponse) GetStatus() *Status

func (*LogoutResponse) ProtoMessage

func (*LogoutResponse) ProtoMessage()

func (*LogoutResponse) ProtoReflect

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

func (*LogoutResponse) Reset

func (x *LogoutResponse) Reset()

func (*LogoutResponse) String

func (x *LogoutResponse) String() string

func (*LogoutResponse) Validate

func (m *LogoutResponse) Validate() error

Validate checks the field values on LogoutResponse 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 (*LogoutResponse) ValidateAll

func (m *LogoutResponse) ValidateAll() error

ValidateAll checks the field values on LogoutResponse 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 LogoutResponseMultiError, or nil if none found.

type LogoutResponseMultiError

type LogoutResponseMultiError []error

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

func (LogoutResponseMultiError) AllErrors

func (m LogoutResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LogoutResponseMultiError) Error

func (m LogoutResponseMultiError) Error() string

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

type LogoutResponseValidationError

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

LogoutResponseValidationError is the validation error returned by LogoutResponse.Validate if the designated constraints aren't met.

func (LogoutResponseValidationError) Cause

Cause function returns cause value.

func (LogoutResponseValidationError) Error

Error satisfies the builtin error interface

func (LogoutResponseValidationError) ErrorName

func (e LogoutResponseValidationError) ErrorName() string

ErrorName returns error name.

func (LogoutResponseValidationError) Field

Field function returns field value.

func (LogoutResponseValidationError) Key

Key function returns key value.

func (LogoutResponseValidationError) Reason

Reason function returns reason value.

type RegisterBeginRequest

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

func (*RegisterBeginRequest) Descriptor deprecated

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

Deprecated: Use RegisterBeginRequest.ProtoReflect.Descriptor instead.

func (*RegisterBeginRequest) ProtoMessage

func (*RegisterBeginRequest) ProtoMessage()

func (*RegisterBeginRequest) ProtoReflect

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

func (*RegisterBeginRequest) Reset

func (x *RegisterBeginRequest) Reset()

func (*RegisterBeginRequest) String

func (x *RegisterBeginRequest) String() string

func (*RegisterBeginRequest) Validate

func (m *RegisterBeginRequest) Validate() error

Validate checks the field values on RegisterBeginRequest 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 (*RegisterBeginRequest) ValidateAll

func (m *RegisterBeginRequest) ValidateAll() error

ValidateAll checks the field values on RegisterBeginRequest 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 RegisterBeginRequestMultiError, or nil if none found.

type RegisterBeginRequestMultiError

type RegisterBeginRequestMultiError []error

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

func (RegisterBeginRequestMultiError) AllErrors

func (m RegisterBeginRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RegisterBeginRequestMultiError) Error

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

type RegisterBeginRequestValidationError

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

RegisterBeginRequestValidationError is the validation error returned by RegisterBeginRequest.Validate if the designated constraints aren't met.

func (RegisterBeginRequestValidationError) Cause

Cause function returns cause value.

func (RegisterBeginRequestValidationError) Error

Error satisfies the builtin error interface

func (RegisterBeginRequestValidationError) ErrorName

ErrorName returns error name.

func (RegisterBeginRequestValidationError) Field

Field function returns field value.

func (RegisterBeginRequestValidationError) Key

Key function returns key value.

func (RegisterBeginRequestValidationError) Reason

Reason function returns reason value.

type RegisterBeginResponse

type RegisterBeginResponse struct {
	Status         *Status               `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	BizId          string                `protobuf:"bytes,2,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	NeededOrEvents []*AuthenticatorEvent `protobuf:"bytes,3,rep,name=needed_or_events,json=neededOrEvents,proto3" json:"needed_or_events,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterBeginResponse) Descriptor deprecated

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

Deprecated: Use RegisterBeginResponse.ProtoReflect.Descriptor instead.

func (*RegisterBeginResponse) GetBizId

func (x *RegisterBeginResponse) GetBizId() string

func (*RegisterBeginResponse) GetNeededOrEvents

func (x *RegisterBeginResponse) GetNeededOrEvents() []*AuthenticatorEvent

func (*RegisterBeginResponse) GetStatus

func (x *RegisterBeginResponse) GetStatus() *Status

func (*RegisterBeginResponse) ProtoMessage

func (*RegisterBeginResponse) ProtoMessage()

func (*RegisterBeginResponse) ProtoReflect

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

func (*RegisterBeginResponse) Reset

func (x *RegisterBeginResponse) Reset()

func (*RegisterBeginResponse) String

func (x *RegisterBeginResponse) String() string

func (*RegisterBeginResponse) Validate

func (m *RegisterBeginResponse) Validate() error

Validate checks the field values on RegisterBeginResponse 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 (*RegisterBeginResponse) ValidateAll

func (m *RegisterBeginResponse) ValidateAll() error

ValidateAll checks the field values on RegisterBeginResponse 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 RegisterBeginResponseMultiError, or nil if none found.

type RegisterBeginResponseMultiError

type RegisterBeginResponseMultiError []error

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

func (RegisterBeginResponseMultiError) AllErrors

func (m RegisterBeginResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RegisterBeginResponseMultiError) Error

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

type RegisterBeginResponseValidationError

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

RegisterBeginResponseValidationError is the validation error returned by RegisterBeginResponse.Validate if the designated constraints aren't met.

func (RegisterBeginResponseValidationError) Cause

Cause function returns cause value.

func (RegisterBeginResponseValidationError) Error

Error satisfies the builtin error interface

func (RegisterBeginResponseValidationError) ErrorName

ErrorName returns error name.

func (RegisterBeginResponseValidationError) Field

Field function returns field value.

func (RegisterBeginResponseValidationError) Key

Key function returns key value.

func (RegisterBeginResponseValidationError) Reason

Reason function returns reason value.

type RegisterCheckRequest

type RegisterCheckRequest struct {
	BizId string `protobuf:"bytes,1,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterCheckRequest) Descriptor deprecated

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

Deprecated: Use RegisterCheckRequest.ProtoReflect.Descriptor instead.

func (*RegisterCheckRequest) GetBizId

func (x *RegisterCheckRequest) GetBizId() string

func (*RegisterCheckRequest) ProtoMessage

func (*RegisterCheckRequest) ProtoMessage()

func (*RegisterCheckRequest) ProtoReflect

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

func (*RegisterCheckRequest) Reset

func (x *RegisterCheckRequest) Reset()

func (*RegisterCheckRequest) String

func (x *RegisterCheckRequest) String() string

func (*RegisterCheckRequest) Validate

func (m *RegisterCheckRequest) Validate() error

Validate checks the field values on RegisterCheckRequest 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 (*RegisterCheckRequest) ValidateAll

func (m *RegisterCheckRequest) ValidateAll() error

ValidateAll checks the field values on RegisterCheckRequest 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 RegisterCheckRequestMultiError, or nil if none found.

type RegisterCheckRequestMultiError

type RegisterCheckRequestMultiError []error

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

func (RegisterCheckRequestMultiError) AllErrors

func (m RegisterCheckRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RegisterCheckRequestMultiError) Error

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

type RegisterCheckRequestValidationError

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

RegisterCheckRequestValidationError is the validation error returned by RegisterCheckRequest.Validate if the designated constraints aren't met.

func (RegisterCheckRequestValidationError) Cause

Cause function returns cause value.

func (RegisterCheckRequestValidationError) Error

Error satisfies the builtin error interface

func (RegisterCheckRequestValidationError) ErrorName

ErrorName returns error name.

func (RegisterCheckRequestValidationError) Field

Field function returns field value.

func (RegisterCheckRequestValidationError) Key

Key function returns key value.

func (RegisterCheckRequestValidationError) Reason

Reason function returns reason value.

type RegisterCheckResponse

type RegisterCheckResponse struct {
	Status         *Status               `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	NeededOrEvents []*AuthenticatorEvent `protobuf:"bytes,2,rep,name=needed_or_events,json=neededOrEvents,proto3" json:"needed_or_events,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterCheckResponse) Descriptor deprecated

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

Deprecated: Use RegisterCheckResponse.ProtoReflect.Descriptor instead.

func (*RegisterCheckResponse) GetNeededOrEvents

func (x *RegisterCheckResponse) GetNeededOrEvents() []*AuthenticatorEvent

func (*RegisterCheckResponse) GetStatus

func (x *RegisterCheckResponse) GetStatus() *Status

func (*RegisterCheckResponse) ProtoMessage

func (*RegisterCheckResponse) ProtoMessage()

func (*RegisterCheckResponse) ProtoReflect

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

func (*RegisterCheckResponse) Reset

func (x *RegisterCheckResponse) Reset()

func (*RegisterCheckResponse) String

func (x *RegisterCheckResponse) String() string

func (*RegisterCheckResponse) Validate

func (m *RegisterCheckResponse) Validate() error

Validate checks the field values on RegisterCheckResponse 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 (*RegisterCheckResponse) ValidateAll

func (m *RegisterCheckResponse) ValidateAll() error

ValidateAll checks the field values on RegisterCheckResponse 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 RegisterCheckResponseMultiError, or nil if none found.

type RegisterCheckResponseMultiError

type RegisterCheckResponseMultiError []error

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

func (RegisterCheckResponseMultiError) AllErrors

func (m RegisterCheckResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RegisterCheckResponseMultiError) Error

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

type RegisterCheckResponseValidationError

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

RegisterCheckResponseValidationError is the validation error returned by RegisterCheckResponse.Validate if the designated constraints aren't met.

func (RegisterCheckResponseValidationError) Cause

Cause function returns cause value.

func (RegisterCheckResponseValidationError) Error

Error satisfies the builtin error interface

func (RegisterCheckResponseValidationError) ErrorName

ErrorName returns error name.

func (RegisterCheckResponseValidationError) Field

Field function returns field value.

func (RegisterCheckResponseValidationError) Key

Key function returns key value.

func (RegisterCheckResponseValidationError) Reason

Reason function returns reason value.

type RegisterEndRequest

type RegisterEndRequest struct {
	BizId string `protobuf:"bytes,1,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterEndRequest) Descriptor deprecated

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

Deprecated: Use RegisterEndRequest.ProtoReflect.Descriptor instead.

func (*RegisterEndRequest) GetBizId

func (x *RegisterEndRequest) GetBizId() string

func (*RegisterEndRequest) ProtoMessage

func (*RegisterEndRequest) ProtoMessage()

func (*RegisterEndRequest) ProtoReflect

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

func (*RegisterEndRequest) Reset

func (x *RegisterEndRequest) Reset()

func (*RegisterEndRequest) String

func (x *RegisterEndRequest) String() string

func (*RegisterEndRequest) Validate

func (m *RegisterEndRequest) Validate() error

Validate checks the field values on RegisterEndRequest 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 (*RegisterEndRequest) ValidateAll

func (m *RegisterEndRequest) ValidateAll() error

ValidateAll checks the field values on RegisterEndRequest 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 RegisterEndRequestMultiError, or nil if none found.

type RegisterEndRequestMultiError

type RegisterEndRequestMultiError []error

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

func (RegisterEndRequestMultiError) AllErrors

func (m RegisterEndRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RegisterEndRequestMultiError) Error

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

type RegisterEndRequestValidationError

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

RegisterEndRequestValidationError is the validation error returned by RegisterEndRequest.Validate if the designated constraints aren't met.

func (RegisterEndRequestValidationError) Cause

Cause function returns cause value.

func (RegisterEndRequestValidationError) Error

Error satisfies the builtin error interface

func (RegisterEndRequestValidationError) ErrorName

ErrorName returns error name.

func (RegisterEndRequestValidationError) Field

Field function returns field value.

func (RegisterEndRequestValidationError) Key

Key function returns key value.

func (RegisterEndRequestValidationError) Reason

Reason function returns reason value.

type RegisterEndResponse

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

func (*RegisterEndResponse) Descriptor deprecated

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

Deprecated: Use RegisterEndResponse.ProtoReflect.Descriptor instead.

func (*RegisterEndResponse) GetStatus

func (x *RegisterEndResponse) GetStatus() *Status

func (*RegisterEndResponse) GetUserId

func (x *RegisterEndResponse) GetUserId() string

func (*RegisterEndResponse) ProtoMessage

func (*RegisterEndResponse) ProtoMessage()

func (*RegisterEndResponse) ProtoReflect

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

func (*RegisterEndResponse) Reset

func (x *RegisterEndResponse) Reset()

func (*RegisterEndResponse) String

func (x *RegisterEndResponse) String() string

func (*RegisterEndResponse) Validate

func (m *RegisterEndResponse) Validate() error

Validate checks the field values on RegisterEndResponse 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 (*RegisterEndResponse) ValidateAll

func (m *RegisterEndResponse) ValidateAll() error

ValidateAll checks the field values on RegisterEndResponse 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 RegisterEndResponseMultiError, or nil if none found.

type RegisterEndResponseMultiError

type RegisterEndResponseMultiError []error

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

func (RegisterEndResponseMultiError) AllErrors

func (m RegisterEndResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RegisterEndResponseMultiError) Error

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

type RegisterEndResponseValidationError

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

RegisterEndResponseValidationError is the validation error returned by RegisterEndResponse.Validate if the designated constraints aren't met.

func (RegisterEndResponseValidationError) Cause

Cause function returns cause value.

func (RegisterEndResponseValidationError) Error

Error satisfies the builtin error interface

func (RegisterEndResponseValidationError) ErrorName

ErrorName returns error name.

func (RegisterEndResponseValidationError) Field

Field function returns field value.

func (RegisterEndResponseValidationError) Key

Key function returns key value.

func (RegisterEndResponseValidationError) Reason

Reason function returns reason value.

type RegisterRequest

type RegisterRequest struct {
	BizId    string `protobuf:"bytes,1,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
	Password string `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterRequest) Descriptor deprecated

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

Deprecated: Use RegisterRequest.ProtoReflect.Descriptor instead.

func (*RegisterRequest) GetBizId

func (x *RegisterRequest) GetBizId() string

func (*RegisterRequest) GetPassword

func (x *RegisterRequest) GetPassword() string

func (*RegisterRequest) GetUserName

func (x *RegisterRequest) GetUserName() string

func (*RegisterRequest) ProtoMessage

func (*RegisterRequest) ProtoMessage()

func (*RegisterRequest) ProtoReflect

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

func (*RegisterRequest) Reset

func (x *RegisterRequest) Reset()

func (*RegisterRequest) String

func (x *RegisterRequest) String() string

func (*RegisterRequest) Validate

func (m *RegisterRequest) Validate() error

Validate checks the field values on RegisterRequest 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 (*RegisterRequest) ValidateAll

func (m *RegisterRequest) ValidateAll() error

ValidateAll checks the field values on RegisterRequest 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 RegisterRequestMultiError, or nil if none found.

type RegisterRequestMultiError

type RegisterRequestMultiError []error

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

func (RegisterRequestMultiError) AllErrors

func (m RegisterRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RegisterRequestMultiError) Error

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

type RegisterRequestValidationError

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

RegisterRequestValidationError is the validation error returned by RegisterRequest.Validate if the designated constraints aren't met.

func (RegisterRequestValidationError) Cause

Cause function returns cause value.

func (RegisterRequestValidationError) Error

Error satisfies the builtin error interface

func (RegisterRequestValidationError) ErrorName

func (e RegisterRequestValidationError) ErrorName() string

ErrorName returns error name.

func (RegisterRequestValidationError) Field

Field function returns field value.

func (RegisterRequestValidationError) Key

Key function returns key value.

func (RegisterRequestValidationError) Reason

Reason function returns reason value.

type RegisterResponse

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

func (*RegisterResponse) Descriptor deprecated

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

Deprecated: Use RegisterResponse.ProtoReflect.Descriptor instead.

func (*RegisterResponse) GetStatus

func (x *RegisterResponse) GetStatus() *Status

func (*RegisterResponse) ProtoMessage

func (*RegisterResponse) ProtoMessage()

func (*RegisterResponse) ProtoReflect

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

func (*RegisterResponse) Reset

func (x *RegisterResponse) Reset()

func (*RegisterResponse) String

func (x *RegisterResponse) String() string

func (*RegisterResponse) Validate

func (m *RegisterResponse) Validate() error

Validate checks the field values on RegisterResponse 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 (*RegisterResponse) ValidateAll

func (m *RegisterResponse) ValidateAll() error

ValidateAll checks the field values on RegisterResponse 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 RegisterResponseMultiError, or nil if none found.

type RegisterResponseMultiError

type RegisterResponseMultiError []error

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

func (RegisterResponseMultiError) AllErrors

func (m RegisterResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RegisterResponseMultiError) Error

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

type RegisterResponseValidationError

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

RegisterResponseValidationError is the validation error returned by RegisterResponse.Validate if the designated constraints aren't met.

func (RegisterResponseValidationError) Cause

Cause function returns cause value.

func (RegisterResponseValidationError) Error

Error satisfies the builtin error interface

func (RegisterResponseValidationError) ErrorName

ErrorName returns error name.

func (RegisterResponseValidationError) Field

Field function returns field value.

func (RegisterResponseValidationError) Key

Key function returns key value.

func (RegisterResponseValidationError) Reason

Reason function returns reason value.

type RenewTokenRequest

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

func (*RenewTokenRequest) Descriptor deprecated

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

Deprecated: Use RenewTokenRequest.ProtoReflect.Descriptor instead.

func (*RenewTokenRequest) ProtoMessage

func (*RenewTokenRequest) ProtoMessage()

func (*RenewTokenRequest) ProtoReflect

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

func (*RenewTokenRequest) Reset

func (x *RenewTokenRequest) Reset()

func (*RenewTokenRequest) String

func (x *RenewTokenRequest) String() string

func (*RenewTokenRequest) Validate

func (m *RenewTokenRequest) Validate() error

Validate checks the field values on RenewTokenRequest 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 (*RenewTokenRequest) ValidateAll

func (m *RenewTokenRequest) ValidateAll() error

ValidateAll checks the field values on RenewTokenRequest 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 RenewTokenRequestMultiError, or nil if none found.

type RenewTokenRequestMultiError

type RenewTokenRequestMultiError []error

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

func (RenewTokenRequestMultiError) AllErrors

func (m RenewTokenRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RenewTokenRequestMultiError) Error

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

type RenewTokenRequestValidationError

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

RenewTokenRequestValidationError is the validation error returned by RenewTokenRequest.Validate if the designated constraints aren't met.

func (RenewTokenRequestValidationError) Cause

Cause function returns cause value.

func (RenewTokenRequestValidationError) Error

Error satisfies the builtin error interface

func (RenewTokenRequestValidationError) ErrorName

ErrorName returns error name.

func (RenewTokenRequestValidationError) Field

Field function returns field value.

func (RenewTokenRequestValidationError) Key

Key function returns key value.

func (RenewTokenRequestValidationError) Reason

Reason function returns reason value.

type RenewTokenResponse

type RenewTokenResponse struct {
	Status    *Status        `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	NewToken  string         `protobuf:"bytes,2,opt,name=new_token,json=newToken,proto3" json:"new_token,omitempty"`
	TokenInfo *UserTokenInfo `protobuf:"bytes,3,opt,name=token_info,json=tokenInfo,proto3" json:"token_info,omitempty"`
	// contains filtered or unexported fields
}

func (*RenewTokenResponse) Descriptor deprecated

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

Deprecated: Use RenewTokenResponse.ProtoReflect.Descriptor instead.

func (*RenewTokenResponse) GetNewToken

func (x *RenewTokenResponse) GetNewToken() string

func (*RenewTokenResponse) GetStatus

func (x *RenewTokenResponse) GetStatus() *Status

func (*RenewTokenResponse) GetTokenInfo

func (x *RenewTokenResponse) GetTokenInfo() *UserTokenInfo

func (*RenewTokenResponse) ProtoMessage

func (*RenewTokenResponse) ProtoMessage()

func (*RenewTokenResponse) ProtoReflect

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

func (*RenewTokenResponse) Reset

func (x *RenewTokenResponse) Reset()

func (*RenewTokenResponse) String

func (x *RenewTokenResponse) String() string

func (*RenewTokenResponse) Validate

func (m *RenewTokenResponse) Validate() error

Validate checks the field values on RenewTokenResponse 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 (*RenewTokenResponse) ValidateAll

func (m *RenewTokenResponse) ValidateAll() error

ValidateAll checks the field values on RenewTokenResponse 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 RenewTokenResponseMultiError, or nil if none found.

type RenewTokenResponseMultiError

type RenewTokenResponseMultiError []error

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

func (RenewTokenResponseMultiError) AllErrors

func (m RenewTokenResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RenewTokenResponseMultiError) Error

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

type RenewTokenResponseValidationError

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

RenewTokenResponseValidationError is the validation error returned by RenewTokenResponse.Validate if the designated constraints aren't met.

func (RenewTokenResponseValidationError) Cause

Cause function returns cause value.

func (RenewTokenResponseValidationError) Error

Error satisfies the builtin error interface

func (RenewTokenResponseValidationError) ErrorName

ErrorName returns error name.

func (RenewTokenResponseValidationError) Field

Field function returns field value.

func (RenewTokenResponseValidationError) Key

Key function returns key value.

func (RenewTokenResponseValidationError) Reason

Reason function returns reason value.

type SetAdminFlagRequest

type SetAdminFlagRequest struct {
	BizId     string `protobuf:"bytes,1,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	UserId    string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	AdminFlag bool   `protobuf:"varint,3,opt,name=admin_flag,json=adminFlag,proto3" json:"admin_flag,omitempty"`
	// contains filtered or unexported fields
}

func (*SetAdminFlagRequest) Descriptor deprecated

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

Deprecated: Use SetAdminFlagRequest.ProtoReflect.Descriptor instead.

func (*SetAdminFlagRequest) GetAdminFlag

func (x *SetAdminFlagRequest) GetAdminFlag() bool

func (*SetAdminFlagRequest) GetBizId

func (x *SetAdminFlagRequest) GetBizId() string

func (*SetAdminFlagRequest) GetUserId

func (x *SetAdminFlagRequest) GetUserId() string

func (*SetAdminFlagRequest) ProtoMessage

func (*SetAdminFlagRequest) ProtoMessage()

func (*SetAdminFlagRequest) ProtoReflect

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

func (*SetAdminFlagRequest) Reset

func (x *SetAdminFlagRequest) Reset()

func (*SetAdminFlagRequest) String

func (x *SetAdminFlagRequest) String() string

func (*SetAdminFlagRequest) Validate

func (m *SetAdminFlagRequest) Validate() error

Validate checks the field values on SetAdminFlagRequest 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 (*SetAdminFlagRequest) ValidateAll

func (m *SetAdminFlagRequest) ValidateAll() error

ValidateAll checks the field values on SetAdminFlagRequest 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 SetAdminFlagRequestMultiError, or nil if none found.

type SetAdminFlagRequestMultiError

type SetAdminFlagRequestMultiError []error

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

func (SetAdminFlagRequestMultiError) AllErrors

func (m SetAdminFlagRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetAdminFlagRequestMultiError) Error

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

type SetAdminFlagRequestValidationError

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

SetAdminFlagRequestValidationError is the validation error returned by SetAdminFlagRequest.Validate if the designated constraints aren't met.

func (SetAdminFlagRequestValidationError) Cause

Cause function returns cause value.

func (SetAdminFlagRequestValidationError) Error

Error satisfies the builtin error interface

func (SetAdminFlagRequestValidationError) ErrorName

ErrorName returns error name.

func (SetAdminFlagRequestValidationError) Field

Field function returns field value.

func (SetAdminFlagRequestValidationError) Key

Key function returns key value.

func (SetAdminFlagRequestValidationError) Reason

Reason function returns reason value.

type SetAdminFlagResponse

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

func (*SetAdminFlagResponse) Descriptor deprecated

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

Deprecated: Use SetAdminFlagResponse.ProtoReflect.Descriptor instead.

func (*SetAdminFlagResponse) GetStatus

func (x *SetAdminFlagResponse) GetStatus() *Status

func (*SetAdminFlagResponse) ProtoMessage

func (*SetAdminFlagResponse) ProtoMessage()

func (*SetAdminFlagResponse) ProtoReflect

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

func (*SetAdminFlagResponse) Reset

func (x *SetAdminFlagResponse) Reset()

func (*SetAdminFlagResponse) String

func (x *SetAdminFlagResponse) String() string

func (*SetAdminFlagResponse) Validate

func (m *SetAdminFlagResponse) Validate() error

Validate checks the field values on SetAdminFlagResponse 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 (*SetAdminFlagResponse) ValidateAll

func (m *SetAdminFlagResponse) ValidateAll() error

ValidateAll checks the field values on SetAdminFlagResponse 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 SetAdminFlagResponseMultiError, or nil if none found.

type SetAdminFlagResponseMultiError

type SetAdminFlagResponseMultiError []error

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

func (SetAdminFlagResponseMultiError) AllErrors

func (m SetAdminFlagResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetAdminFlagResponseMultiError) Error

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

type SetAdminFlagResponseValidationError

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

SetAdminFlagResponseValidationError is the validation error returned by SetAdminFlagResponse.Validate if the designated constraints aren't met.

func (SetAdminFlagResponseValidationError) Cause

Cause function returns cause value.

func (SetAdminFlagResponseValidationError) Error

Error satisfies the builtin error interface

func (SetAdminFlagResponseValidationError) ErrorName

ErrorName returns error name.

func (SetAdminFlagResponseValidationError) Field

Field function returns field value.

func (SetAdminFlagResponseValidationError) Key

Key function returns key value.

func (SetAdminFlagResponseValidationError) Reason

Reason function returns reason value.

type SetUserNameRequest

type SetUserNameRequest struct {
	BizId    string `protobuf:"bytes,1,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
	// contains filtered or unexported fields
}

func (*SetUserNameRequest) Descriptor deprecated

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

Deprecated: Use SetUserNameRequest.ProtoReflect.Descriptor instead.

func (*SetUserNameRequest) GetBizId

func (x *SetUserNameRequest) GetBizId() string

func (*SetUserNameRequest) GetUserName

func (x *SetUserNameRequest) GetUserName() string

func (*SetUserNameRequest) ProtoMessage

func (*SetUserNameRequest) ProtoMessage()

func (*SetUserNameRequest) ProtoReflect

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

func (*SetUserNameRequest) Reset

func (x *SetUserNameRequest) Reset()

func (*SetUserNameRequest) String

func (x *SetUserNameRequest) String() string

func (*SetUserNameRequest) Validate

func (m *SetUserNameRequest) Validate() error

Validate checks the field values on SetUserNameRequest 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 (*SetUserNameRequest) ValidateAll

func (m *SetUserNameRequest) ValidateAll() error

ValidateAll checks the field values on SetUserNameRequest 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 SetUserNameRequestMultiError, or nil if none found.

type SetUserNameRequestMultiError

type SetUserNameRequestMultiError []error

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

func (SetUserNameRequestMultiError) AllErrors

func (m SetUserNameRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetUserNameRequestMultiError) Error

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

type SetUserNameRequestValidationError

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

SetUserNameRequestValidationError is the validation error returned by SetUserNameRequest.Validate if the designated constraints aren't met.

func (SetUserNameRequestValidationError) Cause

Cause function returns cause value.

func (SetUserNameRequestValidationError) Error

Error satisfies the builtin error interface

func (SetUserNameRequestValidationError) ErrorName

ErrorName returns error name.

func (SetUserNameRequestValidationError) Field

Field function returns field value.

func (SetUserNameRequestValidationError) Key

Key function returns key value.

func (SetUserNameRequestValidationError) Reason

Reason function returns reason value.

type SetUserNameResponse

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

func (*SetUserNameResponse) Descriptor deprecated

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

Deprecated: Use SetUserNameResponse.ProtoReflect.Descriptor instead.

func (*SetUserNameResponse) GetStatus

func (x *SetUserNameResponse) GetStatus() *Status

func (*SetUserNameResponse) ProtoMessage

func (*SetUserNameResponse) ProtoMessage()

func (*SetUserNameResponse) ProtoReflect

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

func (*SetUserNameResponse) Reset

func (x *SetUserNameResponse) Reset()

func (*SetUserNameResponse) String

func (x *SetUserNameResponse) String() string

func (*SetUserNameResponse) Validate

func (m *SetUserNameResponse) Validate() error

Validate checks the field values on SetUserNameResponse 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 (*SetUserNameResponse) ValidateAll

func (m *SetUserNameResponse) ValidateAll() error

ValidateAll checks the field values on SetUserNameResponse 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 SetUserNameResponseMultiError, or nil if none found.

type SetUserNameResponseMultiError

type SetUserNameResponseMultiError []error

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

func (SetUserNameResponseMultiError) AllErrors

func (m SetUserNameResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetUserNameResponseMultiError) Error

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

type SetUserNameResponseValidationError

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

SetUserNameResponseValidationError is the validation error returned by SetUserNameResponse.Validate if the designated constraints aren't met.

func (SetUserNameResponseValidationError) Cause

Cause function returns cause value.

func (SetUserNameResponseValidationError) Error

Error satisfies the builtin error interface

func (SetUserNameResponseValidationError) ErrorName

ErrorName returns error name.

func (SetUserNameResponseValidationError) Field

Field function returns field value.

func (SetUserNameResponseValidationError) Key

Key function returns key value.

func (SetUserNameResponseValidationError) Reason

Reason function returns reason value.

type Status

type Status struct {
	Code    Code   `protobuf:"varint,1,opt,name=code,proto3,enum=Code" json:"code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*Status) Descriptor deprecated

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

Deprecated: Use Status.ProtoReflect.Descriptor instead.

func (*Status) GetCode

func (x *Status) GetCode() Code

func (*Status) GetMessage

func (x *Status) GetMessage() string

func (*Status) ProtoMessage

func (*Status) ProtoMessage()

func (*Status) ProtoReflect

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

func (*Status) Reset

func (x *Status) Reset()

func (*Status) String

func (x *Status) String() string

func (*Status) Validate

func (m *Status) Validate() error

Validate checks the field values on Status 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 (*Status) ValidateAll

func (m *Status) ValidateAll() error

ValidateAll checks the field values on Status 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 StatusMultiError, or nil if none found.

type StatusMultiError

type StatusMultiError []error

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

func (StatusMultiError) AllErrors

func (m StatusMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (StatusMultiError) Error

func (m StatusMultiError) Error() string

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

type StatusValidationError

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

StatusValidationError is the validation error returned by Status.Validate if the designated constraints aren't met.

func (StatusValidationError) Cause

func (e StatusValidationError) Cause() error

Cause function returns cause value.

func (StatusValidationError) Error

func (e StatusValidationError) Error() string

Error satisfies the builtin error interface

func (StatusValidationError) ErrorName

func (e StatusValidationError) ErrorName() string

ErrorName returns error name.

func (StatusValidationError) Field

func (e StatusValidationError) Field() string

Field function returns field value.

func (StatusValidationError) Key

func (e StatusValidationError) Key() bool

Key function returns key value.

func (StatusValidationError) Reason

func (e StatusValidationError) Reason() string

Reason function returns reason value.

type UnimplementedAuthenticatorAdminServer

type UnimplementedAuthenticatorAdminServer struct {
}

UnimplementedAuthenticatorAdminServer must be embedded to have forward compatible implementations.

func (UnimplementedAuthenticatorAdminServer) SetAdminFlag

type UnimplementedAuthenticatorAnonymousServer

type UnimplementedAuthenticatorAnonymousServer struct {
}

UnimplementedAuthenticatorAnonymousServer must be embedded to have forward compatible implementations.

func (UnimplementedAuthenticatorAnonymousServer) SetUserName

type UnimplementedAuthenticatorGoogle2FaServer

type UnimplementedAuthenticatorGoogle2FaServer struct {
}

UnimplementedAuthenticatorGoogle2FaServer must be embedded to have forward compatible implementations.

func (UnimplementedAuthenticatorGoogle2FaServer) DoSetup

func (UnimplementedAuthenticatorGoogle2FaServer) GetSetupInfo

func (UnimplementedAuthenticatorGoogle2FaServer) Verify

type UnimplementedAuthenticatorUserPassServer

type UnimplementedAuthenticatorUserPassServer struct {
}

UnimplementedAuthenticatorUserPassServer must be embedded to have forward compatible implementations.

func (UnimplementedAuthenticatorUserPassServer) ChangePassword

func (UnimplementedAuthenticatorUserPassServer) Login

func (UnimplementedAuthenticatorUserPassServer) Register

func (UnimplementedAuthenticatorUserPassServer) VerifyPassword

type UnimplementedUserServicerServer

type UnimplementedUserServicerServer struct {
}

UnimplementedUserServicerServer must be embedded to have forward compatible implementations.

func (UnimplementedUserServicerServer) ChangeBegin

func (UnimplementedUserServicerServer) ChangeCheck

func (UnimplementedUserServicerServer) ChangeEnd

func (UnimplementedUserServicerServer) CheckToken

func (UnimplementedUserServicerServer) DeleteBegin

func (UnimplementedUserServicerServer) DeleteCheck

func (UnimplementedUserServicerServer) DeleteEnd

func (UnimplementedUserServicerServer) ListUsers

func (UnimplementedUserServicerServer) LoginBegin

func (UnimplementedUserServicerServer) LoginCheck

func (UnimplementedUserServicerServer) LoginEnd

func (UnimplementedUserServicerServer) Logout

func (UnimplementedUserServicerServer) RegisterBegin

func (UnimplementedUserServicerServer) RegisterCheck

func (UnimplementedUserServicerServer) RegisterEnd

func (UnimplementedUserServicerServer) RenewToken

type UnsafeAuthenticatorAdminServer

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

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

type UnsafeAuthenticatorAnonymousServer

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

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

type UnsafeAuthenticatorGoogle2FaServer

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

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

type UnsafeAuthenticatorUserPassServer

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

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

type UnsafeUserServicerServer

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

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

type UserInfo

type UserInfo struct {
	Id            uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	UserName      string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
	HasGoogle_2Fa bool   `protobuf:"varint,3,opt,name=has_google_2fa,json=hasGoogle2fa,proto3" json:"has_google_2fa,omitempty"`
	Admin         bool   `protobuf:"varint,4,opt,name=admin,proto3" json:"admin,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfo) Descriptor deprecated

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

Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.

func (*UserInfo) GetAdmin

func (x *UserInfo) GetAdmin() bool

func (*UserInfo) GetHasGoogle_2Fa

func (x *UserInfo) GetHasGoogle_2Fa() bool

func (*UserInfo) GetId

func (x *UserInfo) GetId() uint64

func (*UserInfo) GetUserName

func (x *UserInfo) GetUserName() string

func (*UserInfo) ProtoMessage

func (*UserInfo) ProtoMessage()

func (*UserInfo) ProtoReflect

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

func (*UserInfo) Reset

func (x *UserInfo) Reset()

func (*UserInfo) String

func (x *UserInfo) String() string

func (*UserInfo) Validate

func (m *UserInfo) Validate() error

Validate checks the field values on UserInfo 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 (*UserInfo) ValidateAll

func (m *UserInfo) ValidateAll() error

ValidateAll checks the field values on UserInfo 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 UserInfoMultiError, or nil if none found.

type UserInfoMultiError

type UserInfoMultiError []error

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

func (UserInfoMultiError) AllErrors

func (m UserInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserInfoMultiError) Error

func (m UserInfoMultiError) Error() string

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

type UserInfoValidationError

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

UserInfoValidationError is the validation error returned by UserInfo.Validate if the designated constraints aren't met.

func (UserInfoValidationError) Cause

func (e UserInfoValidationError) Cause() error

Cause function returns cause value.

func (UserInfoValidationError) Error

func (e UserInfoValidationError) Error() string

Error satisfies the builtin error interface

func (UserInfoValidationError) ErrorName

func (e UserInfoValidationError) ErrorName() string

ErrorName returns error name.

func (UserInfoValidationError) Field

func (e UserInfoValidationError) Field() string

Field function returns field value.

func (UserInfoValidationError) Key

func (e UserInfoValidationError) Key() bool

Key function returns key value.

func (UserInfoValidationError) Reason

func (e UserInfoValidationError) Reason() string

Reason function returns reason value.

type UserServicerClient

type UserServicerClient interface {
	RegisterBegin(ctx context.Context, in *RegisterBeginRequest, opts ...grpc.CallOption) (*RegisterBeginResponse, error)
	RegisterCheck(ctx context.Context, in *RegisterCheckRequest, opts ...grpc.CallOption) (*RegisterCheckResponse, error)
	RegisterEnd(ctx context.Context, in *RegisterEndRequest, opts ...grpc.CallOption) (*RegisterEndResponse, error)
	LoginBegin(ctx context.Context, in *LoginBeginRequest, opts ...grpc.CallOption) (*LoginBeginResponse, error)
	LoginCheck(ctx context.Context, in *LoginCheckRequest, opts ...grpc.CallOption) (*LoginCheckResponse, error)
	LoginEnd(ctx context.Context, in *LoginEndRequest, opts ...grpc.CallOption) (*LoginEndResponse, error)
	ChangeBegin(ctx context.Context, in *ChangeBeginRequest, opts ...grpc.CallOption) (*ChangeBeginResponse, error)
	ChangeCheck(ctx context.Context, in *ChangeCheckRequest, opts ...grpc.CallOption) (*ChangeCheckResponse, error)
	ChangeEnd(ctx context.Context, in *ChangeEndRequest, opts ...grpc.CallOption) (*ChangeEndResponse, error)
	DeleteBegin(ctx context.Context, in *DeleteBeginRequest, opts ...grpc.CallOption) (*DeleteBeginResponse, error)
	DeleteCheck(ctx context.Context, in *DeleteCheckRequest, opts ...grpc.CallOption) (*DeleteCheckResponse, error)
	DeleteEnd(ctx context.Context, in *DeleteEndRequest, opts ...grpc.CallOption) (*DeleteEndResponse, error)
	ListUsers(ctx context.Context, in *ListUsersRequest, opts ...grpc.CallOption) (*ListUsersResponse, error)
	CheckToken(ctx context.Context, in *CheckTokenRequest, opts ...grpc.CallOption) (*CheckTokenResponse, error)
	RenewToken(ctx context.Context, in *RenewTokenRequest, opts ...grpc.CallOption) (*RenewTokenResponse, error)
	Logout(ctx context.Context, in *LogoutRequest, opts ...grpc.CallOption) (*LogoutResponse, error)
}

UserServicerClient is the client API for UserServicer service.

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

type UserServicerServer

UserServicerServer is the server API for UserServicer service. All implementations must embed UnimplementedUserServicerServer for forward compatibility

type UserTokenInfo

type UserTokenInfo struct {
	Id       uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
	StartAt  int64  `protobuf:"varint,3,opt,name=start_at,json=startAt,proto3" json:"start_at,omitempty"`
	Age      int64  `protobuf:"varint,4,opt,name=age,proto3" json:"age,omitempty"`
	// contains filtered or unexported fields
}

func (*UserTokenInfo) Descriptor deprecated

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

Deprecated: Use UserTokenInfo.ProtoReflect.Descriptor instead.

func (*UserTokenInfo) GetAge

func (x *UserTokenInfo) GetAge() int64

func (*UserTokenInfo) GetId

func (x *UserTokenInfo) GetId() uint64

func (*UserTokenInfo) GetStartAt

func (x *UserTokenInfo) GetStartAt() int64

func (*UserTokenInfo) GetUserName

func (x *UserTokenInfo) GetUserName() string

func (*UserTokenInfo) ProtoMessage

func (*UserTokenInfo) ProtoMessage()

func (*UserTokenInfo) ProtoReflect

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

func (*UserTokenInfo) Reset

func (x *UserTokenInfo) Reset()

func (*UserTokenInfo) String

func (x *UserTokenInfo) String() string

func (*UserTokenInfo) Validate

func (m *UserTokenInfo) Validate() error

Validate checks the field values on UserTokenInfo 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 (*UserTokenInfo) ValidateAll

func (m *UserTokenInfo) ValidateAll() error

ValidateAll checks the field values on UserTokenInfo 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 UserTokenInfoMultiError, or nil if none found.

type UserTokenInfoMultiError

type UserTokenInfoMultiError []error

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

func (UserTokenInfoMultiError) AllErrors

func (m UserTokenInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserTokenInfoMultiError) Error

func (m UserTokenInfoMultiError) Error() string

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

type UserTokenInfoValidationError

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

UserTokenInfoValidationError is the validation error returned by UserTokenInfo.Validate if the designated constraints aren't met.

func (UserTokenInfoValidationError) Cause

Cause function returns cause value.

func (UserTokenInfoValidationError) Error

Error satisfies the builtin error interface

func (UserTokenInfoValidationError) ErrorName

func (e UserTokenInfoValidationError) ErrorName() string

ErrorName returns error name.

func (UserTokenInfoValidationError) Field

Field function returns field value.

func (UserTokenInfoValidationError) Key

Key function returns key value.

func (UserTokenInfoValidationError) Reason

Reason function returns reason value.

type VerifyPasswordRequest

type VerifyPasswordRequest struct {
	BizId    string `protobuf:"bytes,1,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyPasswordRequest) Descriptor deprecated

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

Deprecated: Use VerifyPasswordRequest.ProtoReflect.Descriptor instead.

func (*VerifyPasswordRequest) GetBizId

func (x *VerifyPasswordRequest) GetBizId() string

func (*VerifyPasswordRequest) GetPassword

func (x *VerifyPasswordRequest) GetPassword() string

func (*VerifyPasswordRequest) ProtoMessage

func (*VerifyPasswordRequest) ProtoMessage()

func (*VerifyPasswordRequest) ProtoReflect

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

func (*VerifyPasswordRequest) Reset

func (x *VerifyPasswordRequest) Reset()

func (*VerifyPasswordRequest) String

func (x *VerifyPasswordRequest) String() string

func (*VerifyPasswordRequest) Validate

func (m *VerifyPasswordRequest) Validate() error

Validate checks the field values on VerifyPasswordRequest 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 (*VerifyPasswordRequest) ValidateAll

func (m *VerifyPasswordRequest) ValidateAll() error

ValidateAll checks the field values on VerifyPasswordRequest 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 VerifyPasswordRequestMultiError, or nil if none found.

type VerifyPasswordRequestMultiError

type VerifyPasswordRequestMultiError []error

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

func (VerifyPasswordRequestMultiError) AllErrors

func (m VerifyPasswordRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (VerifyPasswordRequestMultiError) Error

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

type VerifyPasswordRequestValidationError

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

VerifyPasswordRequestValidationError is the validation error returned by VerifyPasswordRequest.Validate if the designated constraints aren't met.

func (VerifyPasswordRequestValidationError) Cause

Cause function returns cause value.

func (VerifyPasswordRequestValidationError) Error

Error satisfies the builtin error interface

func (VerifyPasswordRequestValidationError) ErrorName

ErrorName returns error name.

func (VerifyPasswordRequestValidationError) Field

Field function returns field value.

func (VerifyPasswordRequestValidationError) Key

Key function returns key value.

func (VerifyPasswordRequestValidationError) Reason

Reason function returns reason value.

type VerifyPasswordResponse

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

func (*VerifyPasswordResponse) Descriptor deprecated

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

Deprecated: Use VerifyPasswordResponse.ProtoReflect.Descriptor instead.

func (*VerifyPasswordResponse) GetStatus

func (x *VerifyPasswordResponse) GetStatus() *Status

func (*VerifyPasswordResponse) ProtoMessage

func (*VerifyPasswordResponse) ProtoMessage()

func (*VerifyPasswordResponse) ProtoReflect

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

func (*VerifyPasswordResponse) Reset

func (x *VerifyPasswordResponse) Reset()

func (*VerifyPasswordResponse) String

func (x *VerifyPasswordResponse) String() string

func (*VerifyPasswordResponse) Validate

func (m *VerifyPasswordResponse) Validate() error

Validate checks the field values on VerifyPasswordResponse 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 (*VerifyPasswordResponse) ValidateAll

func (m *VerifyPasswordResponse) ValidateAll() error

ValidateAll checks the field values on VerifyPasswordResponse 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 VerifyPasswordResponseMultiError, or nil if none found.

type VerifyPasswordResponseMultiError

type VerifyPasswordResponseMultiError []error

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

func (VerifyPasswordResponseMultiError) AllErrors

func (m VerifyPasswordResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (VerifyPasswordResponseMultiError) Error

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

type VerifyPasswordResponseValidationError

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

VerifyPasswordResponseValidationError is the validation error returned by VerifyPasswordResponse.Validate if the designated constraints aren't met.

func (VerifyPasswordResponseValidationError) Cause

Cause function returns cause value.

func (VerifyPasswordResponseValidationError) Error

Error satisfies the builtin error interface

func (VerifyPasswordResponseValidationError) ErrorName

ErrorName returns error name.

func (VerifyPasswordResponseValidationError) Field

Field function returns field value.

func (VerifyPasswordResponseValidationError) Key

Key function returns key value.

func (VerifyPasswordResponseValidationError) Reason

Reason function returns reason value.

type VerifyRequest

type VerifyRequest struct {
	BizId string `protobuf:"bytes,1,opt,name=biz_id,json=bizId,proto3" json:"biz_id,omitempty"`
	Code  string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyRequest) Descriptor deprecated

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

Deprecated: Use VerifyRequest.ProtoReflect.Descriptor instead.

func (*VerifyRequest) GetBizId

func (x *VerifyRequest) GetBizId() string

func (*VerifyRequest) GetCode

func (x *VerifyRequest) GetCode() 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 {
	Status *Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyResponse) Descriptor deprecated

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

Deprecated: Use VerifyResponse.ProtoReflect.Descriptor instead.

func (*VerifyResponse) GetStatus

func (x *VerifyResponse) GetStatus() *Status

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