third

package
v1.4.7 Latest Latest
Warning

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

Go to latest
Published: Jan 14, 2026 License: GPL-3.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func RegisterAppServiceHandler added in v1.2.5

func RegisterAppServiceHandler(s server.Server, hdlr AppServiceHandler, opts ...server.HandlerOption) error

func RegisterCarouselServiceHandler added in v1.0.4

func RegisterCarouselServiceHandler(s server.Server, hdlr CarouselServiceHandler, opts ...server.HandlerOption) error

func RegisterChannelServiceHandler

func RegisterChannelServiceHandler(s server.Server, hdlr ChannelServiceHandler, opts ...server.HandlerOption) error

func RegisterHolidayServiceHandler added in v1.1.1

func RegisterHolidayServiceHandler(s server.Server, hdlr HolidayServiceHandler, opts ...server.HandlerOption) error

func RegisterHonorServiceHandler added in v1.2.0

func RegisterHonorServiceHandler(s server.Server, hdlr HonorServiceHandler, opts ...server.HandlerOption) error

func RegisterKMSServiceHandler added in v1.3.0

func RegisterKMSServiceHandler(s server.Server, hdlr KMSServiceHandler, opts ...server.HandlerOption) error

func RegisterLinkServiceHandler added in v1.4.0

func RegisterLinkServiceHandler(s server.Server, hdlr LinkServiceHandler, opts ...server.HandlerOption) error

func RegisterMotionServiceHandler added in v1.0.2

func RegisterMotionServiceHandler(s server.Server, hdlr MotionServiceHandler, opts ...server.HandlerOption) error

func RegisterNetflowServiceHandler added in v1.1.7

func RegisterNetflowServiceHandler(s server.Server, hdlr NetflowServiceHandler, opts ...server.HandlerOption) error

func RegisterPartnerServiceHandler

func RegisterPartnerServiceHandler(s server.Server, hdlr PartnerServiceHandler, opts ...server.HandlerOption) error

func RegisterRecommendServiceHandler added in v1.0.4

func RegisterRecommendServiceHandler(s server.Server, hdlr RecommendServiceHandler, opts ...server.HandlerOption) error

func RegisterReserveServiceHandler added in v1.4.0

func RegisterReserveServiceHandler(s server.Server, hdlr ReserveServiceHandler, opts ...server.HandlerOption) error

func RegisterScheduleServiceHandler added in v1.1.0

func RegisterScheduleServiceHandler(s server.Server, hdlr ScheduleServiceHandler, opts ...server.HandlerOption) error

Types

type AppInfo added in v1.2.5

type AppInfo struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Id                   uint64   `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Created              int64    `protobuf:"varint,3,opt,name=created,proto3" json:"created,omitempty"`
	Updated              int64    `protobuf:"varint,4,opt,name=updated,proto3" json:"updated,omitempty"`
	Creator              string   `protobuf:"bytes,5,opt,name=creator,proto3" json:"creator,omitempty"`
	Operator             string   `protobuf:"bytes,6,opt,name=operator,proto3" json:"operator,omitempty"`
	Name                 string   `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
	App                  string   `protobuf:"bytes,8,opt,name=app,proto3" json:"app,omitempty"`
	Version              string   `protobuf:"bytes,9,opt,name=version,proto3" json:"version,omitempty"`
	Secret               string   `protobuf:"bytes,10,opt,name=secret,proto3" json:"secret,omitempty"`
	Status               uint32   `protobuf:"varint,11,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*AppInfo) Descriptor added in v1.2.5

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

func (*AppInfo) GetApp added in v1.2.5

func (m *AppInfo) GetApp() string

func (*AppInfo) GetCreated added in v1.2.5

func (m *AppInfo) GetCreated() int64

func (*AppInfo) GetCreator added in v1.2.5

func (m *AppInfo) GetCreator() string

func (*AppInfo) GetId added in v1.2.5

func (m *AppInfo) GetId() uint64

func (*AppInfo) GetName added in v1.2.5

func (m *AppInfo) GetName() string

func (*AppInfo) GetOperator added in v1.2.5

func (m *AppInfo) GetOperator() string

func (*AppInfo) GetSecret added in v1.2.5

func (m *AppInfo) GetSecret() string

func (*AppInfo) GetStatus added in v1.2.5

func (m *AppInfo) GetStatus() uint32

func (*AppInfo) GetUid added in v1.2.5

func (m *AppInfo) GetUid() string

func (*AppInfo) GetUpdated added in v1.2.5

func (m *AppInfo) GetUpdated() int64

func (*AppInfo) GetVersion added in v1.2.5

func (m *AppInfo) GetVersion() string

func (*AppInfo) ProtoMessage added in v1.2.5

func (*AppInfo) ProtoMessage()

func (*AppInfo) Reset added in v1.2.5

func (m *AppInfo) Reset()

func (*AppInfo) String added in v1.2.5

func (m *AppInfo) String() string

func (*AppInfo) XXX_DiscardUnknown added in v1.2.5

func (m *AppInfo) XXX_DiscardUnknown()

func (*AppInfo) XXX_Marshal added in v1.2.5

func (m *AppInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AppInfo) XXX_Merge added in v1.2.5

func (m *AppInfo) XXX_Merge(src proto.Message)

func (*AppInfo) XXX_Size added in v1.2.5

func (m *AppInfo) XXX_Size() int

func (*AppInfo) XXX_Unmarshal added in v1.2.5

func (m *AppInfo) XXX_Unmarshal(b []byte) error

type AppService added in v1.2.5

type AppService interface {
	AddOne(ctx context.Context, in *ReqAppAdd, opts ...client.CallOption) (*ReplyAppInfo, error)
	GetOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyAppInfo, error)
	RemoveOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyInfo, error)
	GetByFilter(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyAppList, error)
	GetStatistic(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyStatistic, error)
	UpdateByFilter(ctx context.Context, in *RequestUpdate, opts ...client.CallOption) (*ReplyInfo, error)
}

func NewAppService added in v1.2.5

func NewAppService(name string, c client.Client) AppService

type AppServiceHandler added in v1.2.5

type CarouselInfo added in v1.0.4

type CarouselInfo struct {
	Uid                  string       `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Id                   uint64       `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Created              int64        `protobuf:"varint,3,opt,name=created,proto3" json:"created,omitempty"`
	Updated              int64        `protobuf:"varint,4,opt,name=updated,proto3" json:"updated,omitempty"`
	Creator              string       `protobuf:"bytes,5,opt,name=creator,proto3" json:"creator,omitempty"`
	Operator             string       `protobuf:"bytes,6,opt,name=operator,proto3" json:"operator,omitempty"`
	Name                 string       `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
	Owner                string       `protobuf:"bytes,8,opt,name=owner,proto3" json:"owner,omitempty"`
	Remark               string       `protobuf:"bytes,9,opt,name=remark,proto3" json:"remark,omitempty"`
	Cover                string       `protobuf:"bytes,10,opt,name=cover,proto3" json:"cover,omitempty"`
	Assets               []string     `protobuf:"bytes,30,rep,name=assets,proto3" json:"assets,omitempty"`
	Quotes               []*QuoteInfo `protobuf:"bytes,31,rep,name=quotes,proto3" json:"quotes,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*CarouselInfo) Descriptor added in v1.0.4

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

func (*CarouselInfo) GetAssets added in v1.4.2

func (m *CarouselInfo) GetAssets() []string

func (*CarouselInfo) GetCover added in v1.4.2

func (m *CarouselInfo) GetCover() string

func (*CarouselInfo) GetCreated added in v1.0.4

func (m *CarouselInfo) GetCreated() int64

func (*CarouselInfo) GetCreator added in v1.0.4

func (m *CarouselInfo) GetCreator() string

func (*CarouselInfo) GetId added in v1.0.4

func (m *CarouselInfo) GetId() uint64

func (*CarouselInfo) GetName added in v1.0.4

func (m *CarouselInfo) GetName() string

func (*CarouselInfo) GetOperator added in v1.0.4

func (m *CarouselInfo) GetOperator() string

func (*CarouselInfo) GetOwner added in v1.0.4

func (m *CarouselInfo) GetOwner() string

func (*CarouselInfo) GetQuotes added in v1.0.4

func (m *CarouselInfo) GetQuotes() []*QuoteInfo

func (*CarouselInfo) GetRemark added in v1.4.2

func (m *CarouselInfo) GetRemark() string

func (*CarouselInfo) GetUid added in v1.0.4

func (m *CarouselInfo) GetUid() string

func (*CarouselInfo) GetUpdated added in v1.0.4

func (m *CarouselInfo) GetUpdated() int64

func (*CarouselInfo) ProtoMessage added in v1.0.4

func (*CarouselInfo) ProtoMessage()

func (*CarouselInfo) Reset added in v1.0.4

func (m *CarouselInfo) Reset()

func (*CarouselInfo) String added in v1.0.4

func (m *CarouselInfo) String() string

func (*CarouselInfo) XXX_DiscardUnknown added in v1.0.4

func (m *CarouselInfo) XXX_DiscardUnknown()

func (*CarouselInfo) XXX_Marshal added in v1.0.4

func (m *CarouselInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CarouselInfo) XXX_Merge added in v1.0.4

func (m *CarouselInfo) XXX_Merge(src proto.Message)

func (*CarouselInfo) XXX_Size added in v1.0.4

func (m *CarouselInfo) XXX_Size() int

func (*CarouselInfo) XXX_Unmarshal added in v1.0.4

func (m *CarouselInfo) XXX_Unmarshal(b []byte) error

type CarouselService added in v1.0.4

type CarouselService interface {
	AddOne(ctx context.Context, in *ReqCarouselAdd, opts ...client.CallOption) (*ReplyCarouselInfo, error)
	UpdateOne(ctx context.Context, in *ReqCarouselUpdate, opts ...client.CallOption) (*ReplyCarouselInfo, error)
	GetOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyCarouselInfo, error)
	GetList(ctx context.Context, in *RequestPage, opts ...client.CallOption) (*ReplyCarouselList, error)
	RemoveOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyInfo, error)
	GetByFilter(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyCarouselList, error)
	GetStatistic(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyStatistic, error)
	UpdateByFilter(ctx context.Context, in *RequestUpdate, opts ...client.CallOption) (*ReplyInfo, error)
}

func NewCarouselService added in v1.0.4

func NewCarouselService(name string, c client.Client) CarouselService

type ChannelInfo

type ChannelInfo struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Id                   uint64   `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Created              int64    `protobuf:"varint,3,opt,name=created,proto3" json:"created,omitempty"`
	Updated              int64    `protobuf:"varint,4,opt,name=updated,proto3" json:"updated,omitempty"`
	Creator              string   `protobuf:"bytes,5,opt,name=creator,proto3" json:"creator,omitempty"`
	Operator             string   `protobuf:"bytes,6,opt,name=operator,proto3" json:"operator,omitempty"`
	Name                 string   `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
	Remark               string   `protobuf:"bytes,8,opt,name=remark,proto3" json:"remark,omitempty"`
	Phone                string   `protobuf:"bytes,9,opt,name=phone,proto3" json:"phone,omitempty"`
	Secret               string   `protobuf:"bytes,10,opt,name=secret,proto3" json:"secret,omitempty"`
	Tags                 []string `protobuf:"bytes,11,rep,name=tags,proto3" json:"tags,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ChannelInfo) Descriptor

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

func (*ChannelInfo) GetCreated

func (m *ChannelInfo) GetCreated() int64

func (*ChannelInfo) GetCreator

func (m *ChannelInfo) GetCreator() string

func (*ChannelInfo) GetId

func (m *ChannelInfo) GetId() uint64

func (*ChannelInfo) GetName

func (m *ChannelInfo) GetName() string

func (*ChannelInfo) GetOperator

func (m *ChannelInfo) GetOperator() string

func (*ChannelInfo) GetPhone

func (m *ChannelInfo) GetPhone() string

func (*ChannelInfo) GetRemark

func (m *ChannelInfo) GetRemark() string

func (*ChannelInfo) GetSecret

func (m *ChannelInfo) GetSecret() string

func (*ChannelInfo) GetTags

func (m *ChannelInfo) GetTags() []string

func (*ChannelInfo) GetUid

func (m *ChannelInfo) GetUid() string

func (*ChannelInfo) GetUpdated

func (m *ChannelInfo) GetUpdated() int64

func (*ChannelInfo) ProtoMessage

func (*ChannelInfo) ProtoMessage()

func (*ChannelInfo) Reset

func (m *ChannelInfo) Reset()

func (*ChannelInfo) String

func (m *ChannelInfo) String() string

func (*ChannelInfo) XXX_DiscardUnknown

func (m *ChannelInfo) XXX_DiscardUnknown()

func (*ChannelInfo) XXX_Marshal

func (m *ChannelInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ChannelInfo) XXX_Merge

func (m *ChannelInfo) XXX_Merge(src proto.Message)

func (*ChannelInfo) XXX_Size

func (m *ChannelInfo) XXX_Size() int

func (*ChannelInfo) XXX_Unmarshal

func (m *ChannelInfo) XXX_Unmarshal(b []byte) error

type ChannelService

type ChannelService interface {
	AddOne(ctx context.Context, in *ReqChannelAdd, opts ...client.CallOption) (*ReplyChannelInfo, error)
	UpdateOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyChannelInfo, error)
	GetOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyChannelInfo, error)
	GetList(ctx context.Context, in *RequestPage, opts ...client.CallOption) (*ReplyChannelList, error)
	RemoveOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyInfo, error)
	GetByFilter(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyChannelList, error)
	GetStatistic(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyStatistic, error)
	UpdateByFilter(ctx context.Context, in *RequestUpdate, opts ...client.CallOption) (*ReplyInfo, error)
}

func NewChannelService

func NewChannelService(name string, c client.Client) ChannelService

type ContentInfo added in v1.1.6

type ContentInfo struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Size                 uint64   `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
	Group                string   `protobuf:"bytes,3,opt,name=group,proto3" json:"group,omitempty"`
	Type                 uint32   `protobuf:"varint,4,opt,name=type,proto3" json:"type,omitempty"`
	Children             []string `protobuf:"bytes,10,rep,name=children,proto3" json:"children,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ContentInfo) Descriptor added in v1.1.6

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

func (*ContentInfo) GetChildren added in v1.1.8

func (m *ContentInfo) GetChildren() []string

func (*ContentInfo) GetGroup added in v1.1.7

func (m *ContentInfo) GetGroup() string

func (*ContentInfo) GetSize added in v1.1.6

func (m *ContentInfo) GetSize() uint64

func (*ContentInfo) GetType added in v1.1.7

func (m *ContentInfo) GetType() uint32

func (*ContentInfo) GetUid added in v1.1.6

func (m *ContentInfo) GetUid() string

func (*ContentInfo) ProtoMessage added in v1.1.6

func (*ContentInfo) ProtoMessage()

func (*ContentInfo) Reset added in v1.1.6

func (m *ContentInfo) Reset()

func (*ContentInfo) String added in v1.1.6

func (m *ContentInfo) String() string

func (*ContentInfo) XXX_DiscardUnknown added in v1.1.6

func (m *ContentInfo) XXX_DiscardUnknown()

func (*ContentInfo) XXX_Marshal added in v1.1.6

func (m *ContentInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContentInfo) XXX_Merge added in v1.1.6

func (m *ContentInfo) XXX_Merge(src proto.Message)

func (*ContentInfo) XXX_Size added in v1.1.6

func (m *ContentInfo) XXX_Size() int

func (*ContentInfo) XXX_Unmarshal added in v1.1.6

func (m *ContentInfo) XXX_Unmarshal(b []byte) error

type DurationInfo added in v1.1.0

type DurationInfo struct {
	Begin                int64    `protobuf:"varint,1,opt,name=begin,proto3" json:"begin,omitempty"`
	End                  int64    `protobuf:"varint,2,opt,name=end,proto3" json:"end,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DurationInfo) Descriptor added in v1.1.0

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

func (*DurationInfo) GetBegin added in v1.1.0

func (m *DurationInfo) GetBegin() int64

func (*DurationInfo) GetEnd added in v1.1.0

func (m *DurationInfo) GetEnd() int64

func (*DurationInfo) ProtoMessage added in v1.1.0

func (*DurationInfo) ProtoMessage()

func (*DurationInfo) Reset added in v1.1.0

func (m *DurationInfo) Reset()

func (*DurationInfo) String added in v1.1.0

func (m *DurationInfo) String() string

func (*DurationInfo) XXX_DiscardUnknown added in v1.1.0

func (m *DurationInfo) XXX_DiscardUnknown()

func (*DurationInfo) XXX_Marshal added in v1.1.0

func (m *DurationInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DurationInfo) XXX_Merge added in v1.1.0

func (m *DurationInfo) XXX_Merge(src proto.Message)

func (*DurationInfo) XXX_Size added in v1.1.0

func (m *DurationInfo) XXX_Size() int

func (*DurationInfo) XXX_Unmarshal added in v1.1.0

func (m *DurationInfo) XXX_Unmarshal(b []byte) error

type HolidayInfo added in v1.1.1

type HolidayInfo struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Id                   uint64   `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Type                 uint32   `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`
	Created              int64    `protobuf:"varint,4,opt,name=created,proto3" json:"created,omitempty"`
	Updated              int64    `protobuf:"varint,5,opt,name=updated,proto3" json:"updated,omitempty"`
	Creator              string   `protobuf:"bytes,6,opt,name=creator,proto3" json:"creator,omitempty"`
	Operator             string   `protobuf:"bytes,7,opt,name=operator,proto3" json:"operator,omitempty"`
	Name                 string   `protobuf:"bytes,8,opt,name=name,proto3" json:"name,omitempty"`
	Remark               string   `protobuf:"bytes,9,opt,name=remark,proto3" json:"remark,omitempty"`
	Owner                string   `protobuf:"bytes,10,opt,name=owner,proto3" json:"owner,omitempty"`
	From                 int64    `protobuf:"varint,11,opt,name=from,proto3" json:"from,omitempty"`
	End                  int64    `protobuf:"varint,12,opt,name=end,proto3" json:"end,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*HolidayInfo) Descriptor added in v1.1.1

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

func (*HolidayInfo) GetCreated added in v1.1.1

func (m *HolidayInfo) GetCreated() int64

func (*HolidayInfo) GetCreator added in v1.1.1

func (m *HolidayInfo) GetCreator() string

func (*HolidayInfo) GetEnd added in v1.1.1

func (m *HolidayInfo) GetEnd() int64

func (*HolidayInfo) GetFrom added in v1.1.1

func (m *HolidayInfo) GetFrom() int64

func (*HolidayInfo) GetId added in v1.1.1

func (m *HolidayInfo) GetId() uint64

func (*HolidayInfo) GetName added in v1.1.1

func (m *HolidayInfo) GetName() string

func (*HolidayInfo) GetOperator added in v1.1.1

func (m *HolidayInfo) GetOperator() string

func (*HolidayInfo) GetOwner added in v1.1.1

func (m *HolidayInfo) GetOwner() string

func (*HolidayInfo) GetRemark added in v1.1.1

func (m *HolidayInfo) GetRemark() string

func (*HolidayInfo) GetType added in v1.1.1

func (m *HolidayInfo) GetType() uint32

func (*HolidayInfo) GetUid added in v1.1.1

func (m *HolidayInfo) GetUid() string

func (*HolidayInfo) GetUpdated added in v1.1.1

func (m *HolidayInfo) GetUpdated() int64

func (*HolidayInfo) ProtoMessage added in v1.1.1

func (*HolidayInfo) ProtoMessage()

func (*HolidayInfo) Reset added in v1.1.1

func (m *HolidayInfo) Reset()

func (*HolidayInfo) String added in v1.1.1

func (m *HolidayInfo) String() string

func (*HolidayInfo) XXX_DiscardUnknown added in v1.1.1

func (m *HolidayInfo) XXX_DiscardUnknown()

func (*HolidayInfo) XXX_Marshal added in v1.1.1

func (m *HolidayInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HolidayInfo) XXX_Merge added in v1.1.1

func (m *HolidayInfo) XXX_Merge(src proto.Message)

func (*HolidayInfo) XXX_Size added in v1.1.1

func (m *HolidayInfo) XXX_Size() int

func (*HolidayInfo) XXX_Unmarshal added in v1.1.1

func (m *HolidayInfo) XXX_Unmarshal(b []byte) error

type HolidayService added in v1.1.1

type HolidayService interface {
	AddOne(ctx context.Context, in *ReqHolidayAdd, opts ...client.CallOption) (*ReplyHolidayInfo, error)
	GetOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyHolidayInfo, error)
	UpdateBase(ctx context.Context, in *ReqHolidayUpdate, opts ...client.CallOption) (*ReplyHolidayInfo, error)
	GetByFilter(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyHolidayList, error)
	GetStatistic(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyStatistic, error)
	UpdateByFilter(ctx context.Context, in *RequestUpdate, opts ...client.CallOption) (*ReplyInfo, error)
	RemoveOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyInfo, error)
}

func NewHolidayService added in v1.1.1

func NewHolidayService(name string, c client.Client) HolidayService

type HonorContent added in v1.2.0

type HonorContent struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Remark               string   `protobuf:"bytes,2,opt,name=remark,proto3" json:"remark,omitempty"`
	Quotes               []string `protobuf:"bytes,10,rep,name=quotes,proto3" json:"quotes,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*HonorContent) Descriptor added in v1.2.0

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

func (*HonorContent) GetName added in v1.2.0

func (m *HonorContent) GetName() string

func (*HonorContent) GetQuotes added in v1.2.0

func (m *HonorContent) GetQuotes() []string

func (*HonorContent) GetRemark added in v1.2.0

func (m *HonorContent) GetRemark() string

func (*HonorContent) ProtoMessage added in v1.2.0

func (*HonorContent) ProtoMessage()

func (*HonorContent) Reset added in v1.2.0

func (m *HonorContent) Reset()

func (*HonorContent) String added in v1.2.0

func (m *HonorContent) String() string

func (*HonorContent) XXX_DiscardUnknown added in v1.2.0

func (m *HonorContent) XXX_DiscardUnknown()

func (*HonorContent) XXX_Marshal added in v1.2.0

func (m *HonorContent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HonorContent) XXX_Merge added in v1.2.0

func (m *HonorContent) XXX_Merge(src proto.Message)

func (*HonorContent) XXX_Size added in v1.2.0

func (m *HonorContent) XXX_Size() int

func (*HonorContent) XXX_Unmarshal added in v1.2.0

func (m *HonorContent) XXX_Unmarshal(b []byte) error

type HonorInfo added in v1.2.0

type HonorInfo struct {
	Uid                  string          `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Id                   uint64          `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Type                 uint32          `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`
	Created              int64           `protobuf:"varint,4,opt,name=created,proto3" json:"created,omitempty"`
	Updated              int64           `protobuf:"varint,5,opt,name=updated,proto3" json:"updated,omitempty"`
	Creator              string          `protobuf:"bytes,6,opt,name=creator,proto3" json:"creator,omitempty"`
	Operator             string          `protobuf:"bytes,7,opt,name=operator,proto3" json:"operator,omitempty"`
	Name                 string          `protobuf:"bytes,8,opt,name=name,proto3" json:"name,omitempty"`
	Remark               string          `protobuf:"bytes,9,opt,name=remark,proto3" json:"remark,omitempty"`
	Scene                string          `protobuf:"bytes,10,opt,name=scene,proto3" json:"scene,omitempty"`
	Parent               string          `protobuf:"bytes,11,opt,name=parent,proto3" json:"parent,omitempty"`
	Style                string          `protobuf:"bytes,12,opt,name=style,proto3" json:"style,omitempty"`
	Status               uint32          `protobuf:"varint,13,opt,name=status,proto3" json:"status,omitempty"`
	Contents             []*HonorContent `protobuf:"bytes,21,rep,name=contents,proto3" json:"contents,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*HonorInfo) Descriptor added in v1.2.0

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

func (*HonorInfo) GetContents added in v1.2.0

func (m *HonorInfo) GetContents() []*HonorContent

func (*HonorInfo) GetCreated added in v1.2.0

func (m *HonorInfo) GetCreated() int64

func (*HonorInfo) GetCreator added in v1.2.0

func (m *HonorInfo) GetCreator() string

func (*HonorInfo) GetId added in v1.2.0

func (m *HonorInfo) GetId() uint64

func (*HonorInfo) GetName added in v1.2.0

func (m *HonorInfo) GetName() string

func (*HonorInfo) GetOperator added in v1.2.0

func (m *HonorInfo) GetOperator() string

func (*HonorInfo) GetParent added in v1.2.0

func (m *HonorInfo) GetParent() string

func (*HonorInfo) GetRemark added in v1.2.0

func (m *HonorInfo) GetRemark() string

func (*HonorInfo) GetScene added in v1.2.0

func (m *HonorInfo) GetScene() string

func (*HonorInfo) GetStatus added in v1.2.0

func (m *HonorInfo) GetStatus() uint32

func (*HonorInfo) GetStyle added in v1.2.0

func (m *HonorInfo) GetStyle() string

func (*HonorInfo) GetType added in v1.2.0

func (m *HonorInfo) GetType() uint32

func (*HonorInfo) GetUid added in v1.2.0

func (m *HonorInfo) GetUid() string

func (*HonorInfo) GetUpdated added in v1.2.0

func (m *HonorInfo) GetUpdated() int64

func (*HonorInfo) ProtoMessage added in v1.2.0

func (*HonorInfo) ProtoMessage()

func (*HonorInfo) Reset added in v1.2.0

func (m *HonorInfo) Reset()

func (*HonorInfo) String added in v1.2.0

func (m *HonorInfo) String() string

func (*HonorInfo) XXX_DiscardUnknown added in v1.2.0

func (m *HonorInfo) XXX_DiscardUnknown()

func (*HonorInfo) XXX_Marshal added in v1.2.0

func (m *HonorInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HonorInfo) XXX_Merge added in v1.2.0

func (m *HonorInfo) XXX_Merge(src proto.Message)

func (*HonorInfo) XXX_Size added in v1.2.0

func (m *HonorInfo) XXX_Size() int

func (*HonorInfo) XXX_Unmarshal added in v1.2.0

func (m *HonorInfo) XXX_Unmarshal(b []byte) error

type HonorService added in v1.2.0

type HonorService interface {
	AddOne(ctx context.Context, in *ReqHonorAdd, opts ...client.CallOption) (*ReplyHonorInfo, error)
	GetOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyHonorInfo, error)
	GetByFilter(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyHonorList, error)
	GetStatistic(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyStatistic, error)
	UpdateByFilter(ctx context.Context, in *RequestUpdate, opts ...client.CallOption) (*ReplyInfo, error)
	RemoveOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyInfo, error)
	UpdateBase(ctx context.Context, in *ReqHonorUpdate, opts ...client.CallOption) (*ReplyHonorInfo, error)
	UpdateStatus(ctx context.Context, in *RequestFlag, opts ...client.CallOption) (*ReplyInfo, error)
	UpdateContents(ctx context.Context, in *ReqHonorContents, opts ...client.CallOption) (*ReplyInfo, error)
}

func NewHonorService added in v1.2.0

func NewHonorService(name string, c client.Client) HonorService

type KMSInfo added in v1.3.0

type KMSInfo struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Id                   uint64   `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Created              int64    `protobuf:"varint,4,opt,name=created,proto3" json:"created,omitempty"`
	Updated              int64    `protobuf:"varint,5,opt,name=updated,proto3" json:"updated,omitempty"`
	Creator              string   `protobuf:"bytes,6,opt,name=creator,proto3" json:"creator,omitempty"`
	Operator             string   `protobuf:"bytes,7,opt,name=operator,proto3" json:"operator,omitempty"`
	Name                 string   `protobuf:"bytes,8,opt,name=name,proto3" json:"name,omitempty"`
	Remark               string   `protobuf:"bytes,9,opt,name=remark,proto3" json:"remark,omitempty"`
	Sn                   string   `protobuf:"bytes,10,opt,name=sn,proto3" json:"sn,omitempty"`
	Consumer             string   `protobuf:"bytes,11,opt,name=consumer,proto3" json:"consumer,omitempty"`
	Space                string   `protobuf:"bytes,12,opt,name=space,proto3" json:"space,omitempty"`
	Scene                string   `protobuf:"bytes,13,opt,name=scene,proto3" json:"scene,omitempty"`
	Owner                string   `protobuf:"bytes,14,opt,name=owner,proto3" json:"owner,omitempty"`
	Content              string   `protobuf:"bytes,15,opt,name=content,proto3" json:"content,omitempty"`
	Expiry               uint32   `protobuf:"varint,16,opt,name=expiry,proto3" json:"expiry,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*KMSInfo) Descriptor added in v1.3.0

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

func (*KMSInfo) GetConsumer added in v1.3.0

func (m *KMSInfo) GetConsumer() string

func (*KMSInfo) GetContent added in v1.3.0

func (m *KMSInfo) GetContent() string

func (*KMSInfo) GetCreated added in v1.3.0

func (m *KMSInfo) GetCreated() int64

func (*KMSInfo) GetCreator added in v1.3.0

func (m *KMSInfo) GetCreator() string

func (*KMSInfo) GetExpiry added in v1.3.0

func (m *KMSInfo) GetExpiry() uint32

func (*KMSInfo) GetId added in v1.3.0

func (m *KMSInfo) GetId() uint64

func (*KMSInfo) GetName added in v1.3.0

func (m *KMSInfo) GetName() string

func (*KMSInfo) GetOperator added in v1.3.0

func (m *KMSInfo) GetOperator() string

func (*KMSInfo) GetOwner added in v1.3.0

func (m *KMSInfo) GetOwner() string

func (*KMSInfo) GetRemark added in v1.3.0

func (m *KMSInfo) GetRemark() string

func (*KMSInfo) GetScene added in v1.3.0

func (m *KMSInfo) GetScene() string

func (*KMSInfo) GetSn added in v1.3.0

func (m *KMSInfo) GetSn() string

func (*KMSInfo) GetSpace added in v1.3.0

func (m *KMSInfo) GetSpace() string

func (*KMSInfo) GetUid added in v1.3.0

func (m *KMSInfo) GetUid() string

func (*KMSInfo) GetUpdated added in v1.3.0

func (m *KMSInfo) GetUpdated() int64

func (*KMSInfo) ProtoMessage added in v1.3.0

func (*KMSInfo) ProtoMessage()

func (*KMSInfo) Reset added in v1.3.0

func (m *KMSInfo) Reset()

func (*KMSInfo) String added in v1.3.0

func (m *KMSInfo) String() string

func (*KMSInfo) XXX_DiscardUnknown added in v1.3.0

func (m *KMSInfo) XXX_DiscardUnknown()

func (*KMSInfo) XXX_Marshal added in v1.3.0

func (m *KMSInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KMSInfo) XXX_Merge added in v1.3.0

func (m *KMSInfo) XXX_Merge(src proto.Message)

func (*KMSInfo) XXX_Size added in v1.3.0

func (m *KMSInfo) XXX_Size() int

func (*KMSInfo) XXX_Unmarshal added in v1.3.0

func (m *KMSInfo) XXX_Unmarshal(b []byte) error

type KMSService added in v1.3.0

type KMSService interface {
	AddOne(ctx context.Context, in *ReqKMSAdd, opts ...client.CallOption) (*ReplyKMSInfo, error)
	GetOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyKMSInfo, error)
	GetByFilter(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyKMSList, error)
	GetStatistic(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyStatistic, error)
	Remove(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyInfo, error)
}

func NewKMSService added in v1.3.0

func NewKMSService(name string, c client.Client) KMSService

type KMSServiceHandler added in v1.3.0

type LinkInfo added in v1.4.0

type LinkInfo struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Id                   uint64   `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Created              int64    `protobuf:"varint,3,opt,name=created,proto3" json:"created,omitempty"`
	Updated              int64    `protobuf:"varint,4,opt,name=updated,proto3" json:"updated,omitempty"`
	Creator              string   `protobuf:"bytes,5,opt,name=creator,proto3" json:"creator,omitempty"`
	Operator             string   `protobuf:"bytes,6,opt,name=operator,proto3" json:"operator,omitempty"`
	Name                 string   `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
	Remark               string   `protobuf:"bytes,8,opt,name=remark,proto3" json:"remark,omitempty"`
	Cover                string   `protobuf:"bytes,9,opt,name=cover,proto3" json:"cover,omitempty"`
	Scene                string   `protobuf:"bytes,10,opt,name=scene,proto3" json:"scene,omitempty"`
	Kind                 uint32   `protobuf:"varint,11,opt,name=kind,proto3" json:"kind,omitempty"`
	Addr                 string   `protobuf:"bytes,12,opt,name=addr,proto3" json:"addr,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*LinkInfo) Descriptor added in v1.4.0

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

func (*LinkInfo) GetAddr added in v1.4.0

func (m *LinkInfo) GetAddr() string

func (*LinkInfo) GetCover added in v1.4.0

func (m *LinkInfo) GetCover() string

func (*LinkInfo) GetCreated added in v1.4.0

func (m *LinkInfo) GetCreated() int64

func (*LinkInfo) GetCreator added in v1.4.0

func (m *LinkInfo) GetCreator() string

func (*LinkInfo) GetId added in v1.4.0

func (m *LinkInfo) GetId() uint64

func (*LinkInfo) GetKind added in v1.4.0

func (m *LinkInfo) GetKind() uint32

func (*LinkInfo) GetName added in v1.4.0

func (m *LinkInfo) GetName() string

func (*LinkInfo) GetOperator added in v1.4.0

func (m *LinkInfo) GetOperator() string

func (*LinkInfo) GetRemark added in v1.4.0

func (m *LinkInfo) GetRemark() string

func (*LinkInfo) GetScene added in v1.4.0

func (m *LinkInfo) GetScene() string

func (*LinkInfo) GetUid added in v1.4.0

func (m *LinkInfo) GetUid() string

func (*LinkInfo) GetUpdated added in v1.4.0

func (m *LinkInfo) GetUpdated() int64

func (*LinkInfo) ProtoMessage added in v1.4.0

func (*LinkInfo) ProtoMessage()

func (*LinkInfo) Reset added in v1.4.0

func (m *LinkInfo) Reset()

func (*LinkInfo) String added in v1.4.0

func (m *LinkInfo) String() string

func (*LinkInfo) XXX_DiscardUnknown added in v1.4.0

func (m *LinkInfo) XXX_DiscardUnknown()

func (*LinkInfo) XXX_Marshal added in v1.4.0

func (m *LinkInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LinkInfo) XXX_Merge added in v1.4.0

func (m *LinkInfo) XXX_Merge(src proto.Message)

func (*LinkInfo) XXX_Size added in v1.4.0

func (m *LinkInfo) XXX_Size() int

func (*LinkInfo) XXX_Unmarshal added in v1.4.0

func (m *LinkInfo) XXX_Unmarshal(b []byte) error

type LinkService added in v1.4.0

type LinkService interface {
	AddOne(ctx context.Context, in *ReqLinkAdd, opts ...client.CallOption) (*ReplyLinkInfo, error)
	GetOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyLinkInfo, error)
	RemoveOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyInfo, error)
	GetByFilter(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyLinkList, error)
	GetStatistic(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyStatistic, error)
	UpdateByFilter(ctx context.Context, in *RequestUpdate, opts ...client.CallOption) (*ReplyInfo, error)
}

func NewLinkService added in v1.4.0

func NewLinkService(name string, c client.Client) LinkService

type LinkServiceHandler added in v1.4.0

type MotionInfo added in v1.0.2

type MotionInfo struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Id                   uint64   `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Type                 uint32   `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`
	Created              int64    `protobuf:"varint,4,opt,name=created,proto3" json:"created,omitempty"`
	Updated              int64    `protobuf:"varint,5,opt,name=updated,proto3" json:"updated,omitempty"`
	Creator              string   `protobuf:"bytes,6,opt,name=creator,proto3" json:"creator,omitempty"`
	Operator             string   `protobuf:"bytes,7,opt,name=operator,proto3" json:"operator,omitempty"`
	Name                 string   `protobuf:"bytes,8,opt,name=name,proto3" json:"name,omitempty"`
	App                  string   `protobuf:"bytes,9,opt,name=app,proto3" json:"app,omitempty"`
	Sn                   string   `protobuf:"bytes,10,opt,name=sn,proto3" json:"sn,omitempty"`
	User                 string   `protobuf:"bytes,11,opt,name=user,proto3" json:"user,omitempty"`
	Event                string   `protobuf:"bytes,12,opt,name=event,proto3" json:"event,omitempty"`
	Scene                string   `protobuf:"bytes,13,opt,name=scene,proto3" json:"scene,omitempty"`
	Count                uint32   `protobuf:"varint,14,opt,name=count,proto3" json:"count,omitempty"`
	Content              string   `protobuf:"bytes,15,opt,name=content,proto3" json:"content,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*MotionInfo) Descriptor added in v1.0.2

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

func (*MotionInfo) GetApp added in v1.0.2

func (m *MotionInfo) GetApp() string

func (*MotionInfo) GetContent added in v1.0.3

func (m *MotionInfo) GetContent() string

func (*MotionInfo) GetCount added in v1.0.2

func (m *MotionInfo) GetCount() uint32

func (*MotionInfo) GetCreated added in v1.0.2

func (m *MotionInfo) GetCreated() int64

func (*MotionInfo) GetCreator added in v1.0.2

func (m *MotionInfo) GetCreator() string

func (*MotionInfo) GetEvent added in v1.0.2

func (m *MotionInfo) GetEvent() string

func (*MotionInfo) GetId added in v1.0.2

func (m *MotionInfo) GetId() uint64

func (*MotionInfo) GetName added in v1.0.2

func (m *MotionInfo) GetName() string

func (*MotionInfo) GetOperator added in v1.0.2

func (m *MotionInfo) GetOperator() string

func (*MotionInfo) GetScene added in v1.0.2

func (m *MotionInfo) GetScene() string

func (*MotionInfo) GetSn added in v1.0.2

func (m *MotionInfo) GetSn() string

func (*MotionInfo) GetType added in v1.0.2

func (m *MotionInfo) GetType() uint32

func (*MotionInfo) GetUid added in v1.0.2

func (m *MotionInfo) GetUid() string

func (*MotionInfo) GetUpdated added in v1.0.2

func (m *MotionInfo) GetUpdated() int64

func (*MotionInfo) GetUser added in v1.0.2

func (m *MotionInfo) GetUser() string

func (*MotionInfo) ProtoMessage added in v1.0.2

func (*MotionInfo) ProtoMessage()

func (*MotionInfo) Reset added in v1.0.2

func (m *MotionInfo) Reset()

func (*MotionInfo) String added in v1.0.2

func (m *MotionInfo) String() string

func (*MotionInfo) XXX_DiscardUnknown added in v1.0.2

func (m *MotionInfo) XXX_DiscardUnknown()

func (*MotionInfo) XXX_Marshal added in v1.0.2

func (m *MotionInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MotionInfo) XXX_Merge added in v1.0.2

func (m *MotionInfo) XXX_Merge(src proto.Message)

func (*MotionInfo) XXX_Size added in v1.0.2

func (m *MotionInfo) XXX_Size() int

func (*MotionInfo) XXX_Unmarshal added in v1.0.2

func (m *MotionInfo) XXX_Unmarshal(b []byte) error

type MotionService added in v1.0.2

type MotionService interface {
	AddOne(ctx context.Context, in *ReqMotionAdd, opts ...client.CallOption) (*ReplyMotionInfo, error)
	GetOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyMotionInfo, error)
	GetByFilter(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyMotionList, error)
	GetStatistic(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyStatistic, error)
	UpdateByFilter(ctx context.Context, in *RequestUpdate, opts ...client.CallOption) (*ReplyInfo, error)
	RemoveOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyInfo, error)
}

func NewMotionService added in v1.0.2

func NewMotionService(name string, c client.Client) MotionService

type NetflowInfo added in v1.1.7

type NetflowInfo struct {
	Uid                  string         `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Id                   uint64         `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Type                 uint32         `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`
	Created              int64          `protobuf:"varint,4,opt,name=created,proto3" json:"created,omitempty"`
	Creator              string         `protobuf:"bytes,5,opt,name=creator,proto3" json:"creator,omitempty"`
	Name                 string         `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
	Quote                string         `protobuf:"bytes,7,opt,name=quote,proto3" json:"quote,omitempty"`
	Scene                string         `protobuf:"bytes,8,opt,name=scene,proto3" json:"scene,omitempty"`
	Size                 uint64         `protobuf:"varint,9,opt,name=size,proto3" json:"size,omitempty"`
	Template             string         `protobuf:"bytes,10,opt,name=template,proto3" json:"template,omitempty"`
	Target               string         `protobuf:"bytes,11,opt,name=target,proto3" json:"target,omitempty"`
	Contents             []*ContentInfo `protobuf:"bytes,21,rep,name=contents,proto3" json:"contents,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*NetflowInfo) Descriptor added in v1.1.7

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

func (*NetflowInfo) GetContents added in v1.1.7

func (m *NetflowInfo) GetContents() []*ContentInfo

func (*NetflowInfo) GetCreated added in v1.1.7

func (m *NetflowInfo) GetCreated() int64

func (*NetflowInfo) GetCreator added in v1.1.7

func (m *NetflowInfo) GetCreator() string

func (*NetflowInfo) GetId added in v1.1.7

func (m *NetflowInfo) GetId() uint64

func (*NetflowInfo) GetName added in v1.1.7

func (m *NetflowInfo) GetName() string

func (*NetflowInfo) GetQuote added in v1.1.7

func (m *NetflowInfo) GetQuote() string

func (*NetflowInfo) GetScene added in v1.1.7

func (m *NetflowInfo) GetScene() string

func (*NetflowInfo) GetSize added in v1.1.7

func (m *NetflowInfo) GetSize() uint64

func (*NetflowInfo) GetTarget added in v1.1.7

func (m *NetflowInfo) GetTarget() string

func (*NetflowInfo) GetTemplate added in v1.1.7

func (m *NetflowInfo) GetTemplate() string

func (*NetflowInfo) GetType added in v1.1.7

func (m *NetflowInfo) GetType() uint32

func (*NetflowInfo) GetUid added in v1.1.7

func (m *NetflowInfo) GetUid() string

func (*NetflowInfo) ProtoMessage added in v1.1.7

func (*NetflowInfo) ProtoMessage()

func (*NetflowInfo) Reset added in v1.1.7

func (m *NetflowInfo) Reset()

func (*NetflowInfo) String added in v1.1.7

func (m *NetflowInfo) String() string

func (*NetflowInfo) XXX_DiscardUnknown added in v1.1.7

func (m *NetflowInfo) XXX_DiscardUnknown()

func (*NetflowInfo) XXX_Marshal added in v1.1.7

func (m *NetflowInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NetflowInfo) XXX_Merge added in v1.1.7

func (m *NetflowInfo) XXX_Merge(src proto.Message)

func (*NetflowInfo) XXX_Size added in v1.1.7

func (m *NetflowInfo) XXX_Size() int

func (*NetflowInfo) XXX_Unmarshal added in v1.1.7

func (m *NetflowInfo) XXX_Unmarshal(b []byte) error

type NetflowService added in v1.1.7

type NetflowService interface {
	AddOne(ctx context.Context, in *ReqNetflowAdd, opts ...client.CallOption) (*ReplyNetflowInfo, error)
	GetOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyNetflowInfo, error)
	GetByFilter(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyNetflowList, error)
	GetStatistic(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyStatistic, error)
	UpdateByFilter(ctx context.Context, in *RequestUpdate, opts ...client.CallOption) (*ReplyInfo, error)
	RemoveOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyInfo, error)
}

func NewNetflowService added in v1.1.7

func NewNetflowService(name string, c client.Client) NetflowService

type PairInfo added in v1.1.4

type PairInfo struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Id                   uint64   `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Count                uint64   `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
	Value                string   `protobuf:"bytes,4,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PairInfo) Descriptor added in v1.1.4

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

func (*PairInfo) GetCount added in v1.1.4

func (m *PairInfo) GetCount() uint64

func (*PairInfo) GetId added in v1.1.4

func (m *PairInfo) GetId() uint64

func (*PairInfo) GetKey added in v1.1.4

func (m *PairInfo) GetKey() string

func (*PairInfo) GetValue added in v1.1.4

func (m *PairInfo) GetValue() string

func (*PairInfo) ProtoMessage added in v1.1.4

func (*PairInfo) ProtoMessage()

func (*PairInfo) Reset added in v1.1.4

func (m *PairInfo) Reset()

func (*PairInfo) String added in v1.1.4

func (m *PairInfo) String() string

func (*PairInfo) XXX_DiscardUnknown added in v1.1.4

func (m *PairInfo) XXX_DiscardUnknown()

func (*PairInfo) XXX_Marshal added in v1.1.4

func (m *PairInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PairInfo) XXX_Merge added in v1.1.4

func (m *PairInfo) XXX_Merge(src proto.Message)

func (*PairInfo) XXX_Size added in v1.1.4

func (m *PairInfo) XXX_Size() int

func (*PairInfo) XXX_Unmarshal added in v1.1.4

func (m *PairInfo) XXX_Unmarshal(b []byte) error

type PartnerInfo

type PartnerInfo struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Id                   uint64   `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Created              int64    `protobuf:"varint,3,opt,name=created,proto3" json:"created,omitempty"`
	Updated              int64    `protobuf:"varint,4,opt,name=updated,proto3" json:"updated,omitempty"`
	Creator              string   `protobuf:"bytes,5,opt,name=creator,proto3" json:"creator,omitempty"`
	Operator             string   `protobuf:"bytes,6,opt,name=operator,proto3" json:"operator,omitempty"`
	Name                 string   `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
	Remark               string   `protobuf:"bytes,8,opt,name=remark,proto3" json:"remark,omitempty"`
	Phone                string   `protobuf:"bytes,9,opt,name=phone,proto3" json:"phone,omitempty"`
	Secret               string   `protobuf:"bytes,10,opt,name=secret,proto3" json:"secret,omitempty"`
	Tags                 []string `protobuf:"bytes,11,rep,name=tags,proto3" json:"tags,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PartnerInfo) Descriptor

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

func (*PartnerInfo) GetCreated

func (m *PartnerInfo) GetCreated() int64

func (*PartnerInfo) GetCreator

func (m *PartnerInfo) GetCreator() string

func (*PartnerInfo) GetId

func (m *PartnerInfo) GetId() uint64

func (*PartnerInfo) GetName

func (m *PartnerInfo) GetName() string

func (*PartnerInfo) GetOperator

func (m *PartnerInfo) GetOperator() string

func (*PartnerInfo) GetPhone

func (m *PartnerInfo) GetPhone() string

func (*PartnerInfo) GetRemark

func (m *PartnerInfo) GetRemark() string

func (*PartnerInfo) GetSecret

func (m *PartnerInfo) GetSecret() string

func (*PartnerInfo) GetTags

func (m *PartnerInfo) GetTags() []string

func (*PartnerInfo) GetUid

func (m *PartnerInfo) GetUid() string

func (*PartnerInfo) GetUpdated

func (m *PartnerInfo) GetUpdated() int64

func (*PartnerInfo) ProtoMessage

func (*PartnerInfo) ProtoMessage()

func (*PartnerInfo) Reset

func (m *PartnerInfo) Reset()

func (*PartnerInfo) String

func (m *PartnerInfo) String() string

func (*PartnerInfo) XXX_DiscardUnknown

func (m *PartnerInfo) XXX_DiscardUnknown()

func (*PartnerInfo) XXX_Marshal

func (m *PartnerInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PartnerInfo) XXX_Merge

func (m *PartnerInfo) XXX_Merge(src proto.Message)

func (*PartnerInfo) XXX_Size

func (m *PartnerInfo) XXX_Size() int

func (*PartnerInfo) XXX_Unmarshal

func (m *PartnerInfo) XXX_Unmarshal(b []byte) error

type PartnerService

type PartnerService interface {
	AddOne(ctx context.Context, in *ReqPartnerAdd, opts ...client.CallOption) (*ReplyPartnerInfo, error)
	GetOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyPartnerInfo, error)
	GetList(ctx context.Context, in *RequestPage, opts ...client.CallOption) (*ReplyPartnerList, error)
	UpdateOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyPartnerInfo, error)
	RemoveOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyInfo, error)
	CreateSecret(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyPartnerSecret, error)
	GetBySecret(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyPartnerInfo, error)
	GetByFilter(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyPartnerList, error)
	GetStatistic(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyStatistic, error)
	UpdateByFilter(ctx context.Context, in *RequestUpdate, opts ...client.CallOption) (*ReplyInfo, error)
}

func NewPartnerService

func NewPartnerService(name string, c client.Client) PartnerService

type QuoteInfo added in v1.0.4

type QuoteInfo struct {
	Type                 uint32   `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
	Updated              int64    `protobuf:"varint,2,opt,name=updated,proto3" json:"updated,omitempty"`
	Uid                  string   `protobuf:"bytes,3,opt,name=uid,proto3" json:"uid,omitempty"`
	Title                string   `protobuf:"bytes,4,opt,name=title,proto3" json:"title,omitempty"`
	Asset                string   `protobuf:"bytes,5,opt,name=asset,proto3" json:"asset,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*QuoteInfo) Descriptor added in v1.0.4

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

func (*QuoteInfo) GetAsset added in v1.0.4

func (m *QuoteInfo) GetAsset() string

func (*QuoteInfo) GetTitle added in v1.0.4

func (m *QuoteInfo) GetTitle() string

func (*QuoteInfo) GetType added in v1.0.4

func (m *QuoteInfo) GetType() uint32

func (*QuoteInfo) GetUid added in v1.0.4

func (m *QuoteInfo) GetUid() string

func (*QuoteInfo) GetUpdated added in v1.0.4

func (m *QuoteInfo) GetUpdated() int64

func (*QuoteInfo) ProtoMessage added in v1.0.4

func (*QuoteInfo) ProtoMessage()

func (*QuoteInfo) Reset added in v1.0.4

func (m *QuoteInfo) Reset()

func (*QuoteInfo) String added in v1.0.4

func (m *QuoteInfo) String() string

func (*QuoteInfo) XXX_DiscardUnknown added in v1.0.4

func (m *QuoteInfo) XXX_DiscardUnknown()

func (*QuoteInfo) XXX_Marshal added in v1.0.4

func (m *QuoteInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QuoteInfo) XXX_Merge added in v1.0.4

func (m *QuoteInfo) XXX_Merge(src proto.Message)

func (*QuoteInfo) XXX_Size added in v1.0.4

func (m *QuoteInfo) XXX_Size() int

func (*QuoteInfo) XXX_Unmarshal added in v1.0.4

func (m *QuoteInfo) XXX_Unmarshal(b []byte) error

type RecommendInfo added in v1.0.4

type RecommendInfo struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Id                   uint64   `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Created              int64    `protobuf:"varint,3,opt,name=created,proto3" json:"created,omitempty"`
	Updated              int64    `protobuf:"varint,4,opt,name=updated,proto3" json:"updated,omitempty"`
	Creator              string   `protobuf:"bytes,5,opt,name=creator,proto3" json:"creator,omitempty"`
	Operator             string   `protobuf:"bytes,6,opt,name=operator,proto3" json:"operator,omitempty"`
	Name                 string   `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
	Owner                string   `protobuf:"bytes,8,opt,name=owner,proto3" json:"owner,omitempty"`
	Type                 uint32   `protobuf:"varint,9,opt,name=type,proto3" json:"type,omitempty"`
	Quote                string   `protobuf:"bytes,10,opt,name=quote,proto3" json:"quote,omitempty"`
	Targets              []string `protobuf:"bytes,31,rep,name=targets,proto3" json:"targets,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RecommendInfo) Descriptor added in v1.0.4

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

func (*RecommendInfo) GetCreated added in v1.0.4

func (m *RecommendInfo) GetCreated() int64

func (*RecommendInfo) GetCreator added in v1.0.4

func (m *RecommendInfo) GetCreator() string

func (*RecommendInfo) GetId added in v1.0.4

func (m *RecommendInfo) GetId() uint64

func (*RecommendInfo) GetName added in v1.0.4

func (m *RecommendInfo) GetName() string

func (*RecommendInfo) GetOperator added in v1.0.4

func (m *RecommendInfo) GetOperator() string

func (*RecommendInfo) GetOwner added in v1.0.4

func (m *RecommendInfo) GetOwner() string

func (*RecommendInfo) GetQuote added in v1.1.9

func (m *RecommendInfo) GetQuote() string

func (*RecommendInfo) GetTargets added in v1.0.4

func (m *RecommendInfo) GetTargets() []string

func (*RecommendInfo) GetType added in v1.0.4

func (m *RecommendInfo) GetType() uint32

func (*RecommendInfo) GetUid added in v1.0.4

func (m *RecommendInfo) GetUid() string

func (*RecommendInfo) GetUpdated added in v1.0.4

func (m *RecommendInfo) GetUpdated() int64

func (*RecommendInfo) ProtoMessage added in v1.0.4

func (*RecommendInfo) ProtoMessage()

func (*RecommendInfo) Reset added in v1.0.4

func (m *RecommendInfo) Reset()

func (*RecommendInfo) String added in v1.0.4

func (m *RecommendInfo) String() string

func (*RecommendInfo) XXX_DiscardUnknown added in v1.0.4

func (m *RecommendInfo) XXX_DiscardUnknown()

func (*RecommendInfo) XXX_Marshal added in v1.0.4

func (m *RecommendInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RecommendInfo) XXX_Merge added in v1.0.4

func (m *RecommendInfo) XXX_Merge(src proto.Message)

func (*RecommendInfo) XXX_Size added in v1.0.4

func (m *RecommendInfo) XXX_Size() int

func (*RecommendInfo) XXX_Unmarshal added in v1.0.4

func (m *RecommendInfo) XXX_Unmarshal(b []byte) error

type RecommendService added in v1.0.4

type RecommendService interface {
	AddOne(ctx context.Context, in *ReqRecommendAdd, opts ...client.CallOption) (*ReplyRecommendInfo, error)
	UpdateOne(ctx context.Context, in *ReqRecommendUpdate, opts ...client.CallOption) (*ReplyRecommendInfo, error)
	GetOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyRecommendInfo, error)
	GetList(ctx context.Context, in *RequestPage, opts ...client.CallOption) (*ReplyRecommendList, error)
	RemoveOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyInfo, error)
	GetByFilter(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyRecommendList, error)
	GetStatistic(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyStatistic, error)
	UpdateByFilter(ctx context.Context, in *RequestUpdate, opts ...client.CallOption) (*ReplyInfo, error)
}

func NewRecommendService added in v1.0.4

func NewRecommendService(name string, c client.Client) RecommendService

type ReplyAppInfo added in v1.2.5

type ReplyAppInfo struct {
	Info                 *AppInfo     `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	Status               *ReplyStatus `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyAppInfo) Descriptor added in v1.2.5

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

func (*ReplyAppInfo) GetInfo added in v1.2.5

func (m *ReplyAppInfo) GetInfo() *AppInfo

func (*ReplyAppInfo) GetStatus added in v1.2.5

func (m *ReplyAppInfo) GetStatus() *ReplyStatus

func (*ReplyAppInfo) ProtoMessage added in v1.2.5

func (*ReplyAppInfo) ProtoMessage()

func (*ReplyAppInfo) Reset added in v1.2.5

func (m *ReplyAppInfo) Reset()

func (*ReplyAppInfo) String added in v1.2.5

func (m *ReplyAppInfo) String() string

func (*ReplyAppInfo) XXX_DiscardUnknown added in v1.2.5

func (m *ReplyAppInfo) XXX_DiscardUnknown()

func (*ReplyAppInfo) XXX_Marshal added in v1.2.5

func (m *ReplyAppInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyAppInfo) XXX_Merge added in v1.2.5

func (m *ReplyAppInfo) XXX_Merge(src proto.Message)

func (*ReplyAppInfo) XXX_Size added in v1.2.5

func (m *ReplyAppInfo) XXX_Size() int

func (*ReplyAppInfo) XXX_Unmarshal added in v1.2.5

func (m *ReplyAppInfo) XXX_Unmarshal(b []byte) error

type ReplyAppList added in v1.2.5

type ReplyAppList struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Total                uint64       `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
	PageMax              uint32       `protobuf:"varint,3,opt,name=pageMax,proto3" json:"pageMax,omitempty"`
	PageNow              uint32       `protobuf:"varint,4,opt,name=pageNow,proto3" json:"pageNow,omitempty"`
	List                 []*AppInfo   `protobuf:"bytes,21,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyAppList) Descriptor added in v1.2.5

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

func (*ReplyAppList) GetList added in v1.2.5

func (m *ReplyAppList) GetList() []*AppInfo

func (*ReplyAppList) GetPageMax added in v1.2.5

func (m *ReplyAppList) GetPageMax() uint32

func (*ReplyAppList) GetPageNow added in v1.2.5

func (m *ReplyAppList) GetPageNow() uint32

func (*ReplyAppList) GetStatus added in v1.2.5

func (m *ReplyAppList) GetStatus() *ReplyStatus

func (*ReplyAppList) GetTotal added in v1.2.5

func (m *ReplyAppList) GetTotal() uint64

func (*ReplyAppList) ProtoMessage added in v1.2.5

func (*ReplyAppList) ProtoMessage()

func (*ReplyAppList) Reset added in v1.2.5

func (m *ReplyAppList) Reset()

func (*ReplyAppList) String added in v1.2.5

func (m *ReplyAppList) String() string

func (*ReplyAppList) XXX_DiscardUnknown added in v1.2.5

func (m *ReplyAppList) XXX_DiscardUnknown()

func (*ReplyAppList) XXX_Marshal added in v1.2.5

func (m *ReplyAppList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyAppList) XXX_Merge added in v1.2.5

func (m *ReplyAppList) XXX_Merge(src proto.Message)

func (*ReplyAppList) XXX_Size added in v1.2.5

func (m *ReplyAppList) XXX_Size() int

func (*ReplyAppList) XXX_Unmarshal added in v1.2.5

func (m *ReplyAppList) XXX_Unmarshal(b []byte) error

type ReplyCarouselInfo added in v1.0.4

type ReplyCarouselInfo struct {
	Info                 *CarouselInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	Status               *ReplyStatus  `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*ReplyCarouselInfo) Descriptor added in v1.0.4

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

func (*ReplyCarouselInfo) GetInfo added in v1.0.4

func (m *ReplyCarouselInfo) GetInfo() *CarouselInfo

func (*ReplyCarouselInfo) GetStatus added in v1.0.4

func (m *ReplyCarouselInfo) GetStatus() *ReplyStatus

func (*ReplyCarouselInfo) ProtoMessage added in v1.0.4

func (*ReplyCarouselInfo) ProtoMessage()

func (*ReplyCarouselInfo) Reset added in v1.0.4

func (m *ReplyCarouselInfo) Reset()

func (*ReplyCarouselInfo) String added in v1.0.4

func (m *ReplyCarouselInfo) String() string

func (*ReplyCarouselInfo) XXX_DiscardUnknown added in v1.0.4

func (m *ReplyCarouselInfo) XXX_DiscardUnknown()

func (*ReplyCarouselInfo) XXX_Marshal added in v1.0.4

func (m *ReplyCarouselInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyCarouselInfo) XXX_Merge added in v1.0.4

func (m *ReplyCarouselInfo) XXX_Merge(src proto.Message)

func (*ReplyCarouselInfo) XXX_Size added in v1.0.4

func (m *ReplyCarouselInfo) XXX_Size() int

func (*ReplyCarouselInfo) XXX_Unmarshal added in v1.0.4

func (m *ReplyCarouselInfo) XXX_Unmarshal(b []byte) error

type ReplyCarouselList added in v1.0.4

type ReplyCarouselList struct {
	Status               *ReplyStatus    `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Total                uint64          `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
	PageMax              uint32          `protobuf:"varint,3,opt,name=pageMax,proto3" json:"pageMax,omitempty"`
	PageNow              uint32          `protobuf:"varint,4,opt,name=pageNow,proto3" json:"pageNow,omitempty"`
	List                 []*CarouselInfo `protobuf:"bytes,21,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*ReplyCarouselList) Descriptor added in v1.0.4

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

func (*ReplyCarouselList) GetList added in v1.0.4

func (m *ReplyCarouselList) GetList() []*CarouselInfo

func (*ReplyCarouselList) GetPageMax added in v1.0.4

func (m *ReplyCarouselList) GetPageMax() uint32

func (*ReplyCarouselList) GetPageNow added in v1.0.4

func (m *ReplyCarouselList) GetPageNow() uint32

func (*ReplyCarouselList) GetStatus added in v1.0.4

func (m *ReplyCarouselList) GetStatus() *ReplyStatus

func (*ReplyCarouselList) GetTotal added in v1.0.4

func (m *ReplyCarouselList) GetTotal() uint64

func (*ReplyCarouselList) ProtoMessage added in v1.0.4

func (*ReplyCarouselList) ProtoMessage()

func (*ReplyCarouselList) Reset added in v1.0.4

func (m *ReplyCarouselList) Reset()

func (*ReplyCarouselList) String added in v1.0.4

func (m *ReplyCarouselList) String() string

func (*ReplyCarouselList) XXX_DiscardUnknown added in v1.0.4

func (m *ReplyCarouselList) XXX_DiscardUnknown()

func (*ReplyCarouselList) XXX_Marshal added in v1.0.4

func (m *ReplyCarouselList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyCarouselList) XXX_Merge added in v1.0.4

func (m *ReplyCarouselList) XXX_Merge(src proto.Message)

func (*ReplyCarouselList) XXX_Size added in v1.0.4

func (m *ReplyCarouselList) XXX_Size() int

func (*ReplyCarouselList) XXX_Unmarshal added in v1.0.4

func (m *ReplyCarouselList) XXX_Unmarshal(b []byte) error

type ReplyChannelInfo

type ReplyChannelInfo struct {
	Info                 *ChannelInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	Status               *ReplyStatus `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyChannelInfo) Descriptor

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

func (*ReplyChannelInfo) GetInfo

func (m *ReplyChannelInfo) GetInfo() *ChannelInfo

func (*ReplyChannelInfo) GetStatus

func (m *ReplyChannelInfo) GetStatus() *ReplyStatus

func (*ReplyChannelInfo) ProtoMessage

func (*ReplyChannelInfo) ProtoMessage()

func (*ReplyChannelInfo) Reset

func (m *ReplyChannelInfo) Reset()

func (*ReplyChannelInfo) String

func (m *ReplyChannelInfo) String() string

func (*ReplyChannelInfo) XXX_DiscardUnknown

func (m *ReplyChannelInfo) XXX_DiscardUnknown()

func (*ReplyChannelInfo) XXX_Marshal

func (m *ReplyChannelInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyChannelInfo) XXX_Merge

func (m *ReplyChannelInfo) XXX_Merge(src proto.Message)

func (*ReplyChannelInfo) XXX_Size

func (m *ReplyChannelInfo) XXX_Size() int

func (*ReplyChannelInfo) XXX_Unmarshal

func (m *ReplyChannelInfo) XXX_Unmarshal(b []byte) error

type ReplyChannelList

type ReplyChannelList struct {
	Total                uint64         `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
	PageMax              uint32         `protobuf:"varint,2,opt,name=pageMax,proto3" json:"pageMax,omitempty"`
	PageNow              uint32         `protobuf:"varint,3,opt,name=pageNow,proto3" json:"pageNow,omitempty"`
	List                 []*ChannelInfo `protobuf:"bytes,4,rep,name=list,proto3" json:"list,omitempty"`
	Status               *ReplyStatus   `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ReplyChannelList) Descriptor

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

func (*ReplyChannelList) GetList

func (m *ReplyChannelList) GetList() []*ChannelInfo

func (*ReplyChannelList) GetPageMax

func (m *ReplyChannelList) GetPageMax() uint32

func (*ReplyChannelList) GetPageNow

func (m *ReplyChannelList) GetPageNow() uint32

func (*ReplyChannelList) GetStatus

func (m *ReplyChannelList) GetStatus() *ReplyStatus

func (*ReplyChannelList) GetTotal

func (m *ReplyChannelList) GetTotal() uint64

func (*ReplyChannelList) ProtoMessage

func (*ReplyChannelList) ProtoMessage()

func (*ReplyChannelList) Reset

func (m *ReplyChannelList) Reset()

func (*ReplyChannelList) String

func (m *ReplyChannelList) String() string

func (*ReplyChannelList) XXX_DiscardUnknown

func (m *ReplyChannelList) XXX_DiscardUnknown()

func (*ReplyChannelList) XXX_Marshal

func (m *ReplyChannelList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyChannelList) XXX_Merge

func (m *ReplyChannelList) XXX_Merge(src proto.Message)

func (*ReplyChannelList) XXX_Size

func (m *ReplyChannelList) XXX_Size() int

func (*ReplyChannelList) XXX_Unmarshal

func (m *ReplyChannelList) XXX_Unmarshal(b []byte) error

type ReplyHolidayInfo added in v1.1.1

type ReplyHolidayInfo struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Info                 *HolidayInfo `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyHolidayInfo) Descriptor added in v1.1.1

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

func (*ReplyHolidayInfo) GetInfo added in v1.1.1

func (m *ReplyHolidayInfo) GetInfo() *HolidayInfo

func (*ReplyHolidayInfo) GetStatus added in v1.1.1

func (m *ReplyHolidayInfo) GetStatus() *ReplyStatus

func (*ReplyHolidayInfo) ProtoMessage added in v1.1.1

func (*ReplyHolidayInfo) ProtoMessage()

func (*ReplyHolidayInfo) Reset added in v1.1.1

func (m *ReplyHolidayInfo) Reset()

func (*ReplyHolidayInfo) String added in v1.1.1

func (m *ReplyHolidayInfo) String() string

func (*ReplyHolidayInfo) XXX_DiscardUnknown added in v1.1.1

func (m *ReplyHolidayInfo) XXX_DiscardUnknown()

func (*ReplyHolidayInfo) XXX_Marshal added in v1.1.1

func (m *ReplyHolidayInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyHolidayInfo) XXX_Merge added in v1.1.1

func (m *ReplyHolidayInfo) XXX_Merge(src proto.Message)

func (*ReplyHolidayInfo) XXX_Size added in v1.1.1

func (m *ReplyHolidayInfo) XXX_Size() int

func (*ReplyHolidayInfo) XXX_Unmarshal added in v1.1.1

func (m *ReplyHolidayInfo) XXX_Unmarshal(b []byte) error

type ReplyHolidayList added in v1.1.1

type ReplyHolidayList struct {
	Status               *ReplyStatus   `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Total                uint32         `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
	Pages                uint32         `protobuf:"varint,3,opt,name=pages,proto3" json:"pages,omitempty"`
	Page                 uint32         `protobuf:"varint,4,opt,name=page,proto3" json:"page,omitempty"`
	Number               uint32         `protobuf:"varint,5,opt,name=number,proto3" json:"number,omitempty"`
	List                 []*HolidayInfo `protobuf:"bytes,16,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ReplyHolidayList) Descriptor added in v1.1.1

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

func (*ReplyHolidayList) GetList added in v1.1.1

func (m *ReplyHolidayList) GetList() []*HolidayInfo

func (*ReplyHolidayList) GetNumber added in v1.1.1

func (m *ReplyHolidayList) GetNumber() uint32

func (*ReplyHolidayList) GetPage added in v1.1.1

func (m *ReplyHolidayList) GetPage() uint32

func (*ReplyHolidayList) GetPages added in v1.1.1

func (m *ReplyHolidayList) GetPages() uint32

func (*ReplyHolidayList) GetStatus added in v1.1.1

func (m *ReplyHolidayList) GetStatus() *ReplyStatus

func (*ReplyHolidayList) GetTotal added in v1.1.1

func (m *ReplyHolidayList) GetTotal() uint32

func (*ReplyHolidayList) ProtoMessage added in v1.1.1

func (*ReplyHolidayList) ProtoMessage()

func (*ReplyHolidayList) Reset added in v1.1.1

func (m *ReplyHolidayList) Reset()

func (*ReplyHolidayList) String added in v1.1.1

func (m *ReplyHolidayList) String() string

func (*ReplyHolidayList) XXX_DiscardUnknown added in v1.1.1

func (m *ReplyHolidayList) XXX_DiscardUnknown()

func (*ReplyHolidayList) XXX_Marshal added in v1.1.1

func (m *ReplyHolidayList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyHolidayList) XXX_Merge added in v1.1.1

func (m *ReplyHolidayList) XXX_Merge(src proto.Message)

func (*ReplyHolidayList) XXX_Size added in v1.1.1

func (m *ReplyHolidayList) XXX_Size() int

func (*ReplyHolidayList) XXX_Unmarshal added in v1.1.1

func (m *ReplyHolidayList) XXX_Unmarshal(b []byte) error

type ReplyHonorInfo added in v1.2.0

type ReplyHonorInfo struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Info                 *HonorInfo   `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyHonorInfo) Descriptor added in v1.2.0

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

func (*ReplyHonorInfo) GetInfo added in v1.2.0

func (m *ReplyHonorInfo) GetInfo() *HonorInfo

func (*ReplyHonorInfo) GetStatus added in v1.2.0

func (m *ReplyHonorInfo) GetStatus() *ReplyStatus

func (*ReplyHonorInfo) ProtoMessage added in v1.2.0

func (*ReplyHonorInfo) ProtoMessage()

func (*ReplyHonorInfo) Reset added in v1.2.0

func (m *ReplyHonorInfo) Reset()

func (*ReplyHonorInfo) String added in v1.2.0

func (m *ReplyHonorInfo) String() string

func (*ReplyHonorInfo) XXX_DiscardUnknown added in v1.2.0

func (m *ReplyHonorInfo) XXX_DiscardUnknown()

func (*ReplyHonorInfo) XXX_Marshal added in v1.2.0

func (m *ReplyHonorInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyHonorInfo) XXX_Merge added in v1.2.0

func (m *ReplyHonorInfo) XXX_Merge(src proto.Message)

func (*ReplyHonorInfo) XXX_Size added in v1.2.0

func (m *ReplyHonorInfo) XXX_Size() int

func (*ReplyHonorInfo) XXX_Unmarshal added in v1.2.0

func (m *ReplyHonorInfo) XXX_Unmarshal(b []byte) error

type ReplyHonorList added in v1.2.0

type ReplyHonorList struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Total                uint32       `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
	Pages                uint32       `protobuf:"varint,3,opt,name=pages,proto3" json:"pages,omitempty"`
	Page                 uint32       `protobuf:"varint,4,opt,name=page,proto3" json:"page,omitempty"`
	Number               uint32       `protobuf:"varint,5,opt,name=number,proto3" json:"number,omitempty"`
	List                 []*HonorInfo `protobuf:"bytes,16,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyHonorList) Descriptor added in v1.2.0

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

func (*ReplyHonorList) GetList added in v1.2.0

func (m *ReplyHonorList) GetList() []*HonorInfo

func (*ReplyHonorList) GetNumber added in v1.2.0

func (m *ReplyHonorList) GetNumber() uint32

func (*ReplyHonorList) GetPage added in v1.2.0

func (m *ReplyHonorList) GetPage() uint32

func (*ReplyHonorList) GetPages added in v1.2.0

func (m *ReplyHonorList) GetPages() uint32

func (*ReplyHonorList) GetStatus added in v1.2.0

func (m *ReplyHonorList) GetStatus() *ReplyStatus

func (*ReplyHonorList) GetTotal added in v1.2.0

func (m *ReplyHonorList) GetTotal() uint32

func (*ReplyHonorList) ProtoMessage added in v1.2.0

func (*ReplyHonorList) ProtoMessage()

func (*ReplyHonorList) Reset added in v1.2.0

func (m *ReplyHonorList) Reset()

func (*ReplyHonorList) String added in v1.2.0

func (m *ReplyHonorList) String() string

func (*ReplyHonorList) XXX_DiscardUnknown added in v1.2.0

func (m *ReplyHonorList) XXX_DiscardUnknown()

func (*ReplyHonorList) XXX_Marshal added in v1.2.0

func (m *ReplyHonorList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyHonorList) XXX_Merge added in v1.2.0

func (m *ReplyHonorList) XXX_Merge(src proto.Message)

func (*ReplyHonorList) XXX_Size added in v1.2.0

func (m *ReplyHonorList) XXX_Size() int

func (*ReplyHonorList) XXX_Unmarshal added in v1.2.0

func (m *ReplyHonorList) XXX_Unmarshal(b []byte) error

type ReplyInfo

type ReplyInfo struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Uid                  string       `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyInfo) Descriptor

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

func (*ReplyInfo) GetStatus

func (m *ReplyInfo) GetStatus() *ReplyStatus

func (*ReplyInfo) GetUid

func (m *ReplyInfo) GetUid() string

func (*ReplyInfo) ProtoMessage

func (*ReplyInfo) ProtoMessage()

func (*ReplyInfo) Reset

func (m *ReplyInfo) Reset()

func (*ReplyInfo) String

func (m *ReplyInfo) String() string

func (*ReplyInfo) XXX_DiscardUnknown

func (m *ReplyInfo) XXX_DiscardUnknown()

func (*ReplyInfo) XXX_Marshal

func (m *ReplyInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyInfo) XXX_Merge

func (m *ReplyInfo) XXX_Merge(src proto.Message)

func (*ReplyInfo) XXX_Size

func (m *ReplyInfo) XXX_Size() int

func (*ReplyInfo) XXX_Unmarshal

func (m *ReplyInfo) XXX_Unmarshal(b []byte) error

type ReplyKMSInfo added in v1.3.0

type ReplyKMSInfo struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Info                 *KMSInfo     `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyKMSInfo) Descriptor added in v1.3.0

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

func (*ReplyKMSInfo) GetInfo added in v1.3.0

func (m *ReplyKMSInfo) GetInfo() *KMSInfo

func (*ReplyKMSInfo) GetStatus added in v1.3.0

func (m *ReplyKMSInfo) GetStatus() *ReplyStatus

func (*ReplyKMSInfo) ProtoMessage added in v1.3.0

func (*ReplyKMSInfo) ProtoMessage()

func (*ReplyKMSInfo) Reset added in v1.3.0

func (m *ReplyKMSInfo) Reset()

func (*ReplyKMSInfo) String added in v1.3.0

func (m *ReplyKMSInfo) String() string

func (*ReplyKMSInfo) XXX_DiscardUnknown added in v1.3.0

func (m *ReplyKMSInfo) XXX_DiscardUnknown()

func (*ReplyKMSInfo) XXX_Marshal added in v1.3.0

func (m *ReplyKMSInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyKMSInfo) XXX_Merge added in v1.3.0

func (m *ReplyKMSInfo) XXX_Merge(src proto.Message)

func (*ReplyKMSInfo) XXX_Size added in v1.3.0

func (m *ReplyKMSInfo) XXX_Size() int

func (*ReplyKMSInfo) XXX_Unmarshal added in v1.3.0

func (m *ReplyKMSInfo) XXX_Unmarshal(b []byte) error

type ReplyKMSList added in v1.3.0

type ReplyKMSList struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Total                uint32       `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
	Pages                uint32       `protobuf:"varint,3,opt,name=pages,proto3" json:"pages,omitempty"`
	Page                 uint32       `protobuf:"varint,4,opt,name=page,proto3" json:"page,omitempty"`
	Number               uint32       `protobuf:"varint,5,opt,name=number,proto3" json:"number,omitempty"`
	List                 []*KMSInfo   `protobuf:"bytes,16,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyKMSList) Descriptor added in v1.3.0

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

func (*ReplyKMSList) GetList added in v1.3.0

func (m *ReplyKMSList) GetList() []*KMSInfo

func (*ReplyKMSList) GetNumber added in v1.3.0

func (m *ReplyKMSList) GetNumber() uint32

func (*ReplyKMSList) GetPage added in v1.3.0

func (m *ReplyKMSList) GetPage() uint32

func (*ReplyKMSList) GetPages added in v1.3.0

func (m *ReplyKMSList) GetPages() uint32

func (*ReplyKMSList) GetStatus added in v1.3.0

func (m *ReplyKMSList) GetStatus() *ReplyStatus

func (*ReplyKMSList) GetTotal added in v1.3.0

func (m *ReplyKMSList) GetTotal() uint32

func (*ReplyKMSList) ProtoMessage added in v1.3.0

func (*ReplyKMSList) ProtoMessage()

func (*ReplyKMSList) Reset added in v1.3.0

func (m *ReplyKMSList) Reset()

func (*ReplyKMSList) String added in v1.3.0

func (m *ReplyKMSList) String() string

func (*ReplyKMSList) XXX_DiscardUnknown added in v1.3.0

func (m *ReplyKMSList) XXX_DiscardUnknown()

func (*ReplyKMSList) XXX_Marshal added in v1.3.0

func (m *ReplyKMSList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyKMSList) XXX_Merge added in v1.3.0

func (m *ReplyKMSList) XXX_Merge(src proto.Message)

func (*ReplyKMSList) XXX_Size added in v1.3.0

func (m *ReplyKMSList) XXX_Size() int

func (*ReplyKMSList) XXX_Unmarshal added in v1.3.0

func (m *ReplyKMSList) XXX_Unmarshal(b []byte) error

type ReplyLinkInfo added in v1.4.0

type ReplyLinkInfo struct {
	Info                 *LinkInfo    `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	Status               *ReplyStatus `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyLinkInfo) Descriptor added in v1.4.0

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

func (*ReplyLinkInfo) GetInfo added in v1.4.0

func (m *ReplyLinkInfo) GetInfo() *LinkInfo

func (*ReplyLinkInfo) GetStatus added in v1.4.0

func (m *ReplyLinkInfo) GetStatus() *ReplyStatus

func (*ReplyLinkInfo) ProtoMessage added in v1.4.0

func (*ReplyLinkInfo) ProtoMessage()

func (*ReplyLinkInfo) Reset added in v1.4.0

func (m *ReplyLinkInfo) Reset()

func (*ReplyLinkInfo) String added in v1.4.0

func (m *ReplyLinkInfo) String() string

func (*ReplyLinkInfo) XXX_DiscardUnknown added in v1.4.0

func (m *ReplyLinkInfo) XXX_DiscardUnknown()

func (*ReplyLinkInfo) XXX_Marshal added in v1.4.0

func (m *ReplyLinkInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyLinkInfo) XXX_Merge added in v1.4.0

func (m *ReplyLinkInfo) XXX_Merge(src proto.Message)

func (*ReplyLinkInfo) XXX_Size added in v1.4.0

func (m *ReplyLinkInfo) XXX_Size() int

func (*ReplyLinkInfo) XXX_Unmarshal added in v1.4.0

func (m *ReplyLinkInfo) XXX_Unmarshal(b []byte) error
type ReplyLinkList struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Total                uint64       `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
	PageMax              uint32       `protobuf:"varint,3,opt,name=pageMax,proto3" json:"pageMax,omitempty"`
	PageNow              uint32       `protobuf:"varint,4,opt,name=pageNow,proto3" json:"pageNow,omitempty"`
	List                 []*LinkInfo  `protobuf:"bytes,21,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyLinkList) Descriptor added in v1.4.0

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

func (*ReplyLinkList) GetList added in v1.4.0

func (m *ReplyLinkList) GetList() []*LinkInfo

func (*ReplyLinkList) GetPageMax added in v1.4.0

func (m *ReplyLinkList) GetPageMax() uint32

func (*ReplyLinkList) GetPageNow added in v1.4.0

func (m *ReplyLinkList) GetPageNow() uint32

func (*ReplyLinkList) GetStatus added in v1.4.0

func (m *ReplyLinkList) GetStatus() *ReplyStatus

func (*ReplyLinkList) GetTotal added in v1.4.0

func (m *ReplyLinkList) GetTotal() uint64

func (*ReplyLinkList) ProtoMessage added in v1.4.0

func (*ReplyLinkList) ProtoMessage()

func (*ReplyLinkList) Reset added in v1.4.0

func (m *ReplyLinkList) Reset()

func (*ReplyLinkList) String added in v1.4.0

func (m *ReplyLinkList) String() string

func (*ReplyLinkList) XXX_DiscardUnknown added in v1.4.0

func (m *ReplyLinkList) XXX_DiscardUnknown()

func (*ReplyLinkList) XXX_Marshal added in v1.4.0

func (m *ReplyLinkList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyLinkList) XXX_Merge added in v1.4.0

func (m *ReplyLinkList) XXX_Merge(src proto.Message)

func (*ReplyLinkList) XXX_Size added in v1.4.0

func (m *ReplyLinkList) XXX_Size() int

func (*ReplyLinkList) XXX_Unmarshal added in v1.4.0

func (m *ReplyLinkList) XXX_Unmarshal(b []byte) error

type ReplyMotionInfo added in v1.0.2

type ReplyMotionInfo struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Info                 *MotionInfo  `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyMotionInfo) Descriptor added in v1.0.2

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

func (*ReplyMotionInfo) GetInfo added in v1.0.2

func (m *ReplyMotionInfo) GetInfo() *MotionInfo

func (*ReplyMotionInfo) GetStatus added in v1.0.2

func (m *ReplyMotionInfo) GetStatus() *ReplyStatus

func (*ReplyMotionInfo) ProtoMessage added in v1.0.2

func (*ReplyMotionInfo) ProtoMessage()

func (*ReplyMotionInfo) Reset added in v1.0.2

func (m *ReplyMotionInfo) Reset()

func (*ReplyMotionInfo) String added in v1.0.2

func (m *ReplyMotionInfo) String() string

func (*ReplyMotionInfo) XXX_DiscardUnknown added in v1.0.2

func (m *ReplyMotionInfo) XXX_DiscardUnknown()

func (*ReplyMotionInfo) XXX_Marshal added in v1.0.2

func (m *ReplyMotionInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyMotionInfo) XXX_Merge added in v1.0.2

func (m *ReplyMotionInfo) XXX_Merge(src proto.Message)

func (*ReplyMotionInfo) XXX_Size added in v1.0.2

func (m *ReplyMotionInfo) XXX_Size() int

func (*ReplyMotionInfo) XXX_Unmarshal added in v1.0.2

func (m *ReplyMotionInfo) XXX_Unmarshal(b []byte) error

type ReplyMotionList added in v1.0.2

type ReplyMotionList struct {
	Status               *ReplyStatus  `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Total                uint32        `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
	Pages                uint32        `protobuf:"varint,3,opt,name=pages,proto3" json:"pages,omitempty"`
	Page                 uint32        `protobuf:"varint,4,opt,name=page,proto3" json:"page,omitempty"`
	Number               uint32        `protobuf:"varint,5,opt,name=number,proto3" json:"number,omitempty"`
	List                 []*MotionInfo `protobuf:"bytes,16,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*ReplyMotionList) Descriptor added in v1.0.2

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

func (*ReplyMotionList) GetList added in v1.0.2

func (m *ReplyMotionList) GetList() []*MotionInfo

func (*ReplyMotionList) GetNumber added in v1.0.2

func (m *ReplyMotionList) GetNumber() uint32

func (*ReplyMotionList) GetPage added in v1.0.2

func (m *ReplyMotionList) GetPage() uint32

func (*ReplyMotionList) GetPages added in v1.0.2

func (m *ReplyMotionList) GetPages() uint32

func (*ReplyMotionList) GetStatus added in v1.0.2

func (m *ReplyMotionList) GetStatus() *ReplyStatus

func (*ReplyMotionList) GetTotal added in v1.0.2

func (m *ReplyMotionList) GetTotal() uint32

func (*ReplyMotionList) ProtoMessage added in v1.0.2

func (*ReplyMotionList) ProtoMessage()

func (*ReplyMotionList) Reset added in v1.0.2

func (m *ReplyMotionList) Reset()

func (*ReplyMotionList) String added in v1.0.2

func (m *ReplyMotionList) String() string

func (*ReplyMotionList) XXX_DiscardUnknown added in v1.0.2

func (m *ReplyMotionList) XXX_DiscardUnknown()

func (*ReplyMotionList) XXX_Marshal added in v1.0.2

func (m *ReplyMotionList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyMotionList) XXX_Merge added in v1.0.2

func (m *ReplyMotionList) XXX_Merge(src proto.Message)

func (*ReplyMotionList) XXX_Size added in v1.0.2

func (m *ReplyMotionList) XXX_Size() int

func (*ReplyMotionList) XXX_Unmarshal added in v1.0.2

func (m *ReplyMotionList) XXX_Unmarshal(b []byte) error

type ReplyNetflowInfo added in v1.1.7

type ReplyNetflowInfo struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Info                 *NetflowInfo `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyNetflowInfo) Descriptor added in v1.1.7

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

func (*ReplyNetflowInfo) GetInfo added in v1.1.7

func (m *ReplyNetflowInfo) GetInfo() *NetflowInfo

func (*ReplyNetflowInfo) GetStatus added in v1.1.7

func (m *ReplyNetflowInfo) GetStatus() *ReplyStatus

func (*ReplyNetflowInfo) ProtoMessage added in v1.1.7

func (*ReplyNetflowInfo) ProtoMessage()

func (*ReplyNetflowInfo) Reset added in v1.1.7

func (m *ReplyNetflowInfo) Reset()

func (*ReplyNetflowInfo) String added in v1.1.7

func (m *ReplyNetflowInfo) String() string

func (*ReplyNetflowInfo) XXX_DiscardUnknown added in v1.1.7

func (m *ReplyNetflowInfo) XXX_DiscardUnknown()

func (*ReplyNetflowInfo) XXX_Marshal added in v1.1.7

func (m *ReplyNetflowInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyNetflowInfo) XXX_Merge added in v1.1.7

func (m *ReplyNetflowInfo) XXX_Merge(src proto.Message)

func (*ReplyNetflowInfo) XXX_Size added in v1.1.7

func (m *ReplyNetflowInfo) XXX_Size() int

func (*ReplyNetflowInfo) XXX_Unmarshal added in v1.1.7

func (m *ReplyNetflowInfo) XXX_Unmarshal(b []byte) error

type ReplyNetflowList added in v1.1.7

type ReplyNetflowList struct {
	Status               *ReplyStatus   `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Total                uint32         `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
	Pages                uint32         `protobuf:"varint,3,opt,name=pages,proto3" json:"pages,omitempty"`
	Page                 uint32         `protobuf:"varint,4,opt,name=page,proto3" json:"page,omitempty"`
	Number               uint32         `protobuf:"varint,5,opt,name=number,proto3" json:"number,omitempty"`
	List                 []*NetflowInfo `protobuf:"bytes,16,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ReplyNetflowList) Descriptor added in v1.1.7

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

func (*ReplyNetflowList) GetList added in v1.1.7

func (m *ReplyNetflowList) GetList() []*NetflowInfo

func (*ReplyNetflowList) GetNumber added in v1.1.7

func (m *ReplyNetflowList) GetNumber() uint32

func (*ReplyNetflowList) GetPage added in v1.1.7

func (m *ReplyNetflowList) GetPage() uint32

func (*ReplyNetflowList) GetPages added in v1.1.7

func (m *ReplyNetflowList) GetPages() uint32

func (*ReplyNetflowList) GetStatus added in v1.1.7

func (m *ReplyNetflowList) GetStatus() *ReplyStatus

func (*ReplyNetflowList) GetTotal added in v1.1.7

func (m *ReplyNetflowList) GetTotal() uint32

func (*ReplyNetflowList) ProtoMessage added in v1.1.7

func (*ReplyNetflowList) ProtoMessage()

func (*ReplyNetflowList) Reset added in v1.1.7

func (m *ReplyNetflowList) Reset()

func (*ReplyNetflowList) String added in v1.1.7

func (m *ReplyNetflowList) String() string

func (*ReplyNetflowList) XXX_DiscardUnknown added in v1.1.7

func (m *ReplyNetflowList) XXX_DiscardUnknown()

func (*ReplyNetflowList) XXX_Marshal added in v1.1.7

func (m *ReplyNetflowList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyNetflowList) XXX_Merge added in v1.1.7

func (m *ReplyNetflowList) XXX_Merge(src proto.Message)

func (*ReplyNetflowList) XXX_Size added in v1.1.7

func (m *ReplyNetflowList) XXX_Size() int

func (*ReplyNetflowList) XXX_Unmarshal added in v1.1.7

func (m *ReplyNetflowList) XXX_Unmarshal(b []byte) error

type ReplyPartnerInfo

type ReplyPartnerInfo struct {
	Info                 *PartnerInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	Status               *ReplyStatus `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyPartnerInfo) Descriptor

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

func (*ReplyPartnerInfo) GetInfo

func (m *ReplyPartnerInfo) GetInfo() *PartnerInfo

func (*ReplyPartnerInfo) GetStatus

func (m *ReplyPartnerInfo) GetStatus() *ReplyStatus

func (*ReplyPartnerInfo) ProtoMessage

func (*ReplyPartnerInfo) ProtoMessage()

func (*ReplyPartnerInfo) Reset

func (m *ReplyPartnerInfo) Reset()

func (*ReplyPartnerInfo) String

func (m *ReplyPartnerInfo) String() string

func (*ReplyPartnerInfo) XXX_DiscardUnknown

func (m *ReplyPartnerInfo) XXX_DiscardUnknown()

func (*ReplyPartnerInfo) XXX_Marshal

func (m *ReplyPartnerInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyPartnerInfo) XXX_Merge

func (m *ReplyPartnerInfo) XXX_Merge(src proto.Message)

func (*ReplyPartnerInfo) XXX_Size

func (m *ReplyPartnerInfo) XXX_Size() int

func (*ReplyPartnerInfo) XXX_Unmarshal

func (m *ReplyPartnerInfo) XXX_Unmarshal(b []byte) error

type ReplyPartnerList

type ReplyPartnerList struct {
	Total                uint64         `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
	PageMax              uint32         `protobuf:"varint,2,opt,name=pageMax,proto3" json:"pageMax,omitempty"`
	PageNow              uint32         `protobuf:"varint,3,opt,name=pageNow,proto3" json:"pageNow,omitempty"`
	List                 []*PartnerInfo `protobuf:"bytes,4,rep,name=list,proto3" json:"list,omitempty"`
	Status               *ReplyStatus   `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ReplyPartnerList) Descriptor

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

func (*ReplyPartnerList) GetList

func (m *ReplyPartnerList) GetList() []*PartnerInfo

func (*ReplyPartnerList) GetPageMax

func (m *ReplyPartnerList) GetPageMax() uint32

func (*ReplyPartnerList) GetPageNow

func (m *ReplyPartnerList) GetPageNow() uint32

func (*ReplyPartnerList) GetStatus

func (m *ReplyPartnerList) GetStatus() *ReplyStatus

func (*ReplyPartnerList) GetTotal

func (m *ReplyPartnerList) GetTotal() uint64

func (*ReplyPartnerList) ProtoMessage

func (*ReplyPartnerList) ProtoMessage()

func (*ReplyPartnerList) Reset

func (m *ReplyPartnerList) Reset()

func (*ReplyPartnerList) String

func (m *ReplyPartnerList) String() string

func (*ReplyPartnerList) XXX_DiscardUnknown

func (m *ReplyPartnerList) XXX_DiscardUnknown()

func (*ReplyPartnerList) XXX_Marshal

func (m *ReplyPartnerList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyPartnerList) XXX_Merge

func (m *ReplyPartnerList) XXX_Merge(src proto.Message)

func (*ReplyPartnerList) XXX_Size

func (m *ReplyPartnerList) XXX_Size() int

func (*ReplyPartnerList) XXX_Unmarshal

func (m *ReplyPartnerList) XXX_Unmarshal(b []byte) error

type ReplyPartnerSecret

type ReplyPartnerSecret struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Uid                  string       `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
	Secret               string       `protobuf:"bytes,3,opt,name=secret,proto3" json:"secret,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyPartnerSecret) Descriptor

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

func (*ReplyPartnerSecret) GetSecret

func (m *ReplyPartnerSecret) GetSecret() string

func (*ReplyPartnerSecret) GetStatus

func (m *ReplyPartnerSecret) GetStatus() *ReplyStatus

func (*ReplyPartnerSecret) GetUid

func (m *ReplyPartnerSecret) GetUid() string

func (*ReplyPartnerSecret) ProtoMessage

func (*ReplyPartnerSecret) ProtoMessage()

func (*ReplyPartnerSecret) Reset

func (m *ReplyPartnerSecret) Reset()

func (*ReplyPartnerSecret) String

func (m *ReplyPartnerSecret) String() string

func (*ReplyPartnerSecret) XXX_DiscardUnknown

func (m *ReplyPartnerSecret) XXX_DiscardUnknown()

func (*ReplyPartnerSecret) XXX_Marshal

func (m *ReplyPartnerSecret) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyPartnerSecret) XXX_Merge

func (m *ReplyPartnerSecret) XXX_Merge(src proto.Message)

func (*ReplyPartnerSecret) XXX_Size

func (m *ReplyPartnerSecret) XXX_Size() int

func (*ReplyPartnerSecret) XXX_Unmarshal

func (m *ReplyPartnerSecret) XXX_Unmarshal(b []byte) error

type ReplyRecommendInfo added in v1.0.4

type ReplyRecommendInfo struct {
	Info                 *RecommendInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	Status               *ReplyStatus   `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ReplyRecommendInfo) Descriptor added in v1.0.4

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

func (*ReplyRecommendInfo) GetInfo added in v1.0.4

func (m *ReplyRecommendInfo) GetInfo() *RecommendInfo

func (*ReplyRecommendInfo) GetStatus added in v1.0.4

func (m *ReplyRecommendInfo) GetStatus() *ReplyStatus

func (*ReplyRecommendInfo) ProtoMessage added in v1.0.4

func (*ReplyRecommendInfo) ProtoMessage()

func (*ReplyRecommendInfo) Reset added in v1.0.4

func (m *ReplyRecommendInfo) Reset()

func (*ReplyRecommendInfo) String added in v1.0.4

func (m *ReplyRecommendInfo) String() string

func (*ReplyRecommendInfo) XXX_DiscardUnknown added in v1.0.4

func (m *ReplyRecommendInfo) XXX_DiscardUnknown()

func (*ReplyRecommendInfo) XXX_Marshal added in v1.0.4

func (m *ReplyRecommendInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyRecommendInfo) XXX_Merge added in v1.0.4

func (m *ReplyRecommendInfo) XXX_Merge(src proto.Message)

func (*ReplyRecommendInfo) XXX_Size added in v1.0.4

func (m *ReplyRecommendInfo) XXX_Size() int

func (*ReplyRecommendInfo) XXX_Unmarshal added in v1.0.4

func (m *ReplyRecommendInfo) XXX_Unmarshal(b []byte) error

type ReplyRecommendList added in v1.0.4

type ReplyRecommendList struct {
	Status               *ReplyStatus     `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Total                uint64           `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
	PageMax              uint32           `protobuf:"varint,3,opt,name=pageMax,proto3" json:"pageMax,omitempty"`
	PageNow              uint32           `protobuf:"varint,4,opt,name=pageNow,proto3" json:"pageNow,omitempty"`
	List                 []*RecommendInfo `protobuf:"bytes,21,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*ReplyRecommendList) Descriptor added in v1.0.4

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

func (*ReplyRecommendList) GetList added in v1.0.4

func (m *ReplyRecommendList) GetList() []*RecommendInfo

func (*ReplyRecommendList) GetPageMax added in v1.0.4

func (m *ReplyRecommendList) GetPageMax() uint32

func (*ReplyRecommendList) GetPageNow added in v1.0.4

func (m *ReplyRecommendList) GetPageNow() uint32

func (*ReplyRecommendList) GetStatus added in v1.0.4

func (m *ReplyRecommendList) GetStatus() *ReplyStatus

func (*ReplyRecommendList) GetTotal added in v1.0.4

func (m *ReplyRecommendList) GetTotal() uint64

func (*ReplyRecommendList) ProtoMessage added in v1.0.4

func (*ReplyRecommendList) ProtoMessage()

func (*ReplyRecommendList) Reset added in v1.0.4

func (m *ReplyRecommendList) Reset()

func (*ReplyRecommendList) String added in v1.0.4

func (m *ReplyRecommendList) String() string

func (*ReplyRecommendList) XXX_DiscardUnknown added in v1.0.4

func (m *ReplyRecommendList) XXX_DiscardUnknown()

func (*ReplyRecommendList) XXX_Marshal added in v1.0.4

func (m *ReplyRecommendList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyRecommendList) XXX_Merge added in v1.0.4

func (m *ReplyRecommendList) XXX_Merge(src proto.Message)

func (*ReplyRecommendList) XXX_Size added in v1.0.4

func (m *ReplyRecommendList) XXX_Size() int

func (*ReplyRecommendList) XXX_Unmarshal added in v1.0.4

func (m *ReplyRecommendList) XXX_Unmarshal(b []byte) error

type ReplyReserveInfo added in v1.4.0

type ReplyReserveInfo struct {
	Info                 *ReserveInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	Status               *ReplyStatus `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyReserveInfo) Descriptor added in v1.4.0

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

func (*ReplyReserveInfo) GetInfo added in v1.4.0

func (m *ReplyReserveInfo) GetInfo() *ReserveInfo

func (*ReplyReserveInfo) GetStatus added in v1.4.0

func (m *ReplyReserveInfo) GetStatus() *ReplyStatus

func (*ReplyReserveInfo) ProtoMessage added in v1.4.0

func (*ReplyReserveInfo) ProtoMessage()

func (*ReplyReserveInfo) Reset added in v1.4.0

func (m *ReplyReserveInfo) Reset()

func (*ReplyReserveInfo) String added in v1.4.0

func (m *ReplyReserveInfo) String() string

func (*ReplyReserveInfo) XXX_DiscardUnknown added in v1.4.0

func (m *ReplyReserveInfo) XXX_DiscardUnknown()

func (*ReplyReserveInfo) XXX_Marshal added in v1.4.0

func (m *ReplyReserveInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyReserveInfo) XXX_Merge added in v1.4.0

func (m *ReplyReserveInfo) XXX_Merge(src proto.Message)

func (*ReplyReserveInfo) XXX_Size added in v1.4.0

func (m *ReplyReserveInfo) XXX_Size() int

func (*ReplyReserveInfo) XXX_Unmarshal added in v1.4.0

func (m *ReplyReserveInfo) XXX_Unmarshal(b []byte) error

type ReplyReserveList added in v1.4.0

type ReplyReserveList struct {
	Status               *ReplyStatus   `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Total                uint64         `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
	PageMax              uint32         `protobuf:"varint,3,opt,name=pageMax,proto3" json:"pageMax,omitempty"`
	PageNow              uint32         `protobuf:"varint,4,opt,name=pageNow,proto3" json:"pageNow,omitempty"`
	List                 []*ReserveInfo `protobuf:"bytes,21,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ReplyReserveList) Descriptor added in v1.4.0

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

func (*ReplyReserveList) GetList added in v1.4.0

func (m *ReplyReserveList) GetList() []*ReserveInfo

func (*ReplyReserveList) GetPageMax added in v1.4.0

func (m *ReplyReserveList) GetPageMax() uint32

func (*ReplyReserveList) GetPageNow added in v1.4.0

func (m *ReplyReserveList) GetPageNow() uint32

func (*ReplyReserveList) GetStatus added in v1.4.0

func (m *ReplyReserveList) GetStatus() *ReplyStatus

func (*ReplyReserveList) GetTotal added in v1.4.0

func (m *ReplyReserveList) GetTotal() uint64

func (*ReplyReserveList) ProtoMessage added in v1.4.0

func (*ReplyReserveList) ProtoMessage()

func (*ReplyReserveList) Reset added in v1.4.0

func (m *ReplyReserveList) Reset()

func (*ReplyReserveList) String added in v1.4.0

func (m *ReplyReserveList) String() string

func (*ReplyReserveList) XXX_DiscardUnknown added in v1.4.0

func (m *ReplyReserveList) XXX_DiscardUnknown()

func (*ReplyReserveList) XXX_Marshal added in v1.4.0

func (m *ReplyReserveList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyReserveList) XXX_Merge added in v1.4.0

func (m *ReplyReserveList) XXX_Merge(src proto.Message)

func (*ReplyReserveList) XXX_Size added in v1.4.0

func (m *ReplyReserveList) XXX_Size() int

func (*ReplyReserveList) XXX_Unmarshal added in v1.4.0

func (m *ReplyReserveList) XXX_Unmarshal(b []byte) error

type ReplyScheduleInfo added in v1.1.0

type ReplyScheduleInfo struct {
	Status               *ReplyStatus  `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Info                 *ScheduleInfo `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*ReplyScheduleInfo) Descriptor added in v1.1.0

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

func (*ReplyScheduleInfo) GetInfo added in v1.1.0

func (m *ReplyScheduleInfo) GetInfo() *ScheduleInfo

func (*ReplyScheduleInfo) GetStatus added in v1.1.0

func (m *ReplyScheduleInfo) GetStatus() *ReplyStatus

func (*ReplyScheduleInfo) ProtoMessage added in v1.1.0

func (*ReplyScheduleInfo) ProtoMessage()

func (*ReplyScheduleInfo) Reset added in v1.1.0

func (m *ReplyScheduleInfo) Reset()

func (*ReplyScheduleInfo) String added in v1.1.0

func (m *ReplyScheduleInfo) String() string

func (*ReplyScheduleInfo) XXX_DiscardUnknown added in v1.1.0

func (m *ReplyScheduleInfo) XXX_DiscardUnknown()

func (*ReplyScheduleInfo) XXX_Marshal added in v1.1.0

func (m *ReplyScheduleInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyScheduleInfo) XXX_Merge added in v1.1.0

func (m *ReplyScheduleInfo) XXX_Merge(src proto.Message)

func (*ReplyScheduleInfo) XXX_Size added in v1.1.0

func (m *ReplyScheduleInfo) XXX_Size() int

func (*ReplyScheduleInfo) XXX_Unmarshal added in v1.1.0

func (m *ReplyScheduleInfo) XXX_Unmarshal(b []byte) error

type ReplyScheduleList added in v1.1.0

type ReplyScheduleList struct {
	Status               *ReplyStatus    `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Total                uint32          `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
	Pages                uint32          `protobuf:"varint,3,opt,name=pages,proto3" json:"pages,omitempty"`
	Page                 uint32          `protobuf:"varint,4,opt,name=page,proto3" json:"page,omitempty"`
	Number               uint32          `protobuf:"varint,5,opt,name=number,proto3" json:"number,omitempty"`
	List                 []*ScheduleInfo `protobuf:"bytes,16,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*ReplyScheduleList) Descriptor added in v1.1.0

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

func (*ReplyScheduleList) GetList added in v1.1.0

func (m *ReplyScheduleList) GetList() []*ScheduleInfo

func (*ReplyScheduleList) GetNumber added in v1.1.0

func (m *ReplyScheduleList) GetNumber() uint32

func (*ReplyScheduleList) GetPage added in v1.1.0

func (m *ReplyScheduleList) GetPage() uint32

func (*ReplyScheduleList) GetPages added in v1.1.0

func (m *ReplyScheduleList) GetPages() uint32

func (*ReplyScheduleList) GetStatus added in v1.1.0

func (m *ReplyScheduleList) GetStatus() *ReplyStatus

func (*ReplyScheduleList) GetTotal added in v1.1.0

func (m *ReplyScheduleList) GetTotal() uint32

func (*ReplyScheduleList) ProtoMessage added in v1.1.0

func (*ReplyScheduleList) ProtoMessage()

func (*ReplyScheduleList) Reset added in v1.1.0

func (m *ReplyScheduleList) Reset()

func (*ReplyScheduleList) String added in v1.1.0

func (m *ReplyScheduleList) String() string

func (*ReplyScheduleList) XXX_DiscardUnknown added in v1.1.0

func (m *ReplyScheduleList) XXX_DiscardUnknown()

func (*ReplyScheduleList) XXX_Marshal added in v1.1.0

func (m *ReplyScheduleList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyScheduleList) XXX_Merge added in v1.1.0

func (m *ReplyScheduleList) XXX_Merge(src proto.Message)

func (*ReplyScheduleList) XXX_Size added in v1.1.0

func (m *ReplyScheduleList) XXX_Size() int

func (*ReplyScheduleList) XXX_Unmarshal added in v1.1.0

func (m *ReplyScheduleList) XXX_Unmarshal(b []byte) error

type ReplyStatistic added in v1.0.2

type ReplyStatistic struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Key                  string       `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Owner                string       `protobuf:"bytes,3,opt,name=owner,proto3" json:"owner,omitempty"`
	Count                uint64       `protobuf:"varint,4,opt,name=count,proto3" json:"count,omitempty"`
	List                 []*PairInfo  `protobuf:"bytes,10,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyStatistic) Descriptor added in v1.0.2

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

func (*ReplyStatistic) GetCount added in v1.0.2

func (m *ReplyStatistic) GetCount() uint64

func (*ReplyStatistic) GetKey added in v1.0.2

func (m *ReplyStatistic) GetKey() string

func (*ReplyStatistic) GetList added in v1.1.4

func (m *ReplyStatistic) GetList() []*PairInfo

func (*ReplyStatistic) GetOwner added in v1.0.2

func (m *ReplyStatistic) GetOwner() string

func (*ReplyStatistic) GetStatus added in v1.0.2

func (m *ReplyStatistic) GetStatus() *ReplyStatus

func (*ReplyStatistic) ProtoMessage added in v1.0.2

func (*ReplyStatistic) ProtoMessage()

func (*ReplyStatistic) Reset added in v1.0.2

func (m *ReplyStatistic) Reset()

func (*ReplyStatistic) String added in v1.0.2

func (m *ReplyStatistic) String() string

func (*ReplyStatistic) XXX_DiscardUnknown added in v1.0.2

func (m *ReplyStatistic) XXX_DiscardUnknown()

func (*ReplyStatistic) XXX_Marshal added in v1.0.2

func (m *ReplyStatistic) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyStatistic) XXX_Merge added in v1.0.2

func (m *ReplyStatistic) XXX_Merge(src proto.Message)

func (*ReplyStatistic) XXX_Size added in v1.0.2

func (m *ReplyStatistic) XXX_Size() int

func (*ReplyStatistic) XXX_Unmarshal added in v1.0.2

func (m *ReplyStatistic) XXX_Unmarshal(b []byte) error

type ReplyStatus

type ReplyStatus struct {
	Code                 uint32   `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Msg                  string   `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReplyStatus) Descriptor

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

func (*ReplyStatus) GetCode

func (m *ReplyStatus) GetCode() uint32

func (*ReplyStatus) GetMsg

func (m *ReplyStatus) GetMsg() string

func (*ReplyStatus) ProtoMessage

func (*ReplyStatus) ProtoMessage()

func (*ReplyStatus) Reset

func (m *ReplyStatus) Reset()

func (*ReplyStatus) String

func (m *ReplyStatus) String() string

func (*ReplyStatus) XXX_DiscardUnknown

func (m *ReplyStatus) XXX_DiscardUnknown()

func (*ReplyStatus) XXX_Marshal

func (m *ReplyStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyStatus) XXX_Merge

func (m *ReplyStatus) XXX_Merge(src proto.Message)

func (*ReplyStatus) XXX_Size

func (m *ReplyStatus) XXX_Size() int

func (*ReplyStatus) XXX_Unmarshal

func (m *ReplyStatus) XXX_Unmarshal(b []byte) error

type ReqAppAdd added in v1.2.5

type ReqAppAdd struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	App                  string   `protobuf:"bytes,2,opt,name=app,proto3" json:"app,omitempty"`
	Secret               string   `protobuf:"bytes,3,opt,name=secret,proto3" json:"secret,omitempty"`
	Operator             string   `protobuf:"bytes,4,opt,name=operator,proto3" json:"operator,omitempty"`
	Version              string   `protobuf:"bytes,5,opt,name=version,proto3" json:"version,omitempty"`
	Status               uint32   `protobuf:"varint,6,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqAppAdd) Descriptor added in v1.2.5

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

func (*ReqAppAdd) GetApp added in v1.2.5

func (m *ReqAppAdd) GetApp() string

func (*ReqAppAdd) GetName added in v1.2.5

func (m *ReqAppAdd) GetName() string

func (*ReqAppAdd) GetOperator added in v1.2.5

func (m *ReqAppAdd) GetOperator() string

func (*ReqAppAdd) GetSecret added in v1.2.5

func (m *ReqAppAdd) GetSecret() string

func (*ReqAppAdd) GetStatus added in v1.2.5

func (m *ReqAppAdd) GetStatus() uint32

func (*ReqAppAdd) GetVersion added in v1.2.5

func (m *ReqAppAdd) GetVersion() string

func (*ReqAppAdd) ProtoMessage added in v1.2.5

func (*ReqAppAdd) ProtoMessage()

func (*ReqAppAdd) Reset added in v1.2.5

func (m *ReqAppAdd) Reset()

func (*ReqAppAdd) String added in v1.2.5

func (m *ReqAppAdd) String() string

func (*ReqAppAdd) XXX_DiscardUnknown added in v1.2.5

func (m *ReqAppAdd) XXX_DiscardUnknown()

func (*ReqAppAdd) XXX_Marshal added in v1.2.5

func (m *ReqAppAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqAppAdd) XXX_Merge added in v1.2.5

func (m *ReqAppAdd) XXX_Merge(src proto.Message)

func (*ReqAppAdd) XXX_Size added in v1.2.5

func (m *ReqAppAdd) XXX_Size() int

func (*ReqAppAdd) XXX_Unmarshal added in v1.2.5

func (m *ReqAppAdd) XXX_Unmarshal(b []byte) error

type ReqCarouselAdd added in v1.0.4

type ReqCarouselAdd struct {
	Name                 string       `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Owner                string       `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
	Remark               string       `protobuf:"bytes,3,opt,name=remark,proto3" json:"remark,omitempty"`
	Operator             string       `protobuf:"bytes,4,opt,name=operator,proto3" json:"operator,omitempty"`
	Cover                string       `protobuf:"bytes,5,opt,name=cover,proto3" json:"cover,omitempty"`
	Assets               []string     `protobuf:"bytes,20,rep,name=assets,proto3" json:"assets,omitempty"`
	Quotes               []*QuoteInfo `protobuf:"bytes,21,rep,name=quotes,proto3" json:"quotes,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReqCarouselAdd) Descriptor added in v1.0.4

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

func (*ReqCarouselAdd) GetAssets added in v1.4.3

func (m *ReqCarouselAdd) GetAssets() []string

func (*ReqCarouselAdd) GetCover added in v1.4.3

func (m *ReqCarouselAdd) GetCover() string

func (*ReqCarouselAdd) GetName added in v1.0.4

func (m *ReqCarouselAdd) GetName() string

func (*ReqCarouselAdd) GetOperator added in v1.0.4

func (m *ReqCarouselAdd) GetOperator() string

func (*ReqCarouselAdd) GetOwner added in v1.0.4

func (m *ReqCarouselAdd) GetOwner() string

func (*ReqCarouselAdd) GetQuotes added in v1.0.4

func (m *ReqCarouselAdd) GetQuotes() []*QuoteInfo

func (*ReqCarouselAdd) GetRemark added in v1.0.4

func (m *ReqCarouselAdd) GetRemark() string

func (*ReqCarouselAdd) ProtoMessage added in v1.0.4

func (*ReqCarouselAdd) ProtoMessage()

func (*ReqCarouselAdd) Reset added in v1.0.4

func (m *ReqCarouselAdd) Reset()

func (*ReqCarouselAdd) String added in v1.0.4

func (m *ReqCarouselAdd) String() string

func (*ReqCarouselAdd) XXX_DiscardUnknown added in v1.0.4

func (m *ReqCarouselAdd) XXX_DiscardUnknown()

func (*ReqCarouselAdd) XXX_Marshal added in v1.0.4

func (m *ReqCarouselAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqCarouselAdd) XXX_Merge added in v1.0.4

func (m *ReqCarouselAdd) XXX_Merge(src proto.Message)

func (*ReqCarouselAdd) XXX_Size added in v1.0.4

func (m *ReqCarouselAdd) XXX_Size() int

func (*ReqCarouselAdd) XXX_Unmarshal added in v1.0.4

func (m *ReqCarouselAdd) XXX_Unmarshal(b []byte) error

type ReqCarouselUpdate added in v1.0.4

type ReqCarouselUpdate struct {
	Uid                  string       `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Name                 string       `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Operator             string       `protobuf:"bytes,3,opt,name=operator,proto3" json:"operator,omitempty"`
	Remark               string       `protobuf:"bytes,4,opt,name=remark,proto3" json:"remark,omitempty"`
	Cover                string       `protobuf:"bytes,5,opt,name=cover,proto3" json:"cover,omitempty"`
	Assets               []string     `protobuf:"bytes,20,rep,name=assets,proto3" json:"assets,omitempty"`
	Quotes               []*QuoteInfo `protobuf:"bytes,21,rep,name=quotes,proto3" json:"quotes,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReqCarouselUpdate) Descriptor added in v1.0.4

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

func (*ReqCarouselUpdate) GetAssets added in v1.4.2

func (m *ReqCarouselUpdate) GetAssets() []string

func (*ReqCarouselUpdate) GetCover added in v1.4.2

func (m *ReqCarouselUpdate) GetCover() string

func (*ReqCarouselUpdate) GetName added in v1.0.4

func (m *ReqCarouselUpdate) GetName() string

func (*ReqCarouselUpdate) GetOperator added in v1.0.4

func (m *ReqCarouselUpdate) GetOperator() string

func (*ReqCarouselUpdate) GetQuotes added in v1.0.4

func (m *ReqCarouselUpdate) GetQuotes() []*QuoteInfo

func (*ReqCarouselUpdate) GetRemark added in v1.4.2

func (m *ReqCarouselUpdate) GetRemark() string

func (*ReqCarouselUpdate) GetUid added in v1.0.4

func (m *ReqCarouselUpdate) GetUid() string

func (*ReqCarouselUpdate) ProtoMessage added in v1.0.4

func (*ReqCarouselUpdate) ProtoMessage()

func (*ReqCarouselUpdate) Reset added in v1.0.4

func (m *ReqCarouselUpdate) Reset()

func (*ReqCarouselUpdate) String added in v1.0.4

func (m *ReqCarouselUpdate) String() string

func (*ReqCarouselUpdate) XXX_DiscardUnknown added in v1.0.4

func (m *ReqCarouselUpdate) XXX_DiscardUnknown()

func (*ReqCarouselUpdate) XXX_Marshal added in v1.0.4

func (m *ReqCarouselUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqCarouselUpdate) XXX_Merge added in v1.0.4

func (m *ReqCarouselUpdate) XXX_Merge(src proto.Message)

func (*ReqCarouselUpdate) XXX_Size added in v1.0.4

func (m *ReqCarouselUpdate) XXX_Size() int

func (*ReqCarouselUpdate) XXX_Unmarshal added in v1.0.4

func (m *ReqCarouselUpdate) XXX_Unmarshal(b []byte) error

type ReqChannelAdd

type ReqChannelAdd struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Phone                string   `protobuf:"bytes,5,opt,name=phone,proto3" json:"phone,omitempty"`
	Remark               string   `protobuf:"bytes,6,opt,name=remark,proto3" json:"remark,omitempty"`
	Operator             string   `protobuf:"bytes,8,opt,name=operator,proto3" json:"operator,omitempty"`
	Passwords            string   `protobuf:"bytes,9,opt,name=passwords,proto3" json:"passwords,omitempty"`
	Entity               string   `protobuf:"bytes,10,opt,name=entity,proto3" json:"entity,omitempty"`
	Portrait             string   `protobuf:"bytes,11,opt,name=portrait,proto3" json:"portrait,omitempty"`
	Tags                 []string `protobuf:"bytes,13,rep,name=tags,proto3" json:"tags,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqChannelAdd) Descriptor

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

func (*ReqChannelAdd) GetEntity

func (m *ReqChannelAdd) GetEntity() string

func (*ReqChannelAdd) GetName

func (m *ReqChannelAdd) GetName() string

func (*ReqChannelAdd) GetOperator

func (m *ReqChannelAdd) GetOperator() string

func (*ReqChannelAdd) GetPasswords

func (m *ReqChannelAdd) GetPasswords() string

func (*ReqChannelAdd) GetPhone

func (m *ReqChannelAdd) GetPhone() string

func (*ReqChannelAdd) GetPortrait

func (m *ReqChannelAdd) GetPortrait() string

func (*ReqChannelAdd) GetRemark

func (m *ReqChannelAdd) GetRemark() string

func (*ReqChannelAdd) GetTags

func (m *ReqChannelAdd) GetTags() []string

func (*ReqChannelAdd) ProtoMessage

func (*ReqChannelAdd) ProtoMessage()

func (*ReqChannelAdd) Reset

func (m *ReqChannelAdd) Reset()

func (*ReqChannelAdd) String

func (m *ReqChannelAdd) String() string

func (*ReqChannelAdd) XXX_DiscardUnknown

func (m *ReqChannelAdd) XXX_DiscardUnknown()

func (*ReqChannelAdd) XXX_Marshal

func (m *ReqChannelAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqChannelAdd) XXX_Merge

func (m *ReqChannelAdd) XXX_Merge(src proto.Message)

func (*ReqChannelAdd) XXX_Size

func (m *ReqChannelAdd) XXX_Size() int

func (*ReqChannelAdd) XXX_Unmarshal

func (m *ReqChannelAdd) XXX_Unmarshal(b []byte) error

type ReqChannelList

type ReqChannelList struct {
	List                 []string `protobuf:"bytes,4,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqChannelList) Descriptor

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

func (*ReqChannelList) GetList

func (m *ReqChannelList) GetList() []string

func (*ReqChannelList) ProtoMessage

func (*ReqChannelList) ProtoMessage()

func (*ReqChannelList) Reset

func (m *ReqChannelList) Reset()

func (*ReqChannelList) String

func (m *ReqChannelList) String() string

func (*ReqChannelList) XXX_DiscardUnknown

func (m *ReqChannelList) XXX_DiscardUnknown()

func (*ReqChannelList) XXX_Marshal

func (m *ReqChannelList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqChannelList) XXX_Merge

func (m *ReqChannelList) XXX_Merge(src proto.Message)

func (*ReqChannelList) XXX_Size

func (m *ReqChannelList) XXX_Size() int

func (*ReqChannelList) XXX_Unmarshal

func (m *ReqChannelList) XXX_Unmarshal(b []byte) error

type ReqChannelTags

type ReqChannelTags struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Operator             string   `protobuf:"bytes,2,opt,name=operator,proto3" json:"operator,omitempty"`
	Tags                 []string `protobuf:"bytes,3,rep,name=tags,proto3" json:"tags,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqChannelTags) Descriptor

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

func (*ReqChannelTags) GetOperator

func (m *ReqChannelTags) GetOperator() string

func (*ReqChannelTags) GetTags

func (m *ReqChannelTags) GetTags() []string

func (*ReqChannelTags) GetUid

func (m *ReqChannelTags) GetUid() string

func (*ReqChannelTags) ProtoMessage

func (*ReqChannelTags) ProtoMessage()

func (*ReqChannelTags) Reset

func (m *ReqChannelTags) Reset()

func (*ReqChannelTags) String

func (m *ReqChannelTags) String() string

func (*ReqChannelTags) XXX_DiscardUnknown

func (m *ReqChannelTags) XXX_DiscardUnknown()

func (*ReqChannelTags) XXX_Marshal

func (m *ReqChannelTags) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqChannelTags) XXX_Merge

func (m *ReqChannelTags) XXX_Merge(src proto.Message)

func (*ReqChannelTags) XXX_Size

func (m *ReqChannelTags) XXX_Size() int

func (*ReqChannelTags) XXX_Unmarshal

func (m *ReqChannelTags) XXX_Unmarshal(b []byte) error

type ReqChannelUpdate

type ReqChannelUpdate struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	NickName             string   `protobuf:"bytes,3,opt,name=nickName,proto3" json:"nickName,omitempty"`
	Phone                string   `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone,omitempty"`
	Job                  string   `protobuf:"bytes,5,opt,name=job,proto3" json:"job,omitempty"`
	Remark               string   `protobuf:"bytes,6,opt,name=remark,proto3" json:"remark,omitempty"`
	Operator             string   `protobuf:"bytes,8,opt,name=operator,proto3" json:"operator,omitempty"`
	Portrait             string   `protobuf:"bytes,9,opt,name=portrait,proto3" json:"portrait,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqChannelUpdate) Descriptor

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

func (*ReqChannelUpdate) GetJob

func (m *ReqChannelUpdate) GetJob() string

func (*ReqChannelUpdate) GetName

func (m *ReqChannelUpdate) GetName() string

func (*ReqChannelUpdate) GetNickName

func (m *ReqChannelUpdate) GetNickName() string

func (*ReqChannelUpdate) GetOperator

func (m *ReqChannelUpdate) GetOperator() string

func (*ReqChannelUpdate) GetPhone

func (m *ReqChannelUpdate) GetPhone() string

func (*ReqChannelUpdate) GetPortrait

func (m *ReqChannelUpdate) GetPortrait() string

func (*ReqChannelUpdate) GetRemark

func (m *ReqChannelUpdate) GetRemark() string

func (*ReqChannelUpdate) GetUid

func (m *ReqChannelUpdate) GetUid() string

func (*ReqChannelUpdate) ProtoMessage

func (*ReqChannelUpdate) ProtoMessage()

func (*ReqChannelUpdate) Reset

func (m *ReqChannelUpdate) Reset()

func (*ReqChannelUpdate) String

func (m *ReqChannelUpdate) String() string

func (*ReqChannelUpdate) XXX_DiscardUnknown

func (m *ReqChannelUpdate) XXX_DiscardUnknown()

func (*ReqChannelUpdate) XXX_Marshal

func (m *ReqChannelUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqChannelUpdate) XXX_Merge

func (m *ReqChannelUpdate) XXX_Merge(src proto.Message)

func (*ReqChannelUpdate) XXX_Size

func (m *ReqChannelUpdate) XXX_Size() int

func (*ReqChannelUpdate) XXX_Unmarshal

func (m *ReqChannelUpdate) XXX_Unmarshal(b []byte) error

type ReqHolidayAdd added in v1.1.1

type ReqHolidayAdd struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Remark               string   `protobuf:"bytes,3,opt,name=remark,proto3" json:"remark,omitempty"`
	Owner                string   `protobuf:"bytes,4,opt,name=owner,proto3" json:"owner,omitempty"`
	Operator             string   `protobuf:"bytes,5,opt,name=operator,proto3" json:"operator,omitempty"`
	From                 int64    `protobuf:"varint,6,opt,name=from,proto3" json:"from,omitempty"`
	End                  int64    `protobuf:"varint,7,opt,name=end,proto3" json:"end,omitempty"`
	Type                 uint32   `protobuf:"varint,9,opt,name=type,proto3" json:"type,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqHolidayAdd) Descriptor added in v1.1.1

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

func (*ReqHolidayAdd) GetEnd added in v1.1.1

func (m *ReqHolidayAdd) GetEnd() int64

func (*ReqHolidayAdd) GetFrom added in v1.1.1

func (m *ReqHolidayAdd) GetFrom() int64

func (*ReqHolidayAdd) GetName added in v1.1.1

func (m *ReqHolidayAdd) GetName() string

func (*ReqHolidayAdd) GetOperator added in v1.1.1

func (m *ReqHolidayAdd) GetOperator() string

func (*ReqHolidayAdd) GetOwner added in v1.1.1

func (m *ReqHolidayAdd) GetOwner() string

func (*ReqHolidayAdd) GetRemark added in v1.1.1

func (m *ReqHolidayAdd) GetRemark() string

func (*ReqHolidayAdd) GetType added in v1.1.4

func (m *ReqHolidayAdd) GetType() uint32

func (*ReqHolidayAdd) GetUid added in v1.1.1

func (m *ReqHolidayAdd) GetUid() string

func (*ReqHolidayAdd) ProtoMessage added in v1.1.1

func (*ReqHolidayAdd) ProtoMessage()

func (*ReqHolidayAdd) Reset added in v1.1.1

func (m *ReqHolidayAdd) Reset()

func (*ReqHolidayAdd) String added in v1.1.1

func (m *ReqHolidayAdd) String() string

func (*ReqHolidayAdd) XXX_DiscardUnknown added in v1.1.1

func (m *ReqHolidayAdd) XXX_DiscardUnknown()

func (*ReqHolidayAdd) XXX_Marshal added in v1.1.1

func (m *ReqHolidayAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqHolidayAdd) XXX_Merge added in v1.1.1

func (m *ReqHolidayAdd) XXX_Merge(src proto.Message)

func (*ReqHolidayAdd) XXX_Size added in v1.1.1

func (m *ReqHolidayAdd) XXX_Size() int

func (*ReqHolidayAdd) XXX_Unmarshal added in v1.1.1

func (m *ReqHolidayAdd) XXX_Unmarshal(b []byte) error

type ReqHolidayUpdate added in v1.1.2

type ReqHolidayUpdate struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Remark               string   `protobuf:"bytes,3,opt,name=remark,proto3" json:"remark,omitempty"`
	Operator             string   `protobuf:"bytes,5,opt,name=operator,proto3" json:"operator,omitempty"`
	From                 int64    `protobuf:"varint,6,opt,name=from,proto3" json:"from,omitempty"`
	End                  int64    `protobuf:"varint,7,opt,name=end,proto3" json:"end,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqHolidayUpdate) Descriptor added in v1.1.2

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

func (*ReqHolidayUpdate) GetEnd added in v1.1.2

func (m *ReqHolidayUpdate) GetEnd() int64

func (*ReqHolidayUpdate) GetFrom added in v1.1.2

func (m *ReqHolidayUpdate) GetFrom() int64

func (*ReqHolidayUpdate) GetName added in v1.1.2

func (m *ReqHolidayUpdate) GetName() string

func (*ReqHolidayUpdate) GetOperator added in v1.1.2

func (m *ReqHolidayUpdate) GetOperator() string

func (*ReqHolidayUpdate) GetRemark added in v1.1.2

func (m *ReqHolidayUpdate) GetRemark() string

func (*ReqHolidayUpdate) GetUid added in v1.1.2

func (m *ReqHolidayUpdate) GetUid() string

func (*ReqHolidayUpdate) ProtoMessage added in v1.1.2

func (*ReqHolidayUpdate) ProtoMessage()

func (*ReqHolidayUpdate) Reset added in v1.1.2

func (m *ReqHolidayUpdate) Reset()

func (*ReqHolidayUpdate) String added in v1.1.2

func (m *ReqHolidayUpdate) String() string

func (*ReqHolidayUpdate) XXX_DiscardUnknown added in v1.1.2

func (m *ReqHolidayUpdate) XXX_DiscardUnknown()

func (*ReqHolidayUpdate) XXX_Marshal added in v1.1.2

func (m *ReqHolidayUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqHolidayUpdate) XXX_Merge added in v1.1.2

func (m *ReqHolidayUpdate) XXX_Merge(src proto.Message)

func (*ReqHolidayUpdate) XXX_Size added in v1.1.2

func (m *ReqHolidayUpdate) XXX_Size() int

func (*ReqHolidayUpdate) XXX_Unmarshal added in v1.1.2

func (m *ReqHolidayUpdate) XXX_Unmarshal(b []byte) error

type ReqHonorAdd added in v1.2.0

type ReqHonorAdd struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Remark               string   `protobuf:"bytes,2,opt,name=remark,proto3" json:"remark,omitempty"`
	Scene                string   `protobuf:"bytes,3,opt,name=scene,proto3" json:"scene,omitempty"`
	Operator             string   `protobuf:"bytes,4,opt,name=operator,proto3" json:"operator,omitempty"`
	Style                string   `protobuf:"bytes,5,opt,name=style,proto3" json:"style,omitempty"`
	Type                 uint32   `protobuf:"varint,6,opt,name=type,proto3" json:"type,omitempty"`
	Status               uint32   `protobuf:"varint,7,opt,name=status,proto3" json:"status,omitempty"`
	Parent               string   `protobuf:"bytes,8,opt,name=parent,proto3" json:"parent,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqHonorAdd) Descriptor added in v1.2.0

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

func (*ReqHonorAdd) GetName added in v1.2.0

func (m *ReqHonorAdd) GetName() string

func (*ReqHonorAdd) GetOperator added in v1.2.0

func (m *ReqHonorAdd) GetOperator() string

func (*ReqHonorAdd) GetParent added in v1.2.2

func (m *ReqHonorAdd) GetParent() string

func (*ReqHonorAdd) GetRemark added in v1.2.0

func (m *ReqHonorAdd) GetRemark() string

func (*ReqHonorAdd) GetScene added in v1.2.0

func (m *ReqHonorAdd) GetScene() string

func (*ReqHonorAdd) GetStatus added in v1.2.0

func (m *ReqHonorAdd) GetStatus() uint32

func (*ReqHonorAdd) GetStyle added in v1.2.0

func (m *ReqHonorAdd) GetStyle() string

func (*ReqHonorAdd) GetType added in v1.2.0

func (m *ReqHonorAdd) GetType() uint32

func (*ReqHonorAdd) ProtoMessage added in v1.2.0

func (*ReqHonorAdd) ProtoMessage()

func (*ReqHonorAdd) Reset added in v1.2.0

func (m *ReqHonorAdd) Reset()

func (*ReqHonorAdd) String added in v1.2.0

func (m *ReqHonorAdd) String() string

func (*ReqHonorAdd) XXX_DiscardUnknown added in v1.2.0

func (m *ReqHonorAdd) XXX_DiscardUnknown()

func (*ReqHonorAdd) XXX_Marshal added in v1.2.0

func (m *ReqHonorAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqHonorAdd) XXX_Merge added in v1.2.0

func (m *ReqHonorAdd) XXX_Merge(src proto.Message)

func (*ReqHonorAdd) XXX_Size added in v1.2.0

func (m *ReqHonorAdd) XXX_Size() int

func (*ReqHonorAdd) XXX_Unmarshal added in v1.2.0

func (m *ReqHonorAdd) XXX_Unmarshal(b []byte) error

type ReqHonorContents added in v1.2.1

type ReqHonorContents struct {
	Uid                  string          `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Operator             string          `protobuf:"bytes,2,opt,name=operator,proto3" json:"operator,omitempty"`
	List                 []*HonorContent `protobuf:"bytes,10,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*ReqHonorContents) Descriptor added in v1.2.1

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

func (*ReqHonorContents) GetList added in v1.2.1

func (m *ReqHonorContents) GetList() []*HonorContent

func (*ReqHonorContents) GetOperator added in v1.2.1

func (m *ReqHonorContents) GetOperator() string

func (*ReqHonorContents) GetUid added in v1.2.1

func (m *ReqHonorContents) GetUid() string

func (*ReqHonorContents) ProtoMessage added in v1.2.1

func (*ReqHonorContents) ProtoMessage()

func (*ReqHonorContents) Reset added in v1.2.1

func (m *ReqHonorContents) Reset()

func (*ReqHonorContents) String added in v1.2.1

func (m *ReqHonorContents) String() string

func (*ReqHonorContents) XXX_DiscardUnknown added in v1.2.1

func (m *ReqHonorContents) XXX_DiscardUnknown()

func (*ReqHonorContents) XXX_Marshal added in v1.2.1

func (m *ReqHonorContents) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqHonorContents) XXX_Merge added in v1.2.1

func (m *ReqHonorContents) XXX_Merge(src proto.Message)

func (*ReqHonorContents) XXX_Size added in v1.2.1

func (m *ReqHonorContents) XXX_Size() int

func (*ReqHonorContents) XXX_Unmarshal added in v1.2.1

func (m *ReqHonorContents) XXX_Unmarshal(b []byte) error

type ReqHonorUpdate added in v1.2.0

type ReqHonorUpdate struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Remark               string   `protobuf:"bytes,3,opt,name=remark,proto3" json:"remark,omitempty"`
	Operator             string   `protobuf:"bytes,4,opt,name=operator,proto3" json:"operator,omitempty"`
	Style                string   `protobuf:"bytes,5,opt,name=style,proto3" json:"style,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqHonorUpdate) Descriptor added in v1.2.0

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

func (*ReqHonorUpdate) GetName added in v1.2.0

func (m *ReqHonorUpdate) GetName() string

func (*ReqHonorUpdate) GetOperator added in v1.2.0

func (m *ReqHonorUpdate) GetOperator() string

func (*ReqHonorUpdate) GetRemark added in v1.2.0

func (m *ReqHonorUpdate) GetRemark() string

func (*ReqHonorUpdate) GetStyle added in v1.2.0

func (m *ReqHonorUpdate) GetStyle() string

func (*ReqHonorUpdate) GetUid added in v1.2.0

func (m *ReqHonorUpdate) GetUid() string

func (*ReqHonorUpdate) ProtoMessage added in v1.2.0

func (*ReqHonorUpdate) ProtoMessage()

func (*ReqHonorUpdate) Reset added in v1.2.0

func (m *ReqHonorUpdate) Reset()

func (*ReqHonorUpdate) String added in v1.2.0

func (m *ReqHonorUpdate) String() string

func (*ReqHonorUpdate) XXX_DiscardUnknown added in v1.2.0

func (m *ReqHonorUpdate) XXX_DiscardUnknown()

func (*ReqHonorUpdate) XXX_Marshal added in v1.2.0

func (m *ReqHonorUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqHonorUpdate) XXX_Merge added in v1.2.0

func (m *ReqHonorUpdate) XXX_Merge(src proto.Message)

func (*ReqHonorUpdate) XXX_Size added in v1.2.0

func (m *ReqHonorUpdate) XXX_Size() int

func (*ReqHonorUpdate) XXX_Unmarshal added in v1.2.0

func (m *ReqHonorUpdate) XXX_Unmarshal(b []byte) error

type ReqKMSAdd added in v1.3.0

type ReqKMSAdd struct {
	Owner                string   `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	Sn                   string   `protobuf:"bytes,2,opt,name=sn,proto3" json:"sn,omitempty"`
	Consumer             string   `protobuf:"bytes,3,opt,name=consumer,proto3" json:"consumer,omitempty"`
	Scene                string   `protobuf:"bytes,4,opt,name=scene,proto3" json:"scene,omitempty"`
	Operator             string   `protobuf:"bytes,5,opt,name=operator,proto3" json:"operator,omitempty"`
	Expiry               uint32   `protobuf:"varint,6,opt,name=expiry,proto3" json:"expiry,omitempty"`
	Content              string   `protobuf:"bytes,7,opt,name=content,proto3" json:"content,omitempty"`
	Remark               string   `protobuf:"bytes,8,opt,name=remark,proto3" json:"remark,omitempty"`
	Space                string   `protobuf:"bytes,9,opt,name=space,proto3" json:"space,omitempty"`
	Name                 string   `protobuf:"bytes,10,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqKMSAdd) Descriptor added in v1.3.0

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

func (*ReqKMSAdd) GetConsumer added in v1.3.0

func (m *ReqKMSAdd) GetConsumer() string

func (*ReqKMSAdd) GetContent added in v1.3.0

func (m *ReqKMSAdd) GetContent() string

func (*ReqKMSAdd) GetExpiry added in v1.3.0

func (m *ReqKMSAdd) GetExpiry() uint32

func (*ReqKMSAdd) GetName added in v1.3.0

func (m *ReqKMSAdd) GetName() string

func (*ReqKMSAdd) GetOperator added in v1.3.0

func (m *ReqKMSAdd) GetOperator() string

func (*ReqKMSAdd) GetOwner added in v1.3.0

func (m *ReqKMSAdd) GetOwner() string

func (*ReqKMSAdd) GetRemark added in v1.3.0

func (m *ReqKMSAdd) GetRemark() string

func (*ReqKMSAdd) GetScene added in v1.3.0

func (m *ReqKMSAdd) GetScene() string

func (*ReqKMSAdd) GetSn added in v1.3.0

func (m *ReqKMSAdd) GetSn() string

func (*ReqKMSAdd) GetSpace added in v1.3.0

func (m *ReqKMSAdd) GetSpace() string

func (*ReqKMSAdd) ProtoMessage added in v1.3.0

func (*ReqKMSAdd) ProtoMessage()

func (*ReqKMSAdd) Reset added in v1.3.0

func (m *ReqKMSAdd) Reset()

func (*ReqKMSAdd) String added in v1.3.0

func (m *ReqKMSAdd) String() string

func (*ReqKMSAdd) XXX_DiscardUnknown added in v1.3.0

func (m *ReqKMSAdd) XXX_DiscardUnknown()

func (*ReqKMSAdd) XXX_Marshal added in v1.3.0

func (m *ReqKMSAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqKMSAdd) XXX_Merge added in v1.3.0

func (m *ReqKMSAdd) XXX_Merge(src proto.Message)

func (*ReqKMSAdd) XXX_Size added in v1.3.0

func (m *ReqKMSAdd) XXX_Size() int

func (*ReqKMSAdd) XXX_Unmarshal added in v1.3.0

func (m *ReqKMSAdd) XXX_Unmarshal(b []byte) error

type ReqLinkAdd added in v1.4.0

type ReqLinkAdd struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Remark               string   `protobuf:"bytes,2,opt,name=remark,proto3" json:"remark,omitempty"`
	Scene                string   `protobuf:"bytes,3,opt,name=scene,proto3" json:"scene,omitempty"`
	Operator             string   `protobuf:"bytes,4,opt,name=operator,proto3" json:"operator,omitempty"`
	Addr                 string   `protobuf:"bytes,5,opt,name=addr,proto3" json:"addr,omitempty"`
	Cover                string   `protobuf:"bytes,6,opt,name=cover,proto3" json:"cover,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqLinkAdd) Descriptor added in v1.4.0

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

func (*ReqLinkAdd) GetAddr added in v1.4.0

func (m *ReqLinkAdd) GetAddr() string

func (*ReqLinkAdd) GetCover added in v1.4.0

func (m *ReqLinkAdd) GetCover() string

func (*ReqLinkAdd) GetName added in v1.4.0

func (m *ReqLinkAdd) GetName() string

func (*ReqLinkAdd) GetOperator added in v1.4.0

func (m *ReqLinkAdd) GetOperator() string

func (*ReqLinkAdd) GetRemark added in v1.4.0

func (m *ReqLinkAdd) GetRemark() string

func (*ReqLinkAdd) GetScene added in v1.4.0

func (m *ReqLinkAdd) GetScene() string

func (*ReqLinkAdd) ProtoMessage added in v1.4.0

func (*ReqLinkAdd) ProtoMessage()

func (*ReqLinkAdd) Reset added in v1.4.0

func (m *ReqLinkAdd) Reset()

func (*ReqLinkAdd) String added in v1.4.0

func (m *ReqLinkAdd) String() string

func (*ReqLinkAdd) XXX_DiscardUnknown added in v1.4.0

func (m *ReqLinkAdd) XXX_DiscardUnknown()

func (*ReqLinkAdd) XXX_Marshal added in v1.4.0

func (m *ReqLinkAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqLinkAdd) XXX_Merge added in v1.4.0

func (m *ReqLinkAdd) XXX_Merge(src proto.Message)

func (*ReqLinkAdd) XXX_Size added in v1.4.0

func (m *ReqLinkAdd) XXX_Size() int

func (*ReqLinkAdd) XXX_Unmarshal added in v1.4.0

func (m *ReqLinkAdd) XXX_Unmarshal(b []byte) error

type ReqMotionAdd added in v1.0.2

type ReqMotionAdd struct {
	App                  string      `protobuf:"bytes,1,opt,name=app,proto3" json:"app,omitempty"`
	Sn                   string      `protobuf:"bytes,2,opt,name=sn,proto3" json:"sn,omitempty"`
	Event                string      `protobuf:"bytes,3,opt,name=event,proto3" json:"event,omitempty"`
	Scene                string      `protobuf:"bytes,4,opt,name=scene,proto3" json:"scene,omitempty"`
	Operator             string      `protobuf:"bytes,5,opt,name=operator,proto3" json:"operator,omitempty"`
	Count                uint32      `protobuf:"varint,6,opt,name=count,proto3" json:"count,omitempty"`
	Content              string      `protobuf:"bytes,7,opt,name=content,proto3" json:"content,omitempty"`
	Type                 uint32      `protobuf:"varint,8,opt,name=type,proto3" json:"type,omitempty"`
	List                 []*PairInfo `protobuf:"bytes,20,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
	XXX_unrecognized     []byte      `json:"-"`
	XXX_sizecache        int32       `json:"-"`
}

func (*ReqMotionAdd) Descriptor added in v1.0.2

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

func (*ReqMotionAdd) GetApp added in v1.0.2

func (m *ReqMotionAdd) GetApp() string

func (*ReqMotionAdd) GetContent added in v1.0.3

func (m *ReqMotionAdd) GetContent() string

func (*ReqMotionAdd) GetCount added in v1.0.2

func (m *ReqMotionAdd) GetCount() uint32

func (*ReqMotionAdd) GetEvent added in v1.0.2

func (m *ReqMotionAdd) GetEvent() string

func (*ReqMotionAdd) GetList added in v1.4.4

func (m *ReqMotionAdd) GetList() []*PairInfo

func (*ReqMotionAdd) GetOperator added in v1.0.2

func (m *ReqMotionAdd) GetOperator() string

func (*ReqMotionAdd) GetScene added in v1.0.2

func (m *ReqMotionAdd) GetScene() string

func (*ReqMotionAdd) GetSn added in v1.0.2

func (m *ReqMotionAdd) GetSn() string

func (*ReqMotionAdd) GetType added in v1.2.4

func (m *ReqMotionAdd) GetType() uint32

func (*ReqMotionAdd) ProtoMessage added in v1.0.2

func (*ReqMotionAdd) ProtoMessage()

func (*ReqMotionAdd) Reset added in v1.0.2

func (m *ReqMotionAdd) Reset()

func (*ReqMotionAdd) String added in v1.0.2

func (m *ReqMotionAdd) String() string

func (*ReqMotionAdd) XXX_DiscardUnknown added in v1.0.2

func (m *ReqMotionAdd) XXX_DiscardUnknown()

func (*ReqMotionAdd) XXX_Marshal added in v1.0.2

func (m *ReqMotionAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqMotionAdd) XXX_Merge added in v1.0.2

func (m *ReqMotionAdd) XXX_Merge(src proto.Message)

func (*ReqMotionAdd) XXX_Size added in v1.0.2

func (m *ReqMotionAdd) XXX_Size() int

func (*ReqMotionAdd) XXX_Unmarshal added in v1.0.2

func (m *ReqMotionAdd) XXX_Unmarshal(b []byte) error

type ReqNetflowAdd added in v1.1.7

type ReqNetflowAdd struct {
	Type                 uint32         `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`
	Scene                string         `protobuf:"bytes,4,opt,name=scene,proto3" json:"scene,omitempty"`
	Operator             string         `protobuf:"bytes,5,opt,name=operator,proto3" json:"operator,omitempty"`
	Quote                string         `protobuf:"bytes,6,opt,name=quote,proto3" json:"quote,omitempty"`
	Template             string         `protobuf:"bytes,7,opt,name=template,proto3" json:"template,omitempty"`
	Target               string         `protobuf:"bytes,8,opt,name=target,proto3" json:"target,omitempty"`
	Contents             []*ContentInfo `protobuf:"bytes,11,rep,name=contents,proto3" json:"contents,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ReqNetflowAdd) Descriptor added in v1.1.7

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

func (*ReqNetflowAdd) GetContents added in v1.1.7

func (m *ReqNetflowAdd) GetContents() []*ContentInfo

func (*ReqNetflowAdd) GetOperator added in v1.1.7

func (m *ReqNetflowAdd) GetOperator() string

func (*ReqNetflowAdd) GetQuote added in v1.1.7

func (m *ReqNetflowAdd) GetQuote() string

func (*ReqNetflowAdd) GetScene added in v1.1.7

func (m *ReqNetflowAdd) GetScene() string

func (*ReqNetflowAdd) GetTarget added in v1.1.7

func (m *ReqNetflowAdd) GetTarget() string

func (*ReqNetflowAdd) GetTemplate added in v1.1.7

func (m *ReqNetflowAdd) GetTemplate() string

func (*ReqNetflowAdd) GetType added in v1.1.7

func (m *ReqNetflowAdd) GetType() uint32

func (*ReqNetflowAdd) ProtoMessage added in v1.1.7

func (*ReqNetflowAdd) ProtoMessage()

func (*ReqNetflowAdd) Reset added in v1.1.7

func (m *ReqNetflowAdd) Reset()

func (*ReqNetflowAdd) String added in v1.1.7

func (m *ReqNetflowAdd) String() string

func (*ReqNetflowAdd) XXX_DiscardUnknown added in v1.1.7

func (m *ReqNetflowAdd) XXX_DiscardUnknown()

func (*ReqNetflowAdd) XXX_Marshal added in v1.1.7

func (m *ReqNetflowAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqNetflowAdd) XXX_Merge added in v1.1.7

func (m *ReqNetflowAdd) XXX_Merge(src proto.Message)

func (*ReqNetflowAdd) XXX_Size added in v1.1.7

func (m *ReqNetflowAdd) XXX_Size() int

func (*ReqNetflowAdd) XXX_Unmarshal added in v1.1.7

func (m *ReqNetflowAdd) XXX_Unmarshal(b []byte) error

type ReqPartnerAdd

type ReqPartnerAdd struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Phone                string   `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
	Remark               string   `protobuf:"bytes,3,opt,name=remark,proto3" json:"remark,omitempty"`
	Operator             string   `protobuf:"bytes,4,opt,name=operator,proto3" json:"operator,omitempty"`
	Tags                 []string `protobuf:"bytes,5,rep,name=tags,proto3" json:"tags,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqPartnerAdd) Descriptor

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

func (*ReqPartnerAdd) GetName

func (m *ReqPartnerAdd) GetName() string

func (*ReqPartnerAdd) GetOperator

func (m *ReqPartnerAdd) GetOperator() string

func (*ReqPartnerAdd) GetPhone

func (m *ReqPartnerAdd) GetPhone() string

func (*ReqPartnerAdd) GetRemark

func (m *ReqPartnerAdd) GetRemark() string

func (*ReqPartnerAdd) GetTags

func (m *ReqPartnerAdd) GetTags() []string

func (*ReqPartnerAdd) ProtoMessage

func (*ReqPartnerAdd) ProtoMessage()

func (*ReqPartnerAdd) Reset

func (m *ReqPartnerAdd) Reset()

func (*ReqPartnerAdd) String

func (m *ReqPartnerAdd) String() string

func (*ReqPartnerAdd) XXX_DiscardUnknown

func (m *ReqPartnerAdd) XXX_DiscardUnknown()

func (*ReqPartnerAdd) XXX_Marshal

func (m *ReqPartnerAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqPartnerAdd) XXX_Merge

func (m *ReqPartnerAdd) XXX_Merge(src proto.Message)

func (*ReqPartnerAdd) XXX_Size

func (m *ReqPartnerAdd) XXX_Size() int

func (*ReqPartnerAdd) XXX_Unmarshal

func (m *ReqPartnerAdd) XXX_Unmarshal(b []byte) error

type ReqPartnerList

type ReqPartnerList struct {
	List                 []string `protobuf:"bytes,4,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqPartnerList) Descriptor

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

func (*ReqPartnerList) GetList

func (m *ReqPartnerList) GetList() []string

func (*ReqPartnerList) ProtoMessage

func (*ReqPartnerList) ProtoMessage()

func (*ReqPartnerList) Reset

func (m *ReqPartnerList) Reset()

func (*ReqPartnerList) String

func (m *ReqPartnerList) String() string

func (*ReqPartnerList) XXX_DiscardUnknown

func (m *ReqPartnerList) XXX_DiscardUnknown()

func (*ReqPartnerList) XXX_Marshal

func (m *ReqPartnerList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqPartnerList) XXX_Merge

func (m *ReqPartnerList) XXX_Merge(src proto.Message)

func (*ReqPartnerList) XXX_Size

func (m *ReqPartnerList) XXX_Size() int

func (*ReqPartnerList) XXX_Unmarshal

func (m *ReqPartnerList) XXX_Unmarshal(b []byte) error

type ReqPartnerTags

type ReqPartnerTags struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Operator             string   `protobuf:"bytes,2,opt,name=operator,proto3" json:"operator,omitempty"`
	Tags                 []string `protobuf:"bytes,3,rep,name=tags,proto3" json:"tags,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqPartnerTags) Descriptor

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

func (*ReqPartnerTags) GetOperator

func (m *ReqPartnerTags) GetOperator() string

func (*ReqPartnerTags) GetTags

func (m *ReqPartnerTags) GetTags() []string

func (*ReqPartnerTags) GetUid

func (m *ReqPartnerTags) GetUid() string

func (*ReqPartnerTags) ProtoMessage

func (*ReqPartnerTags) ProtoMessage()

func (*ReqPartnerTags) Reset

func (m *ReqPartnerTags) Reset()

func (*ReqPartnerTags) String

func (m *ReqPartnerTags) String() string

func (*ReqPartnerTags) XXX_DiscardUnknown

func (m *ReqPartnerTags) XXX_DiscardUnknown()

func (*ReqPartnerTags) XXX_Marshal

func (m *ReqPartnerTags) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqPartnerTags) XXX_Merge

func (m *ReqPartnerTags) XXX_Merge(src proto.Message)

func (*ReqPartnerTags) XXX_Size

func (m *ReqPartnerTags) XXX_Size() int

func (*ReqPartnerTags) XXX_Unmarshal

func (m *ReqPartnerTags) XXX_Unmarshal(b []byte) error

type ReqPartnerUpdate

type ReqPartnerUpdate struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Remark               string   `protobuf:"bytes,3,opt,name=remark,proto3" json:"remark,omitempty"`
	Phone                string   `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone,omitempty"`
	Operator             string   `protobuf:"bytes,8,opt,name=operator,proto3" json:"operator,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqPartnerUpdate) Descriptor

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

func (*ReqPartnerUpdate) GetName

func (m *ReqPartnerUpdate) GetName() string

func (*ReqPartnerUpdate) GetOperator

func (m *ReqPartnerUpdate) GetOperator() string

func (*ReqPartnerUpdate) GetPhone

func (m *ReqPartnerUpdate) GetPhone() string

func (*ReqPartnerUpdate) GetRemark

func (m *ReqPartnerUpdate) GetRemark() string

func (*ReqPartnerUpdate) GetUid

func (m *ReqPartnerUpdate) GetUid() string

func (*ReqPartnerUpdate) ProtoMessage

func (*ReqPartnerUpdate) ProtoMessage()

func (*ReqPartnerUpdate) Reset

func (m *ReqPartnerUpdate) Reset()

func (*ReqPartnerUpdate) String

func (m *ReqPartnerUpdate) String() string

func (*ReqPartnerUpdate) XXX_DiscardUnknown

func (m *ReqPartnerUpdate) XXX_DiscardUnknown()

func (*ReqPartnerUpdate) XXX_Marshal

func (m *ReqPartnerUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqPartnerUpdate) XXX_Merge

func (m *ReqPartnerUpdate) XXX_Merge(src proto.Message)

func (*ReqPartnerUpdate) XXX_Size

func (m *ReqPartnerUpdate) XXX_Size() int

func (*ReqPartnerUpdate) XXX_Unmarshal

func (m *ReqPartnerUpdate) XXX_Unmarshal(b []byte) error

type ReqRecommendAdd added in v1.0.4

type ReqRecommendAdd struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Owner                string   `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
	Remark               string   `protobuf:"bytes,3,opt,name=remark,proto3" json:"remark,omitempty"`
	Operator             string   `protobuf:"bytes,4,opt,name=operator,proto3" json:"operator,omitempty"`
	Type                 uint32   `protobuf:"varint,5,opt,name=type,proto3" json:"type,omitempty"`
	Quote                string   `protobuf:"bytes,6,opt,name=quote,proto3" json:"quote,omitempty"`
	Targets              []string `protobuf:"bytes,21,rep,name=targets,proto3" json:"targets,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqRecommendAdd) Descriptor added in v1.0.4

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

func (*ReqRecommendAdd) GetName added in v1.0.4

func (m *ReqRecommendAdd) GetName() string

func (*ReqRecommendAdd) GetOperator added in v1.0.4

func (m *ReqRecommendAdd) GetOperator() string

func (*ReqRecommendAdd) GetOwner added in v1.0.4

func (m *ReqRecommendAdd) GetOwner() string

func (*ReqRecommendAdd) GetQuote added in v1.1.9

func (m *ReqRecommendAdd) GetQuote() string

func (*ReqRecommendAdd) GetRemark added in v1.0.4

func (m *ReqRecommendAdd) GetRemark() string

func (*ReqRecommendAdd) GetTargets added in v1.0.4

func (m *ReqRecommendAdd) GetTargets() []string

func (*ReqRecommendAdd) GetType added in v1.0.4

func (m *ReqRecommendAdd) GetType() uint32

func (*ReqRecommendAdd) ProtoMessage added in v1.0.4

func (*ReqRecommendAdd) ProtoMessage()

func (*ReqRecommendAdd) Reset added in v1.0.4

func (m *ReqRecommendAdd) Reset()

func (*ReqRecommendAdd) String added in v1.0.4

func (m *ReqRecommendAdd) String() string

func (*ReqRecommendAdd) XXX_DiscardUnknown added in v1.0.4

func (m *ReqRecommendAdd) XXX_DiscardUnknown()

func (*ReqRecommendAdd) XXX_Marshal added in v1.0.4

func (m *ReqRecommendAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqRecommendAdd) XXX_Merge added in v1.0.4

func (m *ReqRecommendAdd) XXX_Merge(src proto.Message)

func (*ReqRecommendAdd) XXX_Size added in v1.0.4

func (m *ReqRecommendAdd) XXX_Size() int

func (*ReqRecommendAdd) XXX_Unmarshal added in v1.0.4

func (m *ReqRecommendAdd) XXX_Unmarshal(b []byte) error

type ReqRecommendUpdate added in v1.0.4

type ReqRecommendUpdate struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Operator             string   `protobuf:"bytes,3,opt,name=operator,proto3" json:"operator,omitempty"`
	Type                 uint32   `protobuf:"varint,4,opt,name=type,proto3" json:"type,omitempty"`
	Targets              []string `protobuf:"bytes,21,rep,name=targets,proto3" json:"targets,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqRecommendUpdate) Descriptor added in v1.0.4

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

func (*ReqRecommendUpdate) GetName added in v1.0.4

func (m *ReqRecommendUpdate) GetName() string

func (*ReqRecommendUpdate) GetOperator added in v1.0.4

func (m *ReqRecommendUpdate) GetOperator() string

func (*ReqRecommendUpdate) GetTargets added in v1.0.4

func (m *ReqRecommendUpdate) GetTargets() []string

func (*ReqRecommendUpdate) GetType added in v1.0.5

func (m *ReqRecommendUpdate) GetType() uint32

func (*ReqRecommendUpdate) GetUid added in v1.0.4

func (m *ReqRecommendUpdate) GetUid() string

func (*ReqRecommendUpdate) ProtoMessage added in v1.0.4

func (*ReqRecommendUpdate) ProtoMessage()

func (*ReqRecommendUpdate) Reset added in v1.0.4

func (m *ReqRecommendUpdate) Reset()

func (*ReqRecommendUpdate) String added in v1.0.4

func (m *ReqRecommendUpdate) String() string

func (*ReqRecommendUpdate) XXX_DiscardUnknown added in v1.0.4

func (m *ReqRecommendUpdate) XXX_DiscardUnknown()

func (*ReqRecommendUpdate) XXX_Marshal added in v1.0.4

func (m *ReqRecommendUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqRecommendUpdate) XXX_Merge added in v1.0.4

func (m *ReqRecommendUpdate) XXX_Merge(src proto.Message)

func (*ReqRecommendUpdate) XXX_Size added in v1.0.4

func (m *ReqRecommendUpdate) XXX_Size() int

func (*ReqRecommendUpdate) XXX_Unmarshal added in v1.0.4

func (m *ReqRecommendUpdate) XXX_Unmarshal(b []byte) error

type ReqReserveAdd added in v1.4.0

type ReqReserveAdd struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Remark               string   `protobuf:"bytes,2,opt,name=remark,proto3" json:"remark,omitempty"`
	Contact              string   `protobuf:"bytes,3,opt,name=contact,proto3" json:"contact,omitempty"`
	Operator             string   `protobuf:"bytes,4,opt,name=operator,proto3" json:"operator,omitempty"`
	Scene                string   `protobuf:"bytes,5,opt,name=scene,proto3" json:"scene,omitempty"`
	Kind                 uint32   `protobuf:"varint,6,opt,name=kind,proto3" json:"kind,omitempty"`
	Count                uint32   `protobuf:"varint,7,opt,name=count,proto3" json:"count,omitempty"`
	Uint                 string   `protobuf:"bytes,8,opt,name=uint,proto3" json:"uint,omitempty"`
	Date                 string   `protobuf:"bytes,9,opt,name=date,proto3" json:"date,omitempty"`
	Begin                uint32   `protobuf:"varint,10,opt,name=begin,proto3" json:"begin,omitempty"`
	End                  uint32   `protobuf:"varint,11,opt,name=end,proto3" json:"end,omitempty"`
	Assets               []string `protobuf:"bytes,21,rep,name=assets,proto3" json:"assets,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqReserveAdd) Descriptor added in v1.4.0

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

func (*ReqReserveAdd) GetAssets added in v1.4.7

func (m *ReqReserveAdd) GetAssets() []string

func (*ReqReserveAdd) GetBegin added in v1.4.6

func (m *ReqReserveAdd) GetBegin() uint32

func (*ReqReserveAdd) GetContact added in v1.4.0

func (m *ReqReserveAdd) GetContact() string

func (*ReqReserveAdd) GetCount added in v1.4.0

func (m *ReqReserveAdd) GetCount() uint32

func (*ReqReserveAdd) GetDate added in v1.4.5

func (m *ReqReserveAdd) GetDate() string

func (*ReqReserveAdd) GetEnd added in v1.4.6

func (m *ReqReserveAdd) GetEnd() uint32

func (*ReqReserveAdd) GetKind added in v1.4.0

func (m *ReqReserveAdd) GetKind() uint32

func (*ReqReserveAdd) GetName added in v1.4.0

func (m *ReqReserveAdd) GetName() string

func (*ReqReserveAdd) GetOperator added in v1.4.0

func (m *ReqReserveAdd) GetOperator() string

func (*ReqReserveAdd) GetRemark added in v1.4.0

func (m *ReqReserveAdd) GetRemark() string

func (*ReqReserveAdd) GetScene added in v1.4.0

func (m *ReqReserveAdd) GetScene() string

func (*ReqReserveAdd) GetUint added in v1.4.5

func (m *ReqReserveAdd) GetUint() string

func (*ReqReserveAdd) ProtoMessage added in v1.4.0

func (*ReqReserveAdd) ProtoMessage()

func (*ReqReserveAdd) Reset added in v1.4.0

func (m *ReqReserveAdd) Reset()

func (*ReqReserveAdd) String added in v1.4.0

func (m *ReqReserveAdd) String() string

func (*ReqReserveAdd) XXX_DiscardUnknown added in v1.4.0

func (m *ReqReserveAdd) XXX_DiscardUnknown()

func (*ReqReserveAdd) XXX_Marshal added in v1.4.0

func (m *ReqReserveAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqReserveAdd) XXX_Merge added in v1.4.0

func (m *ReqReserveAdd) XXX_Merge(src proto.Message)

func (*ReqReserveAdd) XXX_Size added in v1.4.0

func (m *ReqReserveAdd) XXX_Size() int

func (*ReqReserveAdd) XXX_Unmarshal added in v1.4.0

func (m *ReqReserveAdd) XXX_Unmarshal(b []byte) error

type ReqScheduleAdd added in v1.1.0

type ReqScheduleAdd struct {
	Uid                  string        `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Name                 string        `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Remark               string        `protobuf:"bytes,3,opt,name=remark,proto3" json:"remark,omitempty"`
	Owner                string        `protobuf:"bytes,4,opt,name=owner,proto3" json:"owner,omitempty"`
	Operator             string        `protobuf:"bytes,5,opt,name=operator,proto3" json:"operator,omitempty"`
	Quote                string        `protobuf:"bytes,6,opt,name=quote,proto3" json:"quote,omitempty"`
	Color                string        `protobuf:"bytes,7,opt,name=color,proto3" json:"color,omitempty"`
	Ignore               uint32        `protobuf:"varint,8,opt,name=ignore,proto3" json:"ignore,omitempty"`
	Type                 uint32        `protobuf:"varint,9,opt,name=type,proto3" json:"type,omitempty"`
	Date                 *DurationInfo `protobuf:"bytes,11,opt,name=date,proto3" json:"date,omitempty"`
	Time                 *DurationInfo `protobuf:"bytes,12,opt,name=time,proto3" json:"time,omitempty"`
	Targets              []string      `protobuf:"bytes,15,rep,name=targets,proto3" json:"targets,omitempty"`
	Weekdays             []uint32      `protobuf:"varint,16,rep,packed,name=weekdays,proto3" json:"weekdays,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*ReqScheduleAdd) Descriptor added in v1.1.0

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

func (*ReqScheduleAdd) GetColor added in v1.1.0

func (m *ReqScheduleAdd) GetColor() string

func (*ReqScheduleAdd) GetDate added in v1.1.0

func (m *ReqScheduleAdd) GetDate() *DurationInfo

func (*ReqScheduleAdd) GetIgnore added in v1.1.0

func (m *ReqScheduleAdd) GetIgnore() uint32

func (*ReqScheduleAdd) GetName added in v1.1.0

func (m *ReqScheduleAdd) GetName() string

func (*ReqScheduleAdd) GetOperator added in v1.1.0

func (m *ReqScheduleAdd) GetOperator() string

func (*ReqScheduleAdd) GetOwner added in v1.1.0

func (m *ReqScheduleAdd) GetOwner() string

func (*ReqScheduleAdd) GetQuote added in v1.1.5

func (m *ReqScheduleAdd) GetQuote() string

func (*ReqScheduleAdd) GetRemark added in v1.1.0

func (m *ReqScheduleAdd) GetRemark() string

func (*ReqScheduleAdd) GetTargets added in v1.1.0

func (m *ReqScheduleAdd) GetTargets() []string

func (*ReqScheduleAdd) GetTime added in v1.1.0

func (m *ReqScheduleAdd) GetTime() *DurationInfo

func (*ReqScheduleAdd) GetType added in v1.1.0

func (m *ReqScheduleAdd) GetType() uint32

func (*ReqScheduleAdd) GetUid added in v1.1.0

func (m *ReqScheduleAdd) GetUid() string

func (*ReqScheduleAdd) GetWeekdays added in v1.1.3

func (m *ReqScheduleAdd) GetWeekdays() []uint32

func (*ReqScheduleAdd) ProtoMessage added in v1.1.0

func (*ReqScheduleAdd) ProtoMessage()

func (*ReqScheduleAdd) Reset added in v1.1.0

func (m *ReqScheduleAdd) Reset()

func (*ReqScheduleAdd) String added in v1.1.0

func (m *ReqScheduleAdd) String() string

func (*ReqScheduleAdd) XXX_DiscardUnknown added in v1.1.0

func (m *ReqScheduleAdd) XXX_DiscardUnknown()

func (*ReqScheduleAdd) XXX_Marshal added in v1.1.0

func (m *ReqScheduleAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqScheduleAdd) XXX_Merge added in v1.1.0

func (m *ReqScheduleAdd) XXX_Merge(src proto.Message)

func (*ReqScheduleAdd) XXX_Size added in v1.1.0

func (m *ReqScheduleAdd) XXX_Size() int

func (*ReqScheduleAdd) XXX_Unmarshal added in v1.1.0

func (m *ReqScheduleAdd) XXX_Unmarshal(b []byte) error

type RequestFilter added in v1.0.2

type RequestFilter struct {
	Scene                string   `protobuf:"bytes,1,opt,name=scene,proto3" json:"scene,omitempty"`
	Field                string   `protobuf:"bytes,2,opt,name=field,proto3" json:"field,omitempty"`
	Value                string   `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	Page                 uint32   `protobuf:"varint,4,opt,name=page,proto3" json:"page,omitempty"`
	Number               uint32   `protobuf:"varint,5,opt,name=number,proto3" json:"number,omitempty"`
	List                 []string `protobuf:"bytes,7,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RequestFilter) Descriptor added in v1.0.2

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

func (*RequestFilter) GetField added in v1.0.2

func (m *RequestFilter) GetField() string

func (*RequestFilter) GetList added in v1.0.2

func (m *RequestFilter) GetList() []string

func (*RequestFilter) GetNumber added in v1.0.2

func (m *RequestFilter) GetNumber() uint32

func (*RequestFilter) GetPage added in v1.0.2

func (m *RequestFilter) GetPage() uint32

func (*RequestFilter) GetScene added in v1.0.2

func (m *RequestFilter) GetScene() string

func (*RequestFilter) GetValue added in v1.0.2

func (m *RequestFilter) GetValue() string

func (*RequestFilter) ProtoMessage added in v1.0.2

func (*RequestFilter) ProtoMessage()

func (*RequestFilter) Reset added in v1.0.2

func (m *RequestFilter) Reset()

func (*RequestFilter) String added in v1.0.2

func (m *RequestFilter) String() string

func (*RequestFilter) XXX_DiscardUnknown added in v1.0.2

func (m *RequestFilter) XXX_DiscardUnknown()

func (*RequestFilter) XXX_Marshal added in v1.0.2

func (m *RequestFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestFilter) XXX_Merge added in v1.0.2

func (m *RequestFilter) XXX_Merge(src proto.Message)

func (*RequestFilter) XXX_Size added in v1.0.2

func (m *RequestFilter) XXX_Size() int

func (*RequestFilter) XXX_Unmarshal added in v1.0.2

func (m *RequestFilter) XXX_Unmarshal(b []byte) error

type RequestFlag added in v1.2.0

type RequestFlag struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Operator             string   `protobuf:"bytes,2,opt,name=operator,proto3" json:"operator,omitempty"`
	Flag                 uint32   `protobuf:"varint,3,opt,name=flag,proto3" json:"flag,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RequestFlag) Descriptor added in v1.2.0

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

func (*RequestFlag) GetFlag added in v1.2.0

func (m *RequestFlag) GetFlag() uint32

func (*RequestFlag) GetOperator added in v1.2.0

func (m *RequestFlag) GetOperator() string

func (*RequestFlag) GetUid added in v1.2.0

func (m *RequestFlag) GetUid() string

func (*RequestFlag) ProtoMessage added in v1.2.0

func (*RequestFlag) ProtoMessage()

func (*RequestFlag) Reset added in v1.2.0

func (m *RequestFlag) Reset()

func (*RequestFlag) String added in v1.2.0

func (m *RequestFlag) String() string

func (*RequestFlag) XXX_DiscardUnknown added in v1.2.0

func (m *RequestFlag) XXX_DiscardUnknown()

func (*RequestFlag) XXX_Marshal added in v1.2.0

func (m *RequestFlag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestFlag) XXX_Merge added in v1.2.0

func (m *RequestFlag) XXX_Merge(src proto.Message)

func (*RequestFlag) XXX_Size added in v1.2.0

func (m *RequestFlag) XXX_Size() int

func (*RequestFlag) XXX_Unmarshal added in v1.2.0

func (m *RequestFlag) XXX_Unmarshal(b []byte) error

type RequestIDInfo

type RequestIDInfo struct {
	Id                   uint64   `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Operator             string   `protobuf:"bytes,2,opt,name=operator,proto3" json:"operator,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RequestIDInfo) Descriptor

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

func (*RequestIDInfo) GetId

func (m *RequestIDInfo) GetId() uint64

func (*RequestIDInfo) GetOperator

func (m *RequestIDInfo) GetOperator() string

func (*RequestIDInfo) ProtoMessage

func (*RequestIDInfo) ProtoMessage()

func (*RequestIDInfo) Reset

func (m *RequestIDInfo) Reset()

func (*RequestIDInfo) String

func (m *RequestIDInfo) String() string

func (*RequestIDInfo) XXX_DiscardUnknown

func (m *RequestIDInfo) XXX_DiscardUnknown()

func (*RequestIDInfo) XXX_Marshal

func (m *RequestIDInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestIDInfo) XXX_Merge

func (m *RequestIDInfo) XXX_Merge(src proto.Message)

func (*RequestIDInfo) XXX_Size

func (m *RequestIDInfo) XXX_Size() int

func (*RequestIDInfo) XXX_Unmarshal

func (m *RequestIDInfo) XXX_Unmarshal(b []byte) error

type RequestInfo

type RequestInfo struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Operator             string   `protobuf:"bytes,2,opt,name=operator,proto3" json:"operator,omitempty"`
	Type                 uint32   `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RequestInfo) Descriptor

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

func (*RequestInfo) GetOperator

func (m *RequestInfo) GetOperator() string

func (*RequestInfo) GetType added in v1.0.5

func (m *RequestInfo) GetType() uint32

func (*RequestInfo) GetUid

func (m *RequestInfo) GetUid() string

func (*RequestInfo) ProtoMessage

func (*RequestInfo) ProtoMessage()

func (*RequestInfo) Reset

func (m *RequestInfo) Reset()

func (*RequestInfo) String

func (m *RequestInfo) String() string

func (*RequestInfo) XXX_DiscardUnknown

func (m *RequestInfo) XXX_DiscardUnknown()

func (*RequestInfo) XXX_Marshal

func (m *RequestInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestInfo) XXX_Merge

func (m *RequestInfo) XXX_Merge(src proto.Message)

func (*RequestInfo) XXX_Size

func (m *RequestInfo) XXX_Size() int

func (*RequestInfo) XXX_Unmarshal

func (m *RequestInfo) XXX_Unmarshal(b []byte) error

type RequestPage

type RequestPage struct {
	Number               uint32   `protobuf:"varint,1,opt,name=number,proto3" json:"number,omitempty"`
	Page                 uint32   `protobuf:"varint,2,opt,name=page,proto3" json:"page,omitempty"`
	Owner                string   `protobuf:"bytes,3,opt,name=owner,proto3" json:"owner,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RequestPage) Descriptor

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

func (*RequestPage) GetNumber

func (m *RequestPage) GetNumber() uint32

func (*RequestPage) GetOwner added in v1.0.5

func (m *RequestPage) GetOwner() string

func (*RequestPage) GetPage

func (m *RequestPage) GetPage() uint32

func (*RequestPage) ProtoMessage

func (*RequestPage) ProtoMessage()

func (*RequestPage) Reset

func (m *RequestPage) Reset()

func (*RequestPage) String

func (m *RequestPage) String() string

func (*RequestPage) XXX_DiscardUnknown

func (m *RequestPage) XXX_DiscardUnknown()

func (*RequestPage) XXX_Marshal

func (m *RequestPage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestPage) XXX_Merge

func (m *RequestPage) XXX_Merge(src proto.Message)

func (*RequestPage) XXX_Size

func (m *RequestPage) XXX_Size() int

func (*RequestPage) XXX_Unmarshal

func (m *RequestPage) XXX_Unmarshal(b []byte) error

type RequestUpdate added in v1.0.2

type RequestUpdate struct {
	Scene                string   `protobuf:"bytes,1,opt,name=scene,proto3" json:"scene,omitempty"`
	Uid                  string   `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
	Field                string   `protobuf:"bytes,3,opt,name=field,proto3" json:"field,omitempty"`
	Value                string   `protobuf:"bytes,4,opt,name=value,proto3" json:"value,omitempty"`
	Operator             string   `protobuf:"bytes,5,opt,name=operator,proto3" json:"operator,omitempty"`
	List                 []string `protobuf:"bytes,20,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RequestUpdate) Descriptor added in v1.0.2

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

func (*RequestUpdate) GetField added in v1.0.2

func (m *RequestUpdate) GetField() string

func (*RequestUpdate) GetList added in v1.0.2

func (m *RequestUpdate) GetList() []string

func (*RequestUpdate) GetOperator added in v1.0.2

func (m *RequestUpdate) GetOperator() string

func (*RequestUpdate) GetScene added in v1.0.2

func (m *RequestUpdate) GetScene() string

func (*RequestUpdate) GetUid added in v1.0.2

func (m *RequestUpdate) GetUid() string

func (*RequestUpdate) GetValue added in v1.0.2

func (m *RequestUpdate) GetValue() string

func (*RequestUpdate) ProtoMessage added in v1.0.2

func (*RequestUpdate) ProtoMessage()

func (*RequestUpdate) Reset added in v1.0.2

func (m *RequestUpdate) Reset()

func (*RequestUpdate) String added in v1.0.2

func (m *RequestUpdate) String() string

func (*RequestUpdate) XXX_DiscardUnknown added in v1.0.2

func (m *RequestUpdate) XXX_DiscardUnknown()

func (*RequestUpdate) XXX_Marshal added in v1.0.2

func (m *RequestUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestUpdate) XXX_Merge added in v1.0.2

func (m *RequestUpdate) XXX_Merge(src proto.Message)

func (*RequestUpdate) XXX_Size added in v1.0.2

func (m *RequestUpdate) XXX_Size() int

func (*RequestUpdate) XXX_Unmarshal added in v1.0.2

func (m *RequestUpdate) XXX_Unmarshal(b []byte) error

type ReserveInfo added in v1.4.0

type ReserveInfo struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Id                   uint64   `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Created              int64    `protobuf:"varint,3,opt,name=created,proto3" json:"created,omitempty"`
	Updated              int64    `protobuf:"varint,4,opt,name=updated,proto3" json:"updated,omitempty"`
	Creator              string   `protobuf:"bytes,5,opt,name=creator,proto3" json:"creator,omitempty"`
	Operator             string   `protobuf:"bytes,6,opt,name=operator,proto3" json:"operator,omitempty"`
	Name                 string   `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
	Remark               string   `protobuf:"bytes,8,opt,name=remark,proto3" json:"remark,omitempty"`
	Scene                string   `protobuf:"bytes,9,opt,name=scene,proto3" json:"scene,omitempty"`
	Contact              string   `protobuf:"bytes,10,opt,name=contact,proto3" json:"contact,omitempty"`
	Count                uint32   `protobuf:"varint,11,opt,name=count,proto3" json:"count,omitempty"`
	Date                 string   `protobuf:"bytes,12,opt,name=date,proto3" json:"date,omitempty"`
	Type                 uint32   `protobuf:"varint,13,opt,name=type,proto3" json:"type,omitempty"`
	Status               uint32   `protobuf:"varint,14,opt,name=status,proto3" json:"status,omitempty"`
	Uint                 string   `protobuf:"bytes,15,opt,name=uint,proto3" json:"uint,omitempty"`
	Begin                uint32   `protobuf:"varint,16,opt,name=begin,proto3" json:"begin,omitempty"`
	End                  uint32   `protobuf:"varint,17,opt,name=end,proto3" json:"end,omitempty"`
	Assets               []string `protobuf:"bytes,21,rep,name=assets,proto3" json:"assets,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReserveInfo) Descriptor added in v1.4.0

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

func (*ReserveInfo) GetAssets added in v1.4.7

func (m *ReserveInfo) GetAssets() []string

func (*ReserveInfo) GetBegin added in v1.4.6

func (m *ReserveInfo) GetBegin() uint32

func (*ReserveInfo) GetContact added in v1.4.0

func (m *ReserveInfo) GetContact() string

func (*ReserveInfo) GetCount added in v1.4.0

func (m *ReserveInfo) GetCount() uint32

func (*ReserveInfo) GetCreated added in v1.4.0

func (m *ReserveInfo) GetCreated() int64

func (*ReserveInfo) GetCreator added in v1.4.0

func (m *ReserveInfo) GetCreator() string

func (*ReserveInfo) GetDate added in v1.4.0

func (m *ReserveInfo) GetDate() string

func (*ReserveInfo) GetEnd added in v1.4.6

func (m *ReserveInfo) GetEnd() uint32

func (*ReserveInfo) GetId added in v1.4.0

func (m *ReserveInfo) GetId() uint64

func (*ReserveInfo) GetName added in v1.4.0

func (m *ReserveInfo) GetName() string

func (*ReserveInfo) GetOperator added in v1.4.0

func (m *ReserveInfo) GetOperator() string

func (*ReserveInfo) GetRemark added in v1.4.0

func (m *ReserveInfo) GetRemark() string

func (*ReserveInfo) GetScene added in v1.4.0

func (m *ReserveInfo) GetScene() string

func (*ReserveInfo) GetStatus added in v1.4.1

func (m *ReserveInfo) GetStatus() uint32

func (*ReserveInfo) GetType added in v1.4.0

func (m *ReserveInfo) GetType() uint32

func (*ReserveInfo) GetUid added in v1.4.0

func (m *ReserveInfo) GetUid() string

func (*ReserveInfo) GetUint added in v1.4.5

func (m *ReserveInfo) GetUint() string

func (*ReserveInfo) GetUpdated added in v1.4.0

func (m *ReserveInfo) GetUpdated() int64

func (*ReserveInfo) ProtoMessage added in v1.4.0

func (*ReserveInfo) ProtoMessage()

func (*ReserveInfo) Reset added in v1.4.0

func (m *ReserveInfo) Reset()

func (*ReserveInfo) String added in v1.4.0

func (m *ReserveInfo) String() string

func (*ReserveInfo) XXX_DiscardUnknown added in v1.4.0

func (m *ReserveInfo) XXX_DiscardUnknown()

func (*ReserveInfo) XXX_Marshal added in v1.4.0

func (m *ReserveInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReserveInfo) XXX_Merge added in v1.4.0

func (m *ReserveInfo) XXX_Merge(src proto.Message)

func (*ReserveInfo) XXX_Size added in v1.4.0

func (m *ReserveInfo) XXX_Size() int

func (*ReserveInfo) XXX_Unmarshal added in v1.4.0

func (m *ReserveInfo) XXX_Unmarshal(b []byte) error

type ReserveService added in v1.4.0

type ReserveService interface {
	AddOne(ctx context.Context, in *ReqReserveAdd, opts ...client.CallOption) (*ReplyReserveInfo, error)
	GetOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyReserveInfo, error)
	RemoveOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyInfo, error)
	GetByFilter(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyReserveList, error)
	GetStatistic(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyStatistic, error)
	UpdateByFilter(ctx context.Context, in *RequestUpdate, opts ...client.CallOption) (*ReplyInfo, error)
}

func NewReserveService added in v1.4.0

func NewReserveService(name string, c client.Client) ReserveService

type ScheduleInfo added in v1.1.0

type ScheduleInfo struct {
	Uid                  string        `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Id                   uint64        `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Type                 uint32        `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`
	Created              int64         `protobuf:"varint,4,opt,name=created,proto3" json:"created,omitempty"`
	Updated              int64         `protobuf:"varint,5,opt,name=updated,proto3" json:"updated,omitempty"`
	Creator              string        `protobuf:"bytes,6,opt,name=creator,proto3" json:"creator,omitempty"`
	Operator             string        `protobuf:"bytes,7,opt,name=operator,proto3" json:"operator,omitempty"`
	Name                 string        `protobuf:"bytes,8,opt,name=name,proto3" json:"name,omitempty"`
	Remark               string        `protobuf:"bytes,9,opt,name=remark,proto3" json:"remark,omitempty"`
	Owner                string        `protobuf:"bytes,10,opt,name=owner,proto3" json:"owner,omitempty"`
	Status               uint32        `protobuf:"varint,11,opt,name=status,proto3" json:"status,omitempty"`
	Quote                string        `protobuf:"bytes,12,opt,name=quote,proto3" json:"quote,omitempty"`
	Color                string        `protobuf:"bytes,13,opt,name=color,proto3" json:"color,omitempty"`
	Ignore               uint32        `protobuf:"varint,14,opt,name=ignore,proto3" json:"ignore,omitempty"`
	Date                 *DurationInfo `protobuf:"bytes,21,opt,name=date,proto3" json:"date,omitempty"`
	Time                 *DurationInfo `protobuf:"bytes,22,opt,name=time,proto3" json:"time,omitempty"`
	Weekdays             []uint32      `protobuf:"varint,30,rep,packed,name=weekdays,proto3" json:"weekdays,omitempty"`
	Targets              []string      `protobuf:"bytes,31,rep,name=targets,proto3" json:"targets,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*ScheduleInfo) Descriptor added in v1.1.0

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

func (*ScheduleInfo) GetColor added in v1.1.0

func (m *ScheduleInfo) GetColor() string

func (*ScheduleInfo) GetCreated added in v1.1.0

func (m *ScheduleInfo) GetCreated() int64

func (*ScheduleInfo) GetCreator added in v1.1.0

func (m *ScheduleInfo) GetCreator() string

func (*ScheduleInfo) GetDate added in v1.1.0

func (m *ScheduleInfo) GetDate() *DurationInfo

func (*ScheduleInfo) GetId added in v1.1.0

func (m *ScheduleInfo) GetId() uint64

func (*ScheduleInfo) GetIgnore added in v1.1.0

func (m *ScheduleInfo) GetIgnore() uint32

func (*ScheduleInfo) GetName added in v1.1.0

func (m *ScheduleInfo) GetName() string

func (*ScheduleInfo) GetOperator added in v1.1.0

func (m *ScheduleInfo) GetOperator() string

func (*ScheduleInfo) GetOwner added in v1.1.0

func (m *ScheduleInfo) GetOwner() string

func (*ScheduleInfo) GetQuote added in v1.1.5

func (m *ScheduleInfo) GetQuote() string

func (*ScheduleInfo) GetRemark added in v1.1.0

func (m *ScheduleInfo) GetRemark() string

func (*ScheduleInfo) GetStatus added in v1.1.0

func (m *ScheduleInfo) GetStatus() uint32

func (*ScheduleInfo) GetTargets added in v1.1.0

func (m *ScheduleInfo) GetTargets() []string

func (*ScheduleInfo) GetTime added in v1.1.0

func (m *ScheduleInfo) GetTime() *DurationInfo

func (*ScheduleInfo) GetType added in v1.1.0

func (m *ScheduleInfo) GetType() uint32

func (*ScheduleInfo) GetUid added in v1.1.0

func (m *ScheduleInfo) GetUid() string

func (*ScheduleInfo) GetUpdated added in v1.1.0

func (m *ScheduleInfo) GetUpdated() int64

func (*ScheduleInfo) GetWeekdays added in v1.1.2

func (m *ScheduleInfo) GetWeekdays() []uint32

func (*ScheduleInfo) ProtoMessage added in v1.1.0

func (*ScheduleInfo) ProtoMessage()

func (*ScheduleInfo) Reset added in v1.1.0

func (m *ScheduleInfo) Reset()

func (*ScheduleInfo) String added in v1.1.0

func (m *ScheduleInfo) String() string

func (*ScheduleInfo) XXX_DiscardUnknown added in v1.1.0

func (m *ScheduleInfo) XXX_DiscardUnknown()

func (*ScheduleInfo) XXX_Marshal added in v1.1.0

func (m *ScheduleInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ScheduleInfo) XXX_Merge added in v1.1.0

func (m *ScheduleInfo) XXX_Merge(src proto.Message)

func (*ScheduleInfo) XXX_Size added in v1.1.0

func (m *ScheduleInfo) XXX_Size() int

func (*ScheduleInfo) XXX_Unmarshal added in v1.1.0

func (m *ScheduleInfo) XXX_Unmarshal(b []byte) error

type ScheduleService added in v1.1.0

type ScheduleService interface {
	AddOne(ctx context.Context, in *ReqScheduleAdd, opts ...client.CallOption) (*ReplyScheduleInfo, error)
	GetOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyScheduleInfo, error)
	GetByFilter(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyScheduleList, error)
	GetStatistic(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyStatistic, error)
	UpdateByFilter(ctx context.Context, in *RequestUpdate, opts ...client.CallOption) (*ReplyInfo, error)
	RemoveOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyInfo, error)
}

func NewScheduleService added in v1.1.0

func NewScheduleService(name string, c client.Client) ScheduleService

Jump to

Keyboard shortcuts

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