// Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.30.0 // protoc v3.12.4 // source: silvermobi-service.proto package proto import ( timestamp "github.com/golang/protobuf/ptypes/timestamp" protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" reflect "reflect" sync "sync" ) const ( // Verify that this generated code is sufficiently up-to-date. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) // Verify that runtime/protoimpl is sufficiently up-to-date. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) ) type AccountTypeRequest_AccountType int32 const ( AccountTypeRequest_PASSENGER AccountTypeRequest_AccountType = 0 AccountTypeRequest_DRIVER AccountTypeRequest_AccountType = 1 ) // Enum value maps for AccountTypeRequest_AccountType. var ( AccountTypeRequest_AccountType_name = map[int32]string{ 0: "PASSENGER", 1: "DRIVER", } AccountTypeRequest_AccountType_value = map[string]int32{ "PASSENGER": 0, "DRIVER": 1, } ) func (x AccountTypeRequest_AccountType) Enum() *AccountTypeRequest_AccountType { p := new(AccountTypeRequest_AccountType) *p = x return p } func (x AccountTypeRequest_AccountType) String() string { return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) } func (AccountTypeRequest_AccountType) Descriptor() protoreflect.EnumDescriptor { return file_silvermobi_service_proto_enumTypes[0].Descriptor() } func (AccountTypeRequest_AccountType) Type() protoreflect.EnumType { return &file_silvermobi_service_proto_enumTypes[0] } func (x AccountTypeRequest_AccountType) Number() protoreflect.EnumNumber { return protoreflect.EnumNumber(x) } // Deprecated: Use AccountTypeRequest_AccountType.Descriptor instead. func (AccountTypeRequest_AccountType) EnumDescriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{20, 0} } type AccountTypeResponse_AccountType int32 const ( AccountTypeResponse_PASSENGER AccountTypeResponse_AccountType = 0 AccountTypeResponse_DRIVER AccountTypeResponse_AccountType = 1 ) // Enum value maps for AccountTypeResponse_AccountType. var ( AccountTypeResponse_AccountType_name = map[int32]string{ 0: "PASSENGER", 1: "DRIVER", } AccountTypeResponse_AccountType_value = map[string]int32{ "PASSENGER": 0, "DRIVER": 1, } ) func (x AccountTypeResponse_AccountType) Enum() *AccountTypeResponse_AccountType { p := new(AccountTypeResponse_AccountType) *p = x return p } func (x AccountTypeResponse_AccountType) String() string { return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) } func (AccountTypeResponse_AccountType) Descriptor() protoreflect.EnumDescriptor { return file_silvermobi_service_proto_enumTypes[1].Descriptor() } func (AccountTypeResponse_AccountType) Type() protoreflect.EnumType { return &file_silvermobi_service_proto_enumTypes[1] } func (x AccountTypeResponse_AccountType) Number() protoreflect.EnumNumber { return protoreflect.EnumNumber(x) } // Deprecated: Use AccountTypeResponse_AccountType.Descriptor instead. func (AccountTypeResponse_AccountType) EnumDescriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{21, 0} } type AuthLoginRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"` Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"` } func (x *AuthLoginRequest) Reset() { *x = AuthLoginRequest{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *AuthLoginRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*AuthLoginRequest) ProtoMessage() {} func (x *AuthLoginRequest) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use AuthLoginRequest.ProtoReflect.Descriptor instead. func (*AuthLoginRequest) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{0} } func (x *AuthLoginRequest) GetUsername() string { if x != nil { return x.Username } return "" } func (x *AuthLoginRequest) GetPassword() string { if x != nil { return x.Password } return "" } type AuthLoginResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"` } func (x *AuthLoginResponse) Reset() { *x = AuthLoginResponse{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *AuthLoginResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*AuthLoginResponse) ProtoMessage() {} func (x *AuthLoginResponse) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use AuthLoginResponse.ProtoReflect.Descriptor instead. func (*AuthLoginResponse) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{1} } func (x *AuthLoginResponse) GetToken() string { if x != nil { return x.Token } return "" } type AuthRegisterRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"` Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"` FirstName string `protobuf:"bytes,3,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"` LastName string `protobuf:"bytes,4,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"` PhoneNumber string `protobuf:"bytes,5,opt,name=phone_number,json=phoneNumber,proto3" json:"phone_number,omitempty"` } func (x *AuthRegisterRequest) Reset() { *x = AuthRegisterRequest{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *AuthRegisterRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*AuthRegisterRequest) ProtoMessage() {} func (x *AuthRegisterRequest) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use AuthRegisterRequest.ProtoReflect.Descriptor instead. func (*AuthRegisterRequest) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{2} } func (x *AuthRegisterRequest) GetEmail() string { if x != nil { return x.Email } return "" } func (x *AuthRegisterRequest) GetPassword() string { if x != nil { return x.Password } return "" } func (x *AuthRegisterRequest) GetFirstName() string { if x != nil { return x.FirstName } return "" } func (x *AuthRegisterRequest) GetLastName() string { if x != nil { return x.LastName } return "" } func (x *AuthRegisterRequest) GetPhoneNumber() string { if x != nil { return x.PhoneNumber } return "" } type AuthRegisterResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"` } func (x *AuthRegisterResponse) Reset() { *x = AuthRegisterResponse{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *AuthRegisterResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*AuthRegisterResponse) ProtoMessage() {} func (x *AuthRegisterResponse) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use AuthRegisterResponse.ProtoReflect.Descriptor instead. func (*AuthRegisterResponse) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{3} } func (x *AuthRegisterResponse) GetToken() string { if x != nil { return x.Token } return "" } type ForgetAccountRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"` Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"` } func (x *ForgetAccountRequest) Reset() { *x = ForgetAccountRequest{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ForgetAccountRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*ForgetAccountRequest) ProtoMessage() {} func (x *ForgetAccountRequest) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ForgetAccountRequest.ProtoReflect.Descriptor instead. func (*ForgetAccountRequest) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{4} } func (x *ForgetAccountRequest) GetUsername() string { if x != nil { return x.Username } return "" } func (x *ForgetAccountRequest) GetNamespace() string { if x != nil { return x.Namespace } return "" } type ForgetAccountResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Response bool `protobuf:"varint,1,opt,name=response,proto3" json:"response,omitempty"` AccessCode string `protobuf:"bytes,2,opt,name=access_code,json=accessCode,proto3" json:"access_code,omitempty"` } func (x *ForgetAccountResponse) Reset() { *x = ForgetAccountResponse{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ForgetAccountResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*ForgetAccountResponse) ProtoMessage() {} func (x *ForgetAccountResponse) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ForgetAccountResponse.ProtoReflect.Descriptor instead. func (*ForgetAccountResponse) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{5} } func (x *ForgetAccountResponse) GetResponse() bool { if x != nil { return x.Response } return false } func (x *ForgetAccountResponse) GetAccessCode() string { if x != nil { return x.AccessCode } return "" } type UpdatePasswordRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"` Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"` } func (x *UpdatePasswordRequest) Reset() { *x = UpdatePasswordRequest{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *UpdatePasswordRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*UpdatePasswordRequest) ProtoMessage() {} func (x *UpdatePasswordRequest) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use UpdatePasswordRequest.ProtoReflect.Descriptor instead. func (*UpdatePasswordRequest) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{6} } func (x *UpdatePasswordRequest) GetEmail() string { if x != nil { return x.Email } return "" } func (x *UpdatePasswordRequest) GetPassword() string { if x != nil { return x.Password } return "" } type UpdatePasswordResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Response bool `protobuf:"varint,1,opt,name=response,proto3" json:"response,omitempty"` } func (x *UpdatePasswordResponse) Reset() { *x = UpdatePasswordResponse{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *UpdatePasswordResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*UpdatePasswordResponse) ProtoMessage() {} func (x *UpdatePasswordResponse) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use UpdatePasswordResponse.ProtoReflect.Descriptor instead. func (*UpdatePasswordResponse) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{7} } func (x *UpdatePasswordResponse) GetResponse() bool { if x != nil { return x.Response } return false } type SetPhoneNumberRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields PhoneNumber string `protobuf:"bytes,1,opt,name=phone_number,json=phoneNumber,proto3" json:"phone_number,omitempty"` } func (x *SetPhoneNumberRequest) Reset() { *x = SetPhoneNumberRequest{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *SetPhoneNumberRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*SetPhoneNumberRequest) ProtoMessage() {} func (x *SetPhoneNumberRequest) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use SetPhoneNumberRequest.ProtoReflect.Descriptor instead. func (*SetPhoneNumberRequest) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{8} } func (x *SetPhoneNumberRequest) GetPhoneNumber() string { if x != nil { return x.PhoneNumber } return "" } type SetPhoneNumberResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Ok bool `protobuf:"varint,1,opt,name=ok,proto3" json:"ok,omitempty"` } func (x *SetPhoneNumberResponse) Reset() { *x = SetPhoneNumberResponse{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *SetPhoneNumberResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*SetPhoneNumberResponse) ProtoMessage() {} func (x *SetPhoneNumberResponse) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use SetPhoneNumberResponse.ProtoReflect.Descriptor instead. func (*SetPhoneNumberResponse) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{9} } func (x *SetPhoneNumberResponse) GetOk() bool { if x != nil { return x.Ok } return false } type VerifyPhoneNumberRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields PhoneNumber string `protobuf:"bytes,1,opt,name=phone_number,json=phoneNumber,proto3" json:"phone_number,omitempty"` VerificationCode string `protobuf:"bytes,2,opt,name=verification_code,json=verificationCode,proto3" json:"verification_code,omitempty"` } func (x *VerifyPhoneNumberRequest) Reset() { *x = VerifyPhoneNumberRequest{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *VerifyPhoneNumberRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*VerifyPhoneNumberRequest) ProtoMessage() {} func (x *VerifyPhoneNumberRequest) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use VerifyPhoneNumberRequest.ProtoReflect.Descriptor instead. func (*VerifyPhoneNumberRequest) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{10} } func (x *VerifyPhoneNumberRequest) GetPhoneNumber() string { if x != nil { return x.PhoneNumber } return "" } func (x *VerifyPhoneNumberRequest) GetVerificationCode() string { if x != nil { return x.VerificationCode } return "" } type VerifyPhoneNumberResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Ok bool `protobuf:"varint,1,opt,name=ok,proto3" json:"ok,omitempty"` } func (x *VerifyPhoneNumberResponse) Reset() { *x = VerifyPhoneNumberResponse{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *VerifyPhoneNumberResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*VerifyPhoneNumberResponse) ProtoMessage() {} func (x *VerifyPhoneNumberResponse) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use VerifyPhoneNumberResponse.ProtoReflect.Descriptor instead. func (*VerifyPhoneNumberResponse) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{11} } func (x *VerifyPhoneNumberResponse) GetOk() bool { if x != nil { return x.Ok } return false } type BirthDateRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Birthdate *timestamp.Timestamp `protobuf:"bytes,1,opt,name=birthdate,proto3" json:"birthdate,omitempty"` } func (x *BirthDateRequest) Reset() { *x = BirthDateRequest{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *BirthDateRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*BirthDateRequest) ProtoMessage() {} func (x *BirthDateRequest) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use BirthDateRequest.ProtoReflect.Descriptor instead. func (*BirthDateRequest) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{12} } func (x *BirthDateRequest) GetBirthdate() *timestamp.Timestamp { if x != nil { return x.Birthdate } return nil } type BirthDateResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Ok bool `protobuf:"varint,1,opt,name=ok,proto3" json:"ok,omitempty"` } func (x *BirthDateResponse) Reset() { *x = BirthDateResponse{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *BirthDateResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*BirthDateResponse) ProtoMessage() {} func (x *BirthDateResponse) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[13] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use BirthDateResponse.ProtoReflect.Descriptor instead. func (*BirthDateResponse) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{13} } func (x *BirthDateResponse) GetOk() bool { if x != nil { return x.Ok } return false } type KeyValueRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` } func (x *KeyValueRequest) Reset() { *x = KeyValueRequest{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *KeyValueRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*KeyValueRequest) ProtoMessage() {} func (x *KeyValueRequest) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[14] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use KeyValueRequest.ProtoReflect.Descriptor instead. func (*KeyValueRequest) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{14} } func (x *KeyValueRequest) GetKey() string { if x != nil { return x.Key } return "" } func (x *KeyValueRequest) GetValue() string { if x != nil { return x.Value } return "" } type KeyValueResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Ok bool `protobuf:"varint,1,opt,name=ok,proto3" json:"ok,omitempty"` } func (x *KeyValueResponse) Reset() { *x = KeyValueResponse{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *KeyValueResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*KeyValueResponse) ProtoMessage() {} func (x *KeyValueResponse) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[15] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use KeyValueResponse.ProtoReflect.Descriptor instead. func (*KeyValueResponse) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{15} } func (x *KeyValueResponse) GetOk() bool { if x != nil { return x.Ok } return false } type KeyRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` } func (x *KeyRequest) Reset() { *x = KeyRequest{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *KeyRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*KeyRequest) ProtoMessage() {} func (x *KeyRequest) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[16] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use KeyRequest.ProtoReflect.Descriptor instead. func (*KeyRequest) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{16} } func (x *KeyRequest) GetKey() string { if x != nil { return x.Key } return "" } type ValueResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"` } func (x *ValueResponse) Reset() { *x = ValueResponse{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ValueResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*ValueResponse) ProtoMessage() {} func (x *ValueResponse) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[17] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ValueResponse.ProtoReflect.Descriptor instead. func (*ValueResponse) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{17} } func (x *ValueResponse) GetValue() string { if x != nil { return x.Value } return "" } type ValidationRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields } func (x *ValidationRequest) Reset() { *x = ValidationRequest{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ValidationRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*ValidationRequest) ProtoMessage() {} func (x *ValidationRequest) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[18] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ValidationRequest.ProtoReflect.Descriptor instead. func (*ValidationRequest) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{18} } type ValidationResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Phone bool `protobuf:"varint,1,opt,name=phone,proto3" json:"phone,omitempty"` Birthdate bool `protobuf:"varint,2,opt,name=birthdate,proto3" json:"birthdate,omitempty"` Type bool `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"` } func (x *ValidationResponse) Reset() { *x = ValidationResponse{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ValidationResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*ValidationResponse) ProtoMessage() {} func (x *ValidationResponse) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[19] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ValidationResponse.ProtoReflect.Descriptor instead. func (*ValidationResponse) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{19} } func (x *ValidationResponse) GetPhone() bool { if x != nil { return x.Phone } return false } func (x *ValidationResponse) GetBirthdate() bool { if x != nil { return x.Birthdate } return false } func (x *ValidationResponse) GetType() bool { if x != nil { return x.Type } return false } type AccountTypeRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Request *bool `protobuf:"varint,2,opt,name=request,proto3,oneof" json:"request,omitempty"` Type *AccountTypeRequest_AccountType `protobuf:"varint,1,opt,name=type,proto3,enum=AccountTypeRequest_AccountType,oneof" json:"type,omitempty"` } func (x *AccountTypeRequest) Reset() { *x = AccountTypeRequest{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *AccountTypeRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*AccountTypeRequest) ProtoMessage() {} func (x *AccountTypeRequest) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[20] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use AccountTypeRequest.ProtoReflect.Descriptor instead. func (*AccountTypeRequest) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{20} } func (x *AccountTypeRequest) GetRequest() bool { if x != nil && x.Request != nil { return *x.Request } return false } func (x *AccountTypeRequest) GetType() AccountTypeRequest_AccountType { if x != nil && x.Type != nil { return *x.Type } return AccountTypeRequest_PASSENGER } type AccountTypeResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Ok bool `protobuf:"varint,1,opt,name=ok,proto3" json:"ok,omitempty"` Type *AccountTypeResponse_AccountType `protobuf:"varint,2,opt,name=type,proto3,enum=AccountTypeResponse_AccountType,oneof" json:"type,omitempty"` } func (x *AccountTypeResponse) Reset() { *x = AccountTypeResponse{} if protoimpl.UnsafeEnabled { mi := &file_silvermobi_service_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *AccountTypeResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*AccountTypeResponse) ProtoMessage() {} func (x *AccountTypeResponse) ProtoReflect() protoreflect.Message { mi := &file_silvermobi_service_proto_msgTypes[21] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use AccountTypeResponse.ProtoReflect.Descriptor instead. func (*AccountTypeResponse) Descriptor() ([]byte, []int) { return file_silvermobi_service_proto_rawDescGZIP(), []int{21} } func (x *AccountTypeResponse) GetOk() bool { if x != nil { return x.Ok } return false } func (x *AccountTypeResponse) GetType() AccountTypeResponse_AccountType { if x != nil && x.Type != nil { return *x.Type } return AccountTypeResponse_PASSENGER } var File_silvermobi_service_proto protoreflect.FileDescriptor var file_silvermobi_service_proto_rawDesc = []byte{ 0x0a, 0x18, 0x73, 0x69, 0x6c, 0x76, 0x65, 0x72, 0x6d, 0x6f, 0x62, 0x69, 0x2d, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x4a, 0x0a, 0x10, 0x41, 0x75, 0x74, 0x68, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x29, 0x0a, 0x11, 0x41, 0x75, 0x74, 0x68, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xa6, 0x01, 0x0a, 0x13, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x2c, 0x0a, 0x14, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x50, 0x0a, 0x14, 0x46, 0x6f, 0x72, 0x67, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0x54, 0x0a, 0x15, 0x46, 0x6f, 0x72, 0x67, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x49, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x34, 0x0a, 0x16, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3a, 0x0a, 0x15, 0x53, 0x65, 0x74, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x28, 0x0a, 0x16, 0x53, 0x65, 0x74, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6b, 0x22, 0x6a, 0x0a, 0x18, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x2b, 0x0a, 0x11, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x2b, 0x0a, 0x19, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6b, 0x22, 0x4c, 0x0a, 0x10, 0x42, 0x69, 0x72, 0x74, 0x68, 0x44, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x09, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x74, 0x65, 0x22, 0x23, 0x0a, 0x11, 0x42, 0x69, 0x72, 0x74, 0x68, 0x44, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6b, 0x22, 0x39, 0x0a, 0x0f, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x22, 0x0a, 0x10, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6b, 0x22, 0x1e, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x25, 0x0a, 0x0d, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x13, 0x0a, 0x11, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x5c, 0x0a, 0x12, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x74, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0xac, 0x01, 0x0a, 0x12, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x07, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x07, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x88, 0x01, 0x01, 0x12, 0x38, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x48, 0x01, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x22, 0x28, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0d, 0x0a, 0x09, 0x50, 0x41, 0x53, 0x53, 0x45, 0x4e, 0x47, 0x45, 0x52, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x44, 0x52, 0x49, 0x56, 0x45, 0x52, 0x10, 0x01, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x22, 0x93, 0x01, 0x0a, 0x13, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6b, 0x12, 0x39, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x20, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x48, 0x00, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x22, 0x28, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0d, 0x0a, 0x09, 0x50, 0x41, 0x53, 0x53, 0x45, 0x4e, 0x47, 0x45, 0x52, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x44, 0x52, 0x49, 0x56, 0x45, 0x52, 0x10, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x32, 0xf6, 0x05, 0x0a, 0x0e, 0x53, 0x69, 0x6c, 0x76, 0x65, 0x72, 0x6d, 0x6f, 0x62, 0x69, 0x47, 0x52, 0x50, 0x43, 0x12, 0x34, 0x0a, 0x09, 0x41, 0x75, 0x74, 0x68, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x11, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x12, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x0c, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x14, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x0d, 0x46, 0x6f, 0x72, 0x67, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x15, 0x2e, 0x46, 0x6f, 0x72, 0x67, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x46, 0x6f, 0x72, 0x67, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x16, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x0e, 0x53, 0x65, 0x74, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x16, 0x2e, 0x53, 0x65, 0x74, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x53, 0x65, 0x74, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x11, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x19, 0x2e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x37, 0x0a, 0x0c, 0x53, 0x65, 0x74, 0x42, 0x69, 0x72, 0x74, 0x68, 0x44, 0x61, 0x74, 0x65, 0x12, 0x11, 0x2e, 0x42, 0x69, 0x72, 0x74, 0x68, 0x44, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x12, 0x2e, 0x42, 0x69, 0x72, 0x74, 0x68, 0x44, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x0e, 0x53, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x13, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x13, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x34, 0x0a, 0x0b, 0x53, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x10, 0x2e, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x2c, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x0b, 0x2e, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x3a, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x34, 0x5a, 0x32, 0x67, 0x69, 0x74, 0x2e, 0x63, 0x6f, 0x6f, 0x70, 0x67, 0x6f, 0x2e, 0x69, 0x6f, 0x2f, 0x63, 0x6f, 0x6f, 0x70, 0x67, 0x6f, 0x2d, 0x61, 0x70, 0x70, 0x73, 0x2f, 0x73, 0x69, 0x6c, 0x76, 0x65, 0x72, 0x6d, 0x6f, 0x62, 0x69, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( file_silvermobi_service_proto_rawDescOnce sync.Once file_silvermobi_service_proto_rawDescData = file_silvermobi_service_proto_rawDesc ) func file_silvermobi_service_proto_rawDescGZIP() []byte { file_silvermobi_service_proto_rawDescOnce.Do(func() { file_silvermobi_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_silvermobi_service_proto_rawDescData) }) return file_silvermobi_service_proto_rawDescData } var file_silvermobi_service_proto_enumTypes = make([]protoimpl.EnumInfo, 2) var file_silvermobi_service_proto_msgTypes = make([]protoimpl.MessageInfo, 22) var file_silvermobi_service_proto_goTypes = []interface{}{ (AccountTypeRequest_AccountType)(0), // 0: AccountTypeRequest.AccountType (AccountTypeResponse_AccountType)(0), // 1: AccountTypeResponse.AccountType (*AuthLoginRequest)(nil), // 2: AuthLoginRequest (*AuthLoginResponse)(nil), // 3: AuthLoginResponse (*AuthRegisterRequest)(nil), // 4: AuthRegisterRequest (*AuthRegisterResponse)(nil), // 5: AuthRegisterResponse (*ForgetAccountRequest)(nil), // 6: ForgetAccountRequest (*ForgetAccountResponse)(nil), // 7: ForgetAccountResponse (*UpdatePasswordRequest)(nil), // 8: UpdatePasswordRequest (*UpdatePasswordResponse)(nil), // 9: UpdatePasswordResponse (*SetPhoneNumberRequest)(nil), // 10: SetPhoneNumberRequest (*SetPhoneNumberResponse)(nil), // 11: SetPhoneNumberResponse (*VerifyPhoneNumberRequest)(nil), // 12: VerifyPhoneNumberRequest (*VerifyPhoneNumberResponse)(nil), // 13: VerifyPhoneNumberResponse (*BirthDateRequest)(nil), // 14: BirthDateRequest (*BirthDateResponse)(nil), // 15: BirthDateResponse (*KeyValueRequest)(nil), // 16: KeyValueRequest (*KeyValueResponse)(nil), // 17: KeyValueResponse (*KeyRequest)(nil), // 18: KeyRequest (*ValueResponse)(nil), // 19: ValueResponse (*ValidationRequest)(nil), // 20: ValidationRequest (*ValidationResponse)(nil), // 21: ValidationResponse (*AccountTypeRequest)(nil), // 22: AccountTypeRequest (*AccountTypeResponse)(nil), // 23: AccountTypeResponse (*timestamp.Timestamp)(nil), // 24: google.protobuf.Timestamp } var file_silvermobi_service_proto_depIdxs = []int32{ 24, // 0: BirthDateRequest.birthdate:type_name -> google.protobuf.Timestamp 0, // 1: AccountTypeRequest.type:type_name -> AccountTypeRequest.AccountType 1, // 2: AccountTypeResponse.type:type_name -> AccountTypeResponse.AccountType 2, // 3: SilvermobiGRPC.AuthLogin:input_type -> AuthLoginRequest 4, // 4: SilvermobiGRPC.AuthRegister:input_type -> AuthRegisterRequest 6, // 5: SilvermobiGRPC.ForgetAccount:input_type -> ForgetAccountRequest 8, // 6: SilvermobiGRPC.UpdatePassword:input_type -> UpdatePasswordRequest 10, // 7: SilvermobiGRPC.SetPhoneNumber:input_type -> SetPhoneNumberRequest 12, // 8: SilvermobiGRPC.VerifyPhoneNumber:input_type -> VerifyPhoneNumberRequest 14, // 9: SilvermobiGRPC.SetBirthDate:input_type -> BirthDateRequest 22, // 10: SilvermobiGRPC.SetAccountType:input_type -> AccountTypeRequest 22, // 11: SilvermobiGRPC.GetAccountType:input_type -> AccountTypeRequest 16, // 12: SilvermobiGRPC.SetKeyValue:input_type -> KeyValueRequest 18, // 13: SilvermobiGRPC.GetKeyValue:input_type -> KeyRequest 20, // 14: SilvermobiGRPC.GetValidation:input_type -> ValidationRequest 3, // 15: SilvermobiGRPC.AuthLogin:output_type -> AuthLoginResponse 5, // 16: SilvermobiGRPC.AuthRegister:output_type -> AuthRegisterResponse 7, // 17: SilvermobiGRPC.ForgetAccount:output_type -> ForgetAccountResponse 9, // 18: SilvermobiGRPC.UpdatePassword:output_type -> UpdatePasswordResponse 11, // 19: SilvermobiGRPC.SetPhoneNumber:output_type -> SetPhoneNumberResponse 13, // 20: SilvermobiGRPC.VerifyPhoneNumber:output_type -> VerifyPhoneNumberResponse 15, // 21: SilvermobiGRPC.SetBirthDate:output_type -> BirthDateResponse 23, // 22: SilvermobiGRPC.SetAccountType:output_type -> AccountTypeResponse 23, // 23: SilvermobiGRPC.GetAccountType:output_type -> AccountTypeResponse 17, // 24: SilvermobiGRPC.SetKeyValue:output_type -> KeyValueResponse 19, // 25: SilvermobiGRPC.GetKeyValue:output_type -> ValueResponse 21, // 26: SilvermobiGRPC.GetValidation:output_type -> ValidationResponse 15, // [15:27] is the sub-list for method output_type 3, // [3:15] is the sub-list for method input_type 3, // [3:3] is the sub-list for extension type_name 3, // [3:3] is the sub-list for extension extendee 0, // [0:3] is the sub-list for field type_name } func init() { file_silvermobi_service_proto_init() } func file_silvermobi_service_proto_init() { if File_silvermobi_service_proto != nil { return } if !protoimpl.UnsafeEnabled { file_silvermobi_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AuthLoginRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AuthLoginResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AuthRegisterRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AuthRegisterResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ForgetAccountRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ForgetAccountResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UpdatePasswordRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UpdatePasswordResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SetPhoneNumberRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SetPhoneNumberResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*VerifyPhoneNumberRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*VerifyPhoneNumberResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BirthDateRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BirthDateResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeyValueRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeyValueResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*KeyRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ValueResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ValidationRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ValidationResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AccountTypeRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_silvermobi_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AccountTypeResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } } file_silvermobi_service_proto_msgTypes[20].OneofWrappers = []interface{}{} file_silvermobi_service_proto_msgTypes[21].OneofWrappers = []interface{}{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_silvermobi_service_proto_rawDesc, NumEnums: 2, NumMessages: 22, NumExtensions: 0, NumServices: 1, }, GoTypes: file_silvermobi_service_proto_goTypes, DependencyIndexes: file_silvermobi_service_proto_depIdxs, EnumInfos: file_silvermobi_service_proto_enumTypes, MessageInfos: file_silvermobi_service_proto_msgTypes, }.Build() File_silvermobi_service_proto = out.File file_silvermobi_service_proto_rawDesc = nil file_silvermobi_service_proto_goTypes = nil file_silvermobi_service_proto_depIdxs = nil }