pb

package
v0.0.29 Latest Latest
Warning

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

Go to latest
Published: Apr 26, 2021 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	FileChunk_State_name = map[int32]string{
		0: "NONE",
		2: "DONE",
		3: "ERROR",
	}
	FileChunk_State_value = map[string]int32{
		"NONE":  0,
		"DONE":  2,
		"ERROR": 3,
	}
)

Enum value maps for FileChunk_State.

View Source
var File_file_chunk_proto protoreflect.FileDescriptor
View Source
var File_message_proto protoreflect.FileDescriptor
View Source
var File_notification_proto protoreflect.FileDescriptor
View Source
var File_point_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type FileChunk

type FileChunk struct {
	State    FileChunk_State `protobuf:"varint,1,opt,name=state,proto3,enum=pb.FileChunk_State" json:"state,omitempty"`
	Seq      int32           `protobuf:"varint,2,opt,name=seq,proto3" json:"seq,omitempty"`
	Data     []byte          `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	FileName string          `protobuf:"bytes,4,opt,name=fileName,proto3" json:"fileName,omitempty"`
	// contains filtered or unexported fields
}

func (*FileChunk) Descriptor deprecated

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

Deprecated: Use FileChunk.ProtoReflect.Descriptor instead.

func (*FileChunk) GetData

func (x *FileChunk) GetData() []byte

func (*FileChunk) GetFileName

func (x *FileChunk) GetFileName() string

func (*FileChunk) GetSeq

func (x *FileChunk) GetSeq() int32

func (*FileChunk) GetState

func (x *FileChunk) GetState() FileChunk_State

func (*FileChunk) ProtoMessage

func (*FileChunk) ProtoMessage()

func (*FileChunk) ProtoReflect

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

func (*FileChunk) Reset

func (x *FileChunk) Reset()

func (*FileChunk) String

func (x *FileChunk) String() string

type FileChunk_State

type FileChunk_State int32
const (
	FileChunk_NONE  FileChunk_State = 0
	FileChunk_DONE  FileChunk_State = 2
	FileChunk_ERROR FileChunk_State = 3
)

func (FileChunk_State) Descriptor

func (FileChunk_State) Enum

func (x FileChunk_State) Enum() *FileChunk_State

func (FileChunk_State) EnumDescriptor deprecated

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

Deprecated: Use FileChunk_State.Descriptor instead.

func (FileChunk_State) Number

func (FileChunk_State) String

func (x FileChunk_State) String() string

func (FileChunk_State) Type

type Message added in v0.0.23

type Message struct {
	Id             string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	UserId         string `protobuf:"bytes,2,opt,name=userId,proto3" json:"userId,omitempty"`
	NotificationId string `protobuf:"bytes,3,opt,name=notificationId,proto3" json:"notificationId,omitempty"`
	Email          string `protobuf:"bytes,4,opt,name=email,proto3" json:"email,omitempty"`
	Phone          string `protobuf:"bytes,5,opt,name=phone,proto3" json:"phone,omitempty"`
	Subject        string `protobuf:"bytes,6,opt,name=subject,proto3" json:"subject,omitempty"`
	Message        string `protobuf:"bytes,7,opt,name=message,proto3" json:"message,omitempty"`
	ParentId       string `protobuf:"bytes,8,opt,name=parentId,proto3" json:"parentId,omitempty"`
	// contains filtered or unexported fields
}

func (*Message) Descriptor deprecated added in v0.0.23

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

Deprecated: Use Message.ProtoReflect.Descriptor instead.

func (*Message) GetEmail added in v0.0.23

func (x *Message) GetEmail() string

func (*Message) GetId added in v0.0.23

func (x *Message) GetId() string

func (*Message) GetMessage added in v0.0.23

func (x *Message) GetMessage() string

func (*Message) GetNotificationId added in v0.0.23

func (x *Message) GetNotificationId() string

func (*Message) GetParentId added in v0.0.25

func (x *Message) GetParentId() string

func (*Message) GetPhone added in v0.0.23

func (x *Message) GetPhone() string

func (*Message) GetSubject added in v0.0.23

func (x *Message) GetSubject() string

func (*Message) GetUserId added in v0.0.23

func (x *Message) GetUserId() string

func (*Message) ProtoMessage added in v0.0.23

func (*Message) ProtoMessage()

func (*Message) ProtoReflect added in v0.0.23

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

func (*Message) Reset added in v0.0.23

func (x *Message) Reset()

func (*Message) String added in v0.0.23

func (x *Message) String() string

type Node added in v0.0.22

type Node struct {
	Id     string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Type   string   `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	Points []*Point `protobuf:"bytes,3,rep,name=points,proto3" json:"points,omitempty"`
	// contains filtered or unexported fields
}

func (*Node) Descriptor deprecated added in v0.0.22

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

Deprecated: Use Node.ProtoReflect.Descriptor instead.

func (*Node) GetId added in v0.0.22

func (x *Node) GetId() string

func (*Node) GetPoints added in v0.0.22

func (x *Node) GetPoints() []*Point

func (*Node) GetType added in v0.0.22

func (x *Node) GetType() string

func (*Node) ProtoMessage added in v0.0.22

func (*Node) ProtoMessage()

func (*Node) ProtoReflect added in v0.0.22

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

func (*Node) Reset added in v0.0.22

func (x *Node) Reset()

func (*Node) String added in v0.0.22

func (x *Node) String() string

type NodeCmd added in v0.0.12

type NodeCmd struct {
	Id     string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Cmd    string `protobuf:"bytes,2,opt,name=cmd,proto3" json:"cmd,omitempty"`
	Detail string `protobuf:"bytes,3,opt,name=detail,proto3" json:"detail,omitempty"`
	// contains filtered or unexported fields
}

func (*NodeCmd) Descriptor deprecated added in v0.0.12

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

Deprecated: Use NodeCmd.ProtoReflect.Descriptor instead.

func (*NodeCmd) GetCmd added in v0.0.12

func (x *NodeCmd) GetCmd() string

func (*NodeCmd) GetDetail added in v0.0.12

func (x *NodeCmd) GetDetail() string

func (*NodeCmd) GetId added in v0.0.12

func (x *NodeCmd) GetId() string

func (*NodeCmd) ProtoMessage added in v0.0.12

func (*NodeCmd) ProtoMessage()

func (*NodeCmd) ProtoReflect added in v0.0.12

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

func (*NodeCmd) Reset added in v0.0.12

func (x *NodeCmd) Reset()

func (*NodeCmd) String added in v0.0.12

func (x *NodeCmd) String() string

type NodeVersion added in v0.0.12

type NodeVersion struct {
	Os  string `protobuf:"bytes,1,opt,name=os,proto3" json:"os,omitempty"`
	App string `protobuf:"bytes,2,opt,name=app,proto3" json:"app,omitempty"`
	Hw  string `protobuf:"bytes,3,opt,name=hw,proto3" json:"hw,omitempty"`
	// contains filtered or unexported fields
}

func (*NodeVersion) Descriptor deprecated added in v0.0.12

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

Deprecated: Use NodeVersion.ProtoReflect.Descriptor instead.

func (*NodeVersion) GetApp added in v0.0.12

func (x *NodeVersion) GetApp() string

func (*NodeVersion) GetHw added in v0.0.12

func (x *NodeVersion) GetHw() string

func (*NodeVersion) GetOs added in v0.0.12

func (x *NodeVersion) GetOs() string

func (*NodeVersion) ProtoMessage added in v0.0.12

func (*NodeVersion) ProtoMessage()

func (*NodeVersion) ProtoReflect added in v0.0.12

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

func (*NodeVersion) Reset added in v0.0.12

func (x *NodeVersion) Reset()

func (*NodeVersion) String added in v0.0.12

func (x *NodeVersion) String() string

type Notification added in v0.0.23

type Notification struct {
	Id         string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	SourceNode string `protobuf:"bytes,2,opt,name=sourceNode,proto3" json:"sourceNode,omitempty"`
	Subject    string `protobuf:"bytes,3,opt,name=subject,proto3" json:"subject,omitempty"`
	Msg        string `protobuf:"bytes,4,opt,name=msg,proto3" json:"msg,omitempty"`
	Parent     string `protobuf:"bytes,5,opt,name=parent,proto3" json:"parent,omitempty"`
	// contains filtered or unexported fields
}

func (*Notification) Descriptor deprecated added in v0.0.23

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

Deprecated: Use Notification.ProtoReflect.Descriptor instead.

func (*Notification) GetId added in v0.0.23

func (x *Notification) GetId() string

func (*Notification) GetMsg added in v0.0.23

func (x *Notification) GetMsg() string

func (*Notification) GetParent added in v0.0.29

func (x *Notification) GetParent() string

func (*Notification) GetSourceNode added in v0.0.23

func (x *Notification) GetSourceNode() string

func (*Notification) GetSubject added in v0.0.23

func (x *Notification) GetSubject() string

func (*Notification) ProtoMessage added in v0.0.23

func (*Notification) ProtoMessage()

func (*Notification) ProtoReflect added in v0.0.23

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

func (*Notification) Reset added in v0.0.23

func (x *Notification) Reset()

func (*Notification) String added in v0.0.23

func (x *Notification) String() string

type Point added in v0.0.11

type Point struct {
	Id       string                 `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Type     string                 `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	Value    float32                `protobuf:"fixed32,4,opt,name=value,proto3" json:"value,omitempty"`
	Time     *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=time,proto3" json:"time,omitempty"`
	Duration *durationpb.Duration   `protobuf:"bytes,6,opt,name=duration,proto3" json:"duration,omitempty"`
	Index    int32                  `protobuf:"varint,7,opt,name=index,proto3" json:"index,omitempty"`
	Text     string                 `protobuf:"bytes,8,opt,name=text,proto3" json:"text,omitempty"`
	Min      float32                `protobuf:"fixed32,9,opt,name=min,proto3" json:"min,omitempty"`
	Max      float32                `protobuf:"fixed32,10,opt,name=max,proto3" json:"max,omitempty"`
	// contains filtered or unexported fields
}

func (*Point) Descriptor deprecated added in v0.0.11

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

Deprecated: Use Point.ProtoReflect.Descriptor instead.

func (*Point) GetDuration added in v0.0.11

func (x *Point) GetDuration() *durationpb.Duration

func (*Point) GetId added in v0.0.11

func (x *Point) GetId() string

func (*Point) GetIndex added in v0.0.11

func (x *Point) GetIndex() int32

func (*Point) GetMax added in v0.0.11

func (x *Point) GetMax() float32

func (*Point) GetMin added in v0.0.11

func (x *Point) GetMin() float32

func (*Point) GetText added in v0.0.11

func (x *Point) GetText() string

func (*Point) GetTime added in v0.0.11

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

func (*Point) GetType added in v0.0.11

func (x *Point) GetType() string

func (*Point) GetValue added in v0.0.11

func (x *Point) GetValue() float32

func (*Point) ProtoMessage added in v0.0.11

func (*Point) ProtoMessage()

func (*Point) ProtoReflect added in v0.0.11

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

func (*Point) Reset added in v0.0.11

func (x *Point) Reset()

func (*Point) String added in v0.0.11

func (x *Point) String() string

type Points added in v0.0.11

type Points struct {
	Points []*Point `protobuf:"bytes,1,rep,name=points,proto3" json:"points,omitempty"`
	// contains filtered or unexported fields
}

func (*Points) Descriptor deprecated added in v0.0.11

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

Deprecated: Use Points.ProtoReflect.Descriptor instead.

func (*Points) GetPoints added in v0.0.11

func (x *Points) GetPoints() []*Point

func (*Points) ProtoMessage added in v0.0.11

func (*Points) ProtoMessage()

func (*Points) ProtoReflect added in v0.0.11

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

func (*Points) Reset added in v0.0.11

func (x *Points) Reset()

func (*Points) String added in v0.0.11

func (x *Points) String() string

Jump to

Keyboard shortcuts

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