customer

package
v0.0.0-...-f5ca578 Latest Latest
Warning

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

Go to latest
Published: Mar 29, 2022 License: BSD-3-Clause Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var CustomerClient_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "customer.CustomerClient",
	HandlerType: (*CustomerClientServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "CreateCustomer",
			Handler:    _CustomerClient_CreateCustomer_Handler,
		},
		{
			MethodName: "UpdateCustomer",
			Handler:    _CustomerClient_UpdateCustomer_Handler,
		},
		{
			MethodName: "GetCustomerByEmail",
			Handler:    _CustomerClient_GetCustomerByEmail_Handler,
		},
		{
			MethodName: "SetPassword",
			Handler:    _CustomerClient_SetPassword_Handler,
		},
		{
			MethodName: "Login",
			Handler:    _CustomerClient_Login_Handler,
		},
		{
			MethodName: "SendForgotPasswordEmail",
			Handler:    _CustomerClient_SendForgotPasswordEmail_Handler,
		},
		{
			MethodName: "SendConfirmEmailAddressEmail",
			Handler:    _CustomerClient_SendConfirmEmailAddressEmail_Handler,
		},
		{
			MethodName: "VerifyEmailAddress",
			Handler:    _CustomerClient_VerifyEmailAddress_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "customer.proto",
}

CustomerClient_ServiceDesc is the grpc.ServiceDesc for CustomerClient 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_customer_proto protoreflect.FileDescriptor

Functions

func RegisterCustomerClientServer

func RegisterCustomerClientServer(s grpc.ServiceRegistrar, srv CustomerClientServer)

Types

type Address

type Address struct {
	Street        string `protobuf:"bytes,1,opt,name=street,proto3" json:"street,omitempty"`
	AptSuite      string `protobuf:"bytes,2,opt,name=apt_suite,json=aptSuite,proto3" json:"apt_suite,omitempty"`
	City          string `protobuf:"bytes,3,opt,name=city,proto3" json:"city,omitempty"`
	StateProvince string `protobuf:"bytes,4,opt,name=state_province,json=stateProvince,proto3" json:"state_province,omitempty"`
	Country       string `protobuf:"bytes,5,opt,name=country,proto3" json:"country,omitempty"`
	PostalCode    string `protobuf:"bytes,6,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
	IsDefault     bool   `protobuf:"varint,7,opt,name=is_default,json=isDefault,proto3" json:"is_default,omitempty"`
	// contains filtered or unexported fields
}

func (*Address) Descriptor deprecated

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

Deprecated: Use Address.ProtoReflect.Descriptor instead.

func (*Address) GetAptSuite

func (x *Address) GetAptSuite() string

func (*Address) GetCity

func (x *Address) GetCity() string

func (*Address) GetCountry

func (x *Address) GetCountry() string

func (*Address) GetIsDefault

func (x *Address) GetIsDefault() bool

func (*Address) GetPostalCode

func (x *Address) GetPostalCode() string

func (*Address) GetStateProvince

func (x *Address) GetStateProvince() string

func (*Address) GetStreet

func (x *Address) GetStreet() string

func (*Address) ProtoMessage

func (*Address) ProtoMessage()

func (*Address) ProtoReflect

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

func (*Address) Reset

func (x *Address) Reset()

func (*Address) String

func (x *Address) String() string

type CreateCustomerRequest

type CreateCustomerRequest struct {
	StoreId  int64     `protobuf:"varint,1,opt,name=store_id,json=storeId,proto3" json:"store_id,omitempty"`
	Customer *Customer `protobuf:"bytes,2,opt,name=customer,proto3" json:"customer,omitempty"`
	// contains filtered or unexported fields
}

create customer

func (*CreateCustomerRequest) Descriptor deprecated

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

Deprecated: Use CreateCustomerRequest.ProtoReflect.Descriptor instead.

func (*CreateCustomerRequest) GetCustomer

func (x *CreateCustomerRequest) GetCustomer() *Customer

func (*CreateCustomerRequest) GetStoreId

func (x *CreateCustomerRequest) GetStoreId() int64

func (*CreateCustomerRequest) ProtoMessage

func (*CreateCustomerRequest) ProtoMessage()

func (*CreateCustomerRequest) ProtoReflect

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

func (*CreateCustomerRequest) Reset

func (x *CreateCustomerRequest) Reset()

func (*CreateCustomerRequest) String

func (x *CreateCustomerRequest) String() string

type CreateCustomerResponse

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

func (*CreateCustomerResponse) Descriptor deprecated

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

Deprecated: Use CreateCustomerResponse.ProtoReflect.Descriptor instead.

func (*CreateCustomerResponse) GetCustomer

func (x *CreateCustomerResponse) GetCustomer() *Customer

func (*CreateCustomerResponse) ProtoMessage

func (*CreateCustomerResponse) ProtoMessage()

func (*CreateCustomerResponse) ProtoReflect

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

func (*CreateCustomerResponse) Reset

func (x *CreateCustomerResponse) Reset()

func (*CreateCustomerResponse) String

func (x *CreateCustomerResponse) String() string

type Customer

type Customer struct {
	Id                int64      `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	StoreId           int64      `protobuf:"varint,2,opt,name=store_id,json=storeId,proto3" json:"store_id,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"`
	Company           string     `protobuf:"bytes,5,opt,name=company,proto3" json:"company,omitempty"`
	Phone             string     `protobuf:"bytes,6,opt,name=phone,proto3" json:"phone,omitempty"`
	Email             string     `protobuf:"bytes,7,opt,name=email,proto3" json:"email,omitempty"`
	Password          string     `protobuf:"bytes,8,opt,name=password,proto3" json:"password,omitempty"`
	IsVerified        bool       `protobuf:"varint,9,opt,name=is_verified,json=isVerified,proto3" json:"is_verified,omitempty"`
	BillingAddresses  []*Address `protobuf:"bytes,10,rep,name=billing_addresses,json=billingAddresses,proto3" json:"billing_addresses,omitempty"`
	ShippingAddresses []*Address `protobuf:"bytes,11,rep,name=shipping_addresses,json=shippingAddresses,proto3" json:"shipping_addresses,omitempty"`
	// contains filtered or unexported fields
}

func (*Customer) Descriptor deprecated

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

Deprecated: Use Customer.ProtoReflect.Descriptor instead.

func (*Customer) GetBillingAddresses

func (x *Customer) GetBillingAddresses() []*Address

func (*Customer) GetCompany

func (x *Customer) GetCompany() string

func (*Customer) GetEmail

func (x *Customer) GetEmail() string

func (*Customer) GetFirstName

func (x *Customer) GetFirstName() string

func (*Customer) GetId

func (x *Customer) GetId() int64

func (*Customer) GetIsVerified

func (x *Customer) GetIsVerified() bool

func (*Customer) GetLastName

func (x *Customer) GetLastName() string

func (*Customer) GetPassword

func (x *Customer) GetPassword() string

func (*Customer) GetPhone

func (x *Customer) GetPhone() string

func (*Customer) GetShippingAddresses

func (x *Customer) GetShippingAddresses() []*Address

func (*Customer) GetStoreId

func (x *Customer) GetStoreId() int64

func (*Customer) ProtoMessage

func (*Customer) ProtoMessage()

func (*Customer) ProtoReflect

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

func (*Customer) Reset

func (x *Customer) Reset()

func (*Customer) String

func (x *Customer) String() string

type CustomerClientClient

CustomerClientClient is the client API for CustomerClient service.

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

type CustomerClientServer

CustomerClientServer is the server API for CustomerClient service. All implementations must embed UnimplementedCustomerClientServer for forward compatibility

type GetCustomerByEmailRequest

type GetCustomerByEmailRequest struct {
	StoreId int64  `protobuf:"varint,1,opt,name=store_id,json=storeId,proto3" json:"store_id,omitempty"`
	Email   string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
	// contains filtered or unexported fields
}

get customer

func (*GetCustomerByEmailRequest) Descriptor deprecated

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

Deprecated: Use GetCustomerByEmailRequest.ProtoReflect.Descriptor instead.

func (*GetCustomerByEmailRequest) GetEmail

func (x *GetCustomerByEmailRequest) GetEmail() string

func (*GetCustomerByEmailRequest) GetStoreId

func (x *GetCustomerByEmailRequest) GetStoreId() int64

func (*GetCustomerByEmailRequest) ProtoMessage

func (*GetCustomerByEmailRequest) ProtoMessage()

func (*GetCustomerByEmailRequest) ProtoReflect

func (*GetCustomerByEmailRequest) Reset

func (x *GetCustomerByEmailRequest) Reset()

func (*GetCustomerByEmailRequest) String

func (x *GetCustomerByEmailRequest) String() string

type GetCustomerByEmailResponse

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

func (*GetCustomerByEmailResponse) Descriptor deprecated

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

Deprecated: Use GetCustomerByEmailResponse.ProtoReflect.Descriptor instead.

func (*GetCustomerByEmailResponse) GetCustomer

func (x *GetCustomerByEmailResponse) GetCustomer() *Customer

func (*GetCustomerByEmailResponse) ProtoMessage

func (*GetCustomerByEmailResponse) ProtoMessage()

func (*GetCustomerByEmailResponse) ProtoReflect

func (*GetCustomerByEmailResponse) Reset

func (x *GetCustomerByEmailResponse) Reset()

func (*GetCustomerByEmailResponse) String

func (x *GetCustomerByEmailResponse) String() string

type LoginRequest

type LoginRequest struct {
	StoreId  int64  `protobuf:"varint,1,opt,name=store_id,json=storeId,proto3" json:"store_id,omitempty"`
	Email    string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
	Password string `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

login

func (*LoginRequest) Descriptor deprecated

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

Deprecated: Use LoginRequest.ProtoReflect.Descriptor instead.

func (*LoginRequest) GetEmail

func (x *LoginRequest) GetEmail() string

func (*LoginRequest) GetPassword

func (x *LoginRequest) GetPassword() string

func (*LoginRequest) GetStoreId

func (x *LoginRequest) GetStoreId() int64

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

type LoginResponse

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

func (*LoginResponse) Descriptor deprecated

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

Deprecated: Use LoginResponse.ProtoReflect.Descriptor instead.

func (*LoginResponse) GetCustomer

func (x *LoginResponse) GetCustomer() *Customer

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

type SendConfirmEmailAddressEmailRequest

type SendConfirmEmailAddressEmailRequest struct {
	StoreId int64  `protobuf:"varint,1,opt,name=store_id,json=storeId,proto3" json:"store_id,omitempty"`
	Email   string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
	// contains filtered or unexported fields
}

confirm email

func (*SendConfirmEmailAddressEmailRequest) Descriptor deprecated

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

Deprecated: Use SendConfirmEmailAddressEmailRequest.ProtoReflect.Descriptor instead.

func (*SendConfirmEmailAddressEmailRequest) GetEmail

func (*SendConfirmEmailAddressEmailRequest) GetStoreId

func (*SendConfirmEmailAddressEmailRequest) ProtoMessage

func (*SendConfirmEmailAddressEmailRequest) ProtoMessage()

func (*SendConfirmEmailAddressEmailRequest) ProtoReflect

func (*SendConfirmEmailAddressEmailRequest) Reset

func (*SendConfirmEmailAddressEmailRequest) String

type SendConfirmEmailAddressEmailResponse

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

func (*SendConfirmEmailAddressEmailResponse) Descriptor deprecated

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

Deprecated: Use SendConfirmEmailAddressEmailResponse.ProtoReflect.Descriptor instead.

func (*SendConfirmEmailAddressEmailResponse) GetSuccess

func (*SendConfirmEmailAddressEmailResponse) ProtoMessage

func (*SendConfirmEmailAddressEmailResponse) ProtoMessage()

func (*SendConfirmEmailAddressEmailResponse) ProtoReflect

func (*SendConfirmEmailAddressEmailResponse) Reset

func (*SendConfirmEmailAddressEmailResponse) String

type SendForgotPasswordEmailRequest

type SendForgotPasswordEmailRequest struct {
	StoreId int64  `protobuf:"varint,1,opt,name=store_id,json=storeId,proto3" json:"store_id,omitempty"`
	Email   string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
	// contains filtered or unexported fields
}

forgot password

func (*SendForgotPasswordEmailRequest) Descriptor deprecated

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

Deprecated: Use SendForgotPasswordEmailRequest.ProtoReflect.Descriptor instead.

func (*SendForgotPasswordEmailRequest) GetEmail

func (x *SendForgotPasswordEmailRequest) GetEmail() string

func (*SendForgotPasswordEmailRequest) GetStoreId

func (x *SendForgotPasswordEmailRequest) GetStoreId() int64

func (*SendForgotPasswordEmailRequest) ProtoMessage

func (*SendForgotPasswordEmailRequest) ProtoMessage()

func (*SendForgotPasswordEmailRequest) ProtoReflect

func (*SendForgotPasswordEmailRequest) Reset

func (x *SendForgotPasswordEmailRequest) Reset()

func (*SendForgotPasswordEmailRequest) String

type SendForgotPasswordEmailResponse

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

func (*SendForgotPasswordEmailResponse) Descriptor deprecated

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

Deprecated: Use SendForgotPasswordEmailResponse.ProtoReflect.Descriptor instead.

func (*SendForgotPasswordEmailResponse) GetSuccess

func (x *SendForgotPasswordEmailResponse) GetSuccess() bool

func (*SendForgotPasswordEmailResponse) ProtoMessage

func (*SendForgotPasswordEmailResponse) ProtoMessage()

func (*SendForgotPasswordEmailResponse) ProtoReflect

func (*SendForgotPasswordEmailResponse) Reset

func (*SendForgotPasswordEmailResponse) String

type SetPasswordRequest

type SetPasswordRequest struct {
	StoreId  int64  `protobuf:"varint,1,opt,name=store_id,json=storeId,proto3" json:"store_id,omitempty"`
	Code     string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
	Password string `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

set password

func (*SetPasswordRequest) Descriptor deprecated

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

Deprecated: Use SetPasswordRequest.ProtoReflect.Descriptor instead.

func (*SetPasswordRequest) GetCode

func (x *SetPasswordRequest) GetCode() string

func (*SetPasswordRequest) GetPassword

func (x *SetPasswordRequest) GetPassword() string

func (*SetPasswordRequest) GetStoreId

func (x *SetPasswordRequest) GetStoreId() int64

func (*SetPasswordRequest) ProtoMessage

func (*SetPasswordRequest) ProtoMessage()

func (*SetPasswordRequest) ProtoReflect

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

func (*SetPasswordRequest) Reset

func (x *SetPasswordRequest) Reset()

func (*SetPasswordRequest) String

func (x *SetPasswordRequest) String() string

type SetPasswordResponse

type SetPasswordResponse struct {
	Customer *Customer `protobuf:"bytes,1,opt,name=customer,proto3" json:"customer,omitempty"`
	Success  bool      `protobuf:"varint,2,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*SetPasswordResponse) Descriptor deprecated

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

Deprecated: Use SetPasswordResponse.ProtoReflect.Descriptor instead.

func (*SetPasswordResponse) GetCustomer

func (x *SetPasswordResponse) GetCustomer() *Customer

func (*SetPasswordResponse) GetSuccess

func (x *SetPasswordResponse) GetSuccess() bool

func (*SetPasswordResponse) ProtoMessage

func (*SetPasswordResponse) ProtoMessage()

func (*SetPasswordResponse) ProtoReflect

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

func (*SetPasswordResponse) Reset

func (x *SetPasswordResponse) Reset()

func (*SetPasswordResponse) String

func (x *SetPasswordResponse) String() string

type UnimplementedCustomerClientServer

type UnimplementedCustomerClientServer struct {
}

UnimplementedCustomerClientServer must be embedded to have forward compatible implementations.

func (UnimplementedCustomerClientServer) CreateCustomer

func (UnimplementedCustomerClientServer) GetCustomerByEmail

func (UnimplementedCustomerClientServer) Login

func (UnimplementedCustomerClientServer) SetPassword

func (UnimplementedCustomerClientServer) UpdateCustomer

func (UnimplementedCustomerClientServer) VerifyEmailAddress

type UnsafeCustomerClientServer

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

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

type UpdateCustomerRequest

type UpdateCustomerRequest struct {
	StoreId  int64     `protobuf:"varint,1,opt,name=store_id,json=storeId,proto3" json:"store_id,omitempty"`
	Customer *Customer `protobuf:"bytes,2,opt,name=customer,proto3" json:"customer,omitempty"`
	// contains filtered or unexported fields
}

update customer

func (*UpdateCustomerRequest) Descriptor deprecated

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

Deprecated: Use UpdateCustomerRequest.ProtoReflect.Descriptor instead.

func (*UpdateCustomerRequest) GetCustomer

func (x *UpdateCustomerRequest) GetCustomer() *Customer

func (*UpdateCustomerRequest) GetStoreId

func (x *UpdateCustomerRequest) GetStoreId() int64

func (*UpdateCustomerRequest) ProtoMessage

func (*UpdateCustomerRequest) ProtoMessage()

func (*UpdateCustomerRequest) ProtoReflect

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

func (*UpdateCustomerRequest) Reset

func (x *UpdateCustomerRequest) Reset()

func (*UpdateCustomerRequest) String

func (x *UpdateCustomerRequest) String() string

type UpdateCustomerResponse

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

func (*UpdateCustomerResponse) Descriptor deprecated

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

Deprecated: Use UpdateCustomerResponse.ProtoReflect.Descriptor instead.

func (*UpdateCustomerResponse) GetCustomer

func (x *UpdateCustomerResponse) GetCustomer() *Customer

func (*UpdateCustomerResponse) ProtoMessage

func (*UpdateCustomerResponse) ProtoMessage()

func (*UpdateCustomerResponse) ProtoReflect

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

func (*UpdateCustomerResponse) Reset

func (x *UpdateCustomerResponse) Reset()

func (*UpdateCustomerResponse) String

func (x *UpdateCustomerResponse) String() string

type VerifyEmailAddressRequest

type VerifyEmailAddressRequest struct {
	StoreId int64  `protobuf:"varint,1,opt,name=store_id,json=storeId,proto3" json:"store_id,omitempty"`
	Code    string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
	// contains filtered or unexported fields
}

verify customer email address

func (*VerifyEmailAddressRequest) Descriptor deprecated

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

Deprecated: Use VerifyEmailAddressRequest.ProtoReflect.Descriptor instead.

func (*VerifyEmailAddressRequest) GetCode

func (x *VerifyEmailAddressRequest) GetCode() string

func (*VerifyEmailAddressRequest) GetStoreId

func (x *VerifyEmailAddressRequest) GetStoreId() int64

func (*VerifyEmailAddressRequest) ProtoMessage

func (*VerifyEmailAddressRequest) ProtoMessage()

func (*VerifyEmailAddressRequest) ProtoReflect

func (*VerifyEmailAddressRequest) Reset

func (x *VerifyEmailAddressRequest) Reset()

func (*VerifyEmailAddressRequest) String

func (x *VerifyEmailAddressRequest) String() string

type VerifyEmailAddressResponse

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

func (*VerifyEmailAddressResponse) Descriptor deprecated

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

Deprecated: Use VerifyEmailAddressResponse.ProtoReflect.Descriptor instead.

func (*VerifyEmailAddressResponse) GetSuccess

func (x *VerifyEmailAddressResponse) GetSuccess() bool

func (*VerifyEmailAddressResponse) ProtoMessage

func (*VerifyEmailAddressResponse) ProtoMessage()

func (*VerifyEmailAddressResponse) ProtoReflect

func (*VerifyEmailAddressResponse) Reset

func (x *VerifyEmailAddressResponse) Reset()

func (*VerifyEmailAddressResponse) String

func (x *VerifyEmailAddressResponse) String() string

Jump to

Keyboard shortcuts

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