pb

package
v0.1.1 Latest Latest
Warning

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

Go to latest
Published: Feb 9, 2022 License: MIT Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_app_message_proto protoreflect.FileDescriptor
View Source
var File_apply_message_proto protoreflect.FileDescriptor
View Source
var File_check_message_proto protoreflect.FileDescriptor
View Source
var File_cmd_message_proto protoreflect.FileDescriptor
View Source
var File_extract_message_proto protoreflect.FileDescriptor
View Source
var File_file_message_proto protoreflect.FileDescriptor
View Source
var File_patch_service_proto protoreflect.FileDescriptor
View Source
var File_ping_message_proto protoreflect.FileDescriptor
View Source
var File_upload_message_proto protoreflect.FileDescriptor
View Source
var File_verify_message_proto protoreflect.FileDescriptor
View Source
var Patch_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "Patch",
	HandlerType: (*PatchServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Ping",
			Handler:    _Patch_Ping_Handler,
		},
		{
			MethodName: "Checks",
			Handler:    _Patch_Checks_Handler,
		},
		{
			MethodName: "Extract",
			Handler:    _Patch_Extract_Handler,
		},
		{
			MethodName: "Execute",
			Handler:    _Patch_Execute_Handler,
		},
		{
			MethodName: "ListUploaded",
			Handler:    _Patch_ListUploaded_Handler,
		},
	},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "Upload",
			Handler:       _Patch_Upload_Handler,
			ClientStreams: true,
		},
		{
			StreamName:    "Apply",
			Handler:       _Patch_Apply_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "Verify",
			Handler:       _Patch_Verify_Handler,
			ServerStreams: true,
		},
	},
	Metadata: "patch_service.proto",
}

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

Functions

func RegisterPatchServer

func RegisterPatchServer(s grpc.ServiceRegistrar, srv PatchServer)

Types

type APP

type APP struct {
	Name    string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Source  string `protobuf:"bytes,2,opt,name=source,proto3" json:"source,omitempty"`
	Service string `protobuf:"bytes,3,opt,name=service,proto3" json:"service,omitempty"`
	// contains filtered or unexported fields
}

func (*APP) Descriptor deprecated

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

Deprecated: Use APP.ProtoReflect.Descriptor instead.

func (*APP) GetName

func (x *APP) GetName() string

func (*APP) GetService

func (x *APP) GetService() string

func (*APP) GetSource

func (x *APP) GetSource() string

func (*APP) ProtoMessage

func (*APP) ProtoMessage()

func (*APP) ProtoReflect

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

func (*APP) Reset

func (x *APP) Reset()

func (*APP) String

func (x *APP) String() string

type ApplyInfo

type ApplyInfo struct {
	App      *APP    `protobuf:"bytes,1,opt,name=app,proto3" json:"app,omitempty"`
	Verified bool    `protobuf:"varint,2,opt,name=verified,proto3" json:"verified,omitempty"`
	Data     []*FILE `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*ApplyInfo) Descriptor deprecated

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

Deprecated: Use ApplyInfo.ProtoReflect.Descriptor instead.

func (*ApplyInfo) GetApp

func (x *ApplyInfo) GetApp() *APP

func (*ApplyInfo) GetData

func (x *ApplyInfo) GetData() []*FILE

func (*ApplyInfo) GetVerified

func (x *ApplyInfo) GetVerified() bool

func (*ApplyInfo) ProtoMessage

func (*ApplyInfo) ProtoMessage()

func (*ApplyInfo) ProtoReflect

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

func (*ApplyInfo) Reset

func (x *ApplyInfo) Reset()

func (*ApplyInfo) String

func (x *ApplyInfo) String() string

type ApplyReq

type ApplyReq struct {
	Applications []*APP `protobuf:"bytes,1,rep,name=applications,proto3" json:"applications,omitempty"`
	// contains filtered or unexported fields
}

func (*ApplyReq) Descriptor deprecated

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

Deprecated: Use ApplyReq.ProtoReflect.Descriptor instead.

func (*ApplyReq) GetApplications

func (x *ApplyReq) GetApplications() []*APP

func (*ApplyReq) ProtoMessage

func (*ApplyReq) ProtoMessage()

func (*ApplyReq) ProtoReflect

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

func (*ApplyReq) Reset

func (x *ApplyReq) Reset()

func (*ApplyReq) String

func (x *ApplyReq) String() string

type ApplyResp

type ApplyResp struct {
	Applications []*ApplyInfo `protobuf:"bytes,1,rep,name=applications,proto3" json:"applications,omitempty"`
	// contains filtered or unexported fields
}

func (*ApplyResp) Descriptor deprecated

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

Deprecated: Use ApplyResp.ProtoReflect.Descriptor instead.

func (*ApplyResp) GetApplications

func (x *ApplyResp) GetApplications() []*ApplyInfo

func (*ApplyResp) ProtoMessage

func (*ApplyResp) ProtoMessage()

func (*ApplyResp) ProtoReflect

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

func (*ApplyResp) Reset

func (x *ApplyResp) Reset()

func (*ApplyResp) String

func (x *ApplyResp) String() string

type CmdReq

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

func (*CmdReq) Descriptor deprecated

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

Deprecated: Use CmdReq.ProtoReflect.Descriptor instead.

func (*CmdReq) GetCmd

func (x *CmdReq) GetCmd() string

func (*CmdReq) ProtoMessage

func (*CmdReq) ProtoMessage()

func (*CmdReq) ProtoReflect

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

func (*CmdReq) Reset

func (x *CmdReq) Reset()

func (*CmdReq) String

func (x *CmdReq) String() string

type CmdResp

type CmdResp struct {
	Out []byte `protobuf:"bytes,1,opt,name=out,proto3" json:"out,omitempty"`
	Err string `protobuf:"bytes,2,opt,name=err,proto3" json:"err,omitempty"`
	// contains filtered or unexported fields
}

func (*CmdResp) Descriptor deprecated

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

Deprecated: Use CmdResp.ProtoReflect.Descriptor instead.

func (*CmdResp) GetErr

func (x *CmdResp) GetErr() string

func (*CmdResp) GetOut

func (x *CmdResp) GetOut() []byte

func (*CmdResp) ProtoMessage

func (*CmdResp) ProtoMessage()

func (*CmdResp) ProtoReflect

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

func (*CmdResp) Reset

func (x *CmdResp) Reset()

func (*CmdResp) String

func (x *CmdResp) String() string

type ExtractReq

type ExtractReq struct {
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*ExtractReq) Descriptor deprecated

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

Deprecated: Use ExtractReq.ProtoReflect.Descriptor instead.

func (*ExtractReq) GetName

func (x *ExtractReq) GetName() string

func (*ExtractReq) GetPath

func (x *ExtractReq) GetPath() string

func (*ExtractReq) ProtoMessage

func (*ExtractReq) ProtoMessage()

func (*ExtractReq) ProtoReflect

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

func (*ExtractReq) Reset

func (x *ExtractReq) Reset()

func (*ExtractReq) String

func (x *ExtractReq) String() string

type ExtractResp

type ExtractResp struct {
	Path     string  `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	Verified bool    `protobuf:"varint,2,opt,name=verified,proto3" json:"verified,omitempty"`
	Data     []*FILE `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*ExtractResp) Descriptor deprecated

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

Deprecated: Use ExtractResp.ProtoReflect.Descriptor instead.

func (*ExtractResp) GetData

func (x *ExtractResp) GetData() []*FILE

func (*ExtractResp) GetPath

func (x *ExtractResp) GetPath() string

func (*ExtractResp) GetVerified

func (x *ExtractResp) GetVerified() bool

func (*ExtractResp) ProtoMessage

func (*ExtractResp) ProtoMessage()

func (*ExtractResp) ProtoReflect

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

func (*ExtractResp) Reset

func (x *ExtractResp) Reset()

func (*ExtractResp) String

func (x *ExtractResp) String() string

type FILE

type FILE struct {
	Name  string                 `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Size  int64                  `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
	Isdir bool                   `protobuf:"varint,3,opt,name=isdir,proto3" json:"isdir,omitempty"`
	Path  string                 `protobuf:"bytes,4,opt,name=path,proto3" json:"path,omitempty"`
	Time  *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=time,proto3" json:"time,omitempty"`
	// contains filtered or unexported fields
}

func (*FILE) Descriptor deprecated

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

Deprecated: Use FILE.ProtoReflect.Descriptor instead.

func (*FILE) GetIsdir

func (x *FILE) GetIsdir() bool

func (*FILE) GetName

func (x *FILE) GetName() string

func (*FILE) GetPath

func (x *FILE) GetPath() string

func (*FILE) GetSize

func (x *FILE) GetSize() int64

func (*FILE) GetTime

func (x *FILE) GetTime() *timestamppb.Timestamp

func (*FILE) ProtoMessage

func (*FILE) ProtoMessage()

func (*FILE) ProtoReflect

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

func (*FILE) Reset

func (x *FILE) Reset()

func (*FILE) String

func (x *FILE) String() string

type FileInfo

type FileInfo struct {
	FileName string `protobuf:"bytes,1,opt,name=file_name,json=fileName,proto3" json:"file_name,omitempty"`
	FileExt  string `protobuf:"bytes,2,opt,name=file_ext,json=fileExt,proto3" json:"file_ext,omitempty"`
	FileInfo *FILE  `protobuf:"bytes,3,opt,name=file_info,json=fileInfo,proto3" json:"file_info,omitempty"`
	// contains filtered or unexported fields
}

func (*FileInfo) Descriptor deprecated

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

Deprecated: Use FileInfo.ProtoReflect.Descriptor instead.

func (*FileInfo) GetFileExt

func (x *FileInfo) GetFileExt() string

func (*FileInfo) GetFileInfo

func (x *FileInfo) GetFileInfo() *FILE

func (*FileInfo) GetFileName

func (x *FileInfo) GetFileName() string

func (*FileInfo) ProtoMessage

func (*FileInfo) ProtoMessage()

func (*FileInfo) ProtoReflect

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

func (*FileInfo) Reset

func (x *FileInfo) Reset()

func (*FileInfo) String

func (x *FileInfo) String() string

type ListUploadedReq

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

func (*ListUploadedReq) Descriptor deprecated

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

Deprecated: Use ListUploadedReq.ProtoReflect.Descriptor instead.

func (*ListUploadedReq) ProtoMessage

func (*ListUploadedReq) ProtoMessage()

func (*ListUploadedReq) ProtoReflect

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

func (*ListUploadedReq) Reset

func (x *ListUploadedReq) Reset()

func (*ListUploadedReq) String

func (x *ListUploadedReq) String() string

type ListUploadedResp

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

func (*ListUploadedResp) Descriptor deprecated

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

Deprecated: Use ListUploadedResp.ProtoReflect.Descriptor instead.

func (*ListUploadedResp) GetItems

func (x *ListUploadedResp) GetItems() []string

func (*ListUploadedResp) ProtoMessage

func (*ListUploadedResp) ProtoMessage()

func (*ListUploadedResp) ProtoReflect

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

func (*ListUploadedResp) Reset

func (x *ListUploadedResp) Reset()

func (*ListUploadedResp) String

func (x *ListUploadedResp) String() string

type PatchClient

type PatchClient interface {
	// unary rpc - ping status check
	Ping(ctx context.Context, in *PingReq, opts ...grpc.CallOption) (*PingResp, error)
	// unary rpc - read/write rights check
	Checks(ctx context.Context, in *RightsReq, opts ...grpc.CallOption) (*RightsResp, error)
	// client streaming rpc - file upload in chunks
	Upload(ctx context.Context, opts ...grpc.CallOption) (Patch_UploadClient, error)
	// unary rpc - extract file
	Extract(ctx context.Context, in *ExtractReq, opts ...grpc.CallOption) (*ExtractResp, error)
	// server streaming rpc - applying patch
	Apply(ctx context.Context, in *ApplyReq, opts ...grpc.CallOption) (Patch_ApplyClient, error)
	// server streaming rpc - verify patch
	Verify(ctx context.Context, in *VerifyReq, opts ...grpc.CallOption) (Patch_VerifyClient, error)
	// unary rpc - cmd
	Execute(ctx context.Context, in *CmdReq, opts ...grpc.CallOption) (*CmdResp, error)
	// unary rpc - cmd
	ListUploaded(ctx context.Context, in *ListUploadedReq, opts ...grpc.CallOption) (*ListUploadedResp, error)
}

PatchClient is the client API for Patch service.

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

func NewPatchClient

func NewPatchClient(cc grpc.ClientConnInterface) PatchClient

type PatchServer

type PatchServer interface {
	// unary rpc - ping status check
	Ping(context.Context, *PingReq) (*PingResp, error)
	// unary rpc - read/write rights check
	Checks(context.Context, *RightsReq) (*RightsResp, error)
	// client streaming rpc - file upload in chunks
	Upload(Patch_UploadServer) error
	// unary rpc - extract file
	Extract(context.Context, *ExtractReq) (*ExtractResp, error)
	// server streaming rpc - applying patch
	Apply(*ApplyReq, Patch_ApplyServer) error
	// server streaming rpc - verify patch
	Verify(*VerifyReq, Patch_VerifyServer) error
	// unary rpc - cmd
	Execute(context.Context, *CmdReq) (*CmdResp, error)
	// unary rpc - cmd
	ListUploaded(context.Context, *ListUploadedReq) (*ListUploadedResp, error)
	// contains filtered or unexported methods
}

PatchServer is the server API for Patch service. All implementations must embed UnimplementedPatchServer for forward compatibility

type Patch_ApplyClient

type Patch_ApplyClient interface {
	Recv() (*ApplyResp, error)
	grpc.ClientStream
}

type Patch_ApplyServer

type Patch_ApplyServer interface {
	Send(*ApplyResp) error
	grpc.ServerStream
}

type Patch_UploadClient

type Patch_UploadClient interface {
	Send(*UploadReq) error
	CloseAndRecv() (*UploadResp, error)
	grpc.ClientStream
}

type Patch_UploadServer

type Patch_UploadServer interface {
	SendAndClose(*UploadResp) error
	Recv() (*UploadReq, error)
	grpc.ServerStream
}

type Patch_VerifyClient

type Patch_VerifyClient interface {
	Recv() (*VerifyResp, error)
	grpc.ClientStream
}

type Patch_VerifyServer

type Patch_VerifyServer interface {
	Send(*VerifyResp) error
	grpc.ServerStream
}

type PingReq

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

func (*PingReq) Descriptor deprecated

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

Deprecated: Use PingReq.ProtoReflect.Descriptor instead.

func (*PingReq) GetMsg

func (x *PingReq) GetMsg() string

func (*PingReq) ProtoMessage

func (*PingReq) ProtoMessage()

func (*PingReq) ProtoReflect

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

func (*PingReq) Reset

func (x *PingReq) Reset()

func (*PingReq) String

func (x *PingReq) String() string

type PingResp

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

func (*PingResp) Descriptor deprecated

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

Deprecated: Use PingResp.ProtoReflect.Descriptor instead.

func (*PingResp) GetMsg

func (x *PingResp) GetMsg() string

func (*PingResp) ProtoMessage

func (*PingResp) ProtoMessage()

func (*PingResp) ProtoReflect

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

func (*PingResp) Reset

func (x *PingResp) Reset()

func (*PingResp) String

func (x *PingResp) String() string

type RightsInfo

type RightsInfo struct {
	App *APP `protobuf:"bytes,1,opt,name=app,proto3" json:"app,omitempty"`
	Ok  bool `protobuf:"varint,2,opt,name=ok,proto3" json:"ok,omitempty"`
	// contains filtered or unexported fields
}

func (*RightsInfo) Descriptor deprecated

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

Deprecated: Use RightsInfo.ProtoReflect.Descriptor instead.

func (*RightsInfo) GetApp

func (x *RightsInfo) GetApp() *APP

func (*RightsInfo) GetOk

func (x *RightsInfo) GetOk() bool

func (*RightsInfo) ProtoMessage

func (*RightsInfo) ProtoMessage()

func (*RightsInfo) ProtoReflect

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

func (*RightsInfo) Reset

func (x *RightsInfo) Reset()

func (*RightsInfo) String

func (x *RightsInfo) String() string

type RightsReq

type RightsReq struct {
	Applications []*APP `protobuf:"bytes,1,rep,name=applications,proto3" json:"applications,omitempty"`
	// contains filtered or unexported fields
}

func (*RightsReq) Descriptor deprecated

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

Deprecated: Use RightsReq.ProtoReflect.Descriptor instead.

func (*RightsReq) GetApplications

func (x *RightsReq) GetApplications() []*APP

func (*RightsReq) ProtoMessage

func (*RightsReq) ProtoMessage()

func (*RightsReq) ProtoReflect

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

func (*RightsReq) Reset

func (x *RightsReq) Reset()

func (*RightsReq) String

func (x *RightsReq) String() string

type RightsResp

type RightsResp struct {
	Applications []*RightsInfo `protobuf:"bytes,1,rep,name=applications,proto3" json:"applications,omitempty"`
	// contains filtered or unexported fields
}

func (*RightsResp) Descriptor deprecated

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

Deprecated: Use RightsResp.ProtoReflect.Descriptor instead.

func (*RightsResp) GetApplications

func (x *RightsResp) GetApplications() []*RightsInfo

func (*RightsResp) ProtoMessage

func (*RightsResp) ProtoMessage()

func (*RightsResp) ProtoReflect

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

func (*RightsResp) Reset

func (x *RightsResp) Reset()

func (*RightsResp) String

func (x *RightsResp) String() string

type UnimplementedPatchServer

type UnimplementedPatchServer struct {
}

UnimplementedPatchServer must be embedded to have forward compatible implementations.

func (UnimplementedPatchServer) Apply

func (UnimplementedPatchServer) Checks

func (UnimplementedPatchServer) Execute

func (UnimplementedPatchServer) Extract

func (UnimplementedPatchServer) ListUploaded

func (UnimplementedPatchServer) Ping

func (UnimplementedPatchServer) Upload

func (UnimplementedPatchServer) Verify

type UnsafePatchServer

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

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

type UploadReq

type UploadReq struct {

	// Types that are assignable to Data:
	//	*UploadReq_Info
	//	*UploadReq_ChunkData
	Data isUploadReq_Data `protobuf_oneof:"data"`
	// contains filtered or unexported fields
}

func (*UploadReq) Descriptor deprecated

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

Deprecated: Use UploadReq.ProtoReflect.Descriptor instead.

func (*UploadReq) GetChunkData

func (x *UploadReq) GetChunkData() []byte

func (*UploadReq) GetData

func (m *UploadReq) GetData() isUploadReq_Data

func (*UploadReq) GetInfo

func (x *UploadReq) GetInfo() *FileInfo

func (*UploadReq) ProtoMessage

func (*UploadReq) ProtoMessage()

func (*UploadReq) ProtoReflect

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

func (*UploadReq) Reset

func (x *UploadReq) Reset()

func (*UploadReq) String

func (x *UploadReq) String() string

type UploadReq_ChunkData

type UploadReq_ChunkData struct {
	ChunkData []byte `protobuf:"bytes,2,opt,name=chunk_data,json=chunkData,proto3,oneof"`
}

type UploadReq_Info

type UploadReq_Info struct {
	Info *FileInfo `protobuf:"bytes,1,opt,name=info,proto3,oneof"`
}

type UploadResp

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

func (*UploadResp) Descriptor deprecated

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

Deprecated: Use UploadResp.ProtoReflect.Descriptor instead.

func (*UploadResp) GetInfo

func (x *UploadResp) GetInfo() *FileInfo

func (*UploadResp) ProtoMessage

func (*UploadResp) ProtoMessage()

func (*UploadResp) ProtoReflect

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

func (*UploadResp) Reset

func (x *UploadResp) Reset()

func (*UploadResp) String

func (x *UploadResp) String() string

type VerifyInfo

type VerifyInfo struct {
	App      *APP    `protobuf:"bytes,1,opt,name=app,proto3" json:"app,omitempty"`
	Verified bool    `protobuf:"varint,2,opt,name=verified,proto3" json:"verified,omitempty"`
	Data     []*FILE `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyInfo) Descriptor deprecated

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

Deprecated: Use VerifyInfo.ProtoReflect.Descriptor instead.

func (*VerifyInfo) GetApp

func (x *VerifyInfo) GetApp() *APP

func (*VerifyInfo) GetData

func (x *VerifyInfo) GetData() []*FILE

func (*VerifyInfo) GetVerified

func (x *VerifyInfo) GetVerified() bool

func (*VerifyInfo) ProtoMessage

func (*VerifyInfo) ProtoMessage()

func (*VerifyInfo) ProtoReflect

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

func (*VerifyInfo) Reset

func (x *VerifyInfo) Reset()

func (*VerifyInfo) String

func (x *VerifyInfo) String() string

type VerifyReq

type VerifyReq struct {
	Applications []*APP `protobuf:"bytes,1,rep,name=applications,proto3" json:"applications,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyReq) Descriptor deprecated

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

Deprecated: Use VerifyReq.ProtoReflect.Descriptor instead.

func (*VerifyReq) GetApplications

func (x *VerifyReq) GetApplications() []*APP

func (*VerifyReq) ProtoMessage

func (*VerifyReq) ProtoMessage()

func (*VerifyReq) ProtoReflect

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

func (*VerifyReq) Reset

func (x *VerifyReq) Reset()

func (*VerifyReq) String

func (x *VerifyReq) String() string

type VerifyResp

type VerifyResp struct {
	Applications []*VerifyInfo `protobuf:"bytes,1,rep,name=applications,proto3" json:"applications,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyResp) Descriptor deprecated

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

Deprecated: Use VerifyResp.ProtoReflect.Descriptor instead.

func (*VerifyResp) GetApplications

func (x *VerifyResp) GetApplications() []*VerifyInfo

func (*VerifyResp) ProtoMessage

func (*VerifyResp) ProtoMessage()

func (*VerifyResp) ProtoReflect

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

func (*VerifyResp) Reset

func (x *VerifyResp) Reset()

func (*VerifyResp) String

func (x *VerifyResp) String() string

Jump to

Keyboard shortcuts

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