cascade

package
v1.0.4 Latest Latest
Warning

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

Go to latest
Published: Feb 19, 2024 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

View Source
const (
	CascadeClient_LowerCreate_FullMethodName    = "/cascade.CascadeClient/LowerCreate"
	CascadeClient_LowerSearch_FullMethodName    = "/cascade.CascadeClient/LowerSearch"
	CascadeClient_LowerUpdate_FullMethodName    = "/cascade.CascadeClient/LowerUpdate"
	CascadeClient_LowerDel_FullMethodName       = "/cascade.CascadeClient/LowerDel"
	CascadeClient_LowerGetInfo_FullMethodName   = "/cascade.CascadeClient/LowerGetInfo"
	CascadeClient_SuperiorGet_FullMethodName    = "/cascade.CascadeClient/SuperiorGet"
	CascadeClient_SuperiorSet_FullMethodName    = "/cascade.CascadeClient/SuperiorSet"
	CascadeClient_SyncTime_FullMethodName       = "/cascade.CascadeClient/SyncTime"
	CascadeClient_HeartBeat_FullMethodName      = "/cascade.CascadeClient/HeartBeat"
	CascadeClient_CallCreate_FullMethodName     = "/cascade.CascadeClient/CallCreate"
	CascadeClient_CallModify_FullMethodName     = "/cascade.CascadeClient/CallModify"
	CascadeClient_CallDelete_FullMethodName     = "/cascade.CascadeClient/CallDelete"
	CascadeClient_CallGroupCall_FullMethodName  = "/cascade.CascadeClient/CallGroupCall"
	CascadeClient_CallSetMember_FullMethodName  = "/cascade.CascadeClient/CallSetMember"
	CascadeClient_CallHangupUser_FullMethodName = "/cascade.CascadeClient/CallHangupUser"
)

Variables

View Source
var (
	SorterParam_Order_name = map[int32]string{
		0: "ASC",
		1: "DESC",
	}
	SorterParam_Order_value = map[string]int32{
		"ASC":  0,
		"DESC": 1,
	}
)

Enum value maps for SorterParam_Order.

View Source
var CascadeClient_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "cascade.CascadeClient",
	HandlerType: (*CascadeClientServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "LowerCreate",
			Handler:    _CascadeClient_LowerCreate_Handler,
		},
		{
			MethodName: "LowerSearch",
			Handler:    _CascadeClient_LowerSearch_Handler,
		},
		{
			MethodName: "LowerUpdate",
			Handler:    _CascadeClient_LowerUpdate_Handler,
		},
		{
			MethodName: "LowerDel",
			Handler:    _CascadeClient_LowerDel_Handler,
		},
		{
			MethodName: "LowerGetInfo",
			Handler:    _CascadeClient_LowerGetInfo_Handler,
		},
		{
			MethodName: "SuperiorGet",
			Handler:    _CascadeClient_SuperiorGet_Handler,
		},
		{
			MethodName: "SuperiorSet",
			Handler:    _CascadeClient_SuperiorSet_Handler,
		},
		{
			MethodName: "SyncTime",
			Handler:    _CascadeClient_SyncTime_Handler,
		},
		{
			MethodName: "HeartBeat",
			Handler:    _CascadeClient_HeartBeat_Handler,
		},
		{
			MethodName: "CallCreate",
			Handler:    _CascadeClient_CallCreate_Handler,
		},
		{
			MethodName: "CallModify",
			Handler:    _CascadeClient_CallModify_Handler,
		},
		{
			MethodName: "CallDelete",
			Handler:    _CascadeClient_CallDelete_Handler,
		},
		{
			MethodName: "CallGroupCall",
			Handler:    _CascadeClient_CallGroupCall_Handler,
		},
		{
			MethodName: "CallSetMember",
			Handler:    _CascadeClient_CallSetMember_Handler,
		},
		{
			MethodName: "CallHangupUser",
			Handler:    _CascadeClient_CallHangupUser_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "cascade.rpcFlag",
}

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

View Source
var File_cascade_proto protoreflect.FileDescriptor

Functions

func RegisterCascadeClientServer

func RegisterCascadeClientServer(s grpc.ServiceRegistrar, srv CascadeClientServer)

Types

type CascadeClientClient

type CascadeClientClient interface {
	// 上下级级联配置
	LowerCreate(ctx context.Context, in *ReqLowerCreate, opts ...grpc.CallOption) (*RespLowerCreate, error)
	LowerSearch(ctx context.Context, in *ReqLowerSearch, opts ...grpc.CallOption) (*RespLowerSearch, error)
	LowerUpdate(ctx context.Context, in *ReqLowerUpdate, opts ...grpc.CallOption) (*RespLowerUpdate, error)
	LowerDel(ctx context.Context, in *ReqLowerDel, opts ...grpc.CallOption) (*RespLowerDel, error)
	LowerGetInfo(ctx context.Context, in *ReqLowerGetInfo, opts ...grpc.CallOption) (*RespLowerGetInfo, error)
	SuperiorGet(ctx context.Context, in *ReqSuperiorGet, opts ...grpc.CallOption) (*RespSuperiorGet, error)
	SuperiorSet(ctx context.Context, in *ReqSuperiorSet, opts ...grpc.CallOption) (*RespSuperiorSet, error)
	// 其它操作
	SyncTime(ctx context.Context, in *ReqSyncTime, opts ...grpc.CallOption) (*RespSyncTime, error)
	HeartBeat(ctx context.Context, in *ReqHeartBeat, opts ...grpc.CallOption) (*RespHeartBeat, error)
	// 网关操作
	CallCreate(ctx context.Context, in *ReqCgwCallCreate, opts ...grpc.CallOption) (*RespCgwCallCreate, error)
	CallModify(ctx context.Context, in *ReqCgwCallModify, opts ...grpc.CallOption) (*RespCgwCallModify, error)
	CallDelete(ctx context.Context, in *ReqCgwCallDelete, opts ...grpc.CallOption) (*RespCgwCallDelete, error)
	CallGroupCall(ctx context.Context, in *ReqCgwCallGroupCall, opts ...grpc.CallOption) (*RespCgwCallGroupCall, error)
	CallSetMember(ctx context.Context, in *ReqCgwCallSetMember, opts ...grpc.CallOption) (*RespCgwCallSetMember, error)
	CallHangupUser(ctx context.Context, in *ReqCgwCallHangupUser, opts ...grpc.CallOption) (*RespCgwCallHangupUser, error)
}

CascadeClientClient is the client API for CascadeClient service.

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

type CascadeClientServer

CascadeClientServer is the server API for CascadeClient service. All implementations must embed UnimplementedCascadeClientServer for forward compatibility

type CascadeConnStatus

type CascadeConnStatus struct {
	Status  int64 `protobuf:"varint,1,opt,name=Status,proto3" json:"Status,omitempty"`
	ErrCode int64 `protobuf:"varint,2,opt,name=ErrCode,proto3" json:"ErrCode,omitempty"`
	// contains filtered or unexported fields
}

func (*CascadeConnStatus) Descriptor deprecated

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

Deprecated: Use CascadeConnStatus.ProtoReflect.Descriptor instead.

func (*CascadeConnStatus) GetErrCode

func (x *CascadeConnStatus) GetErrCode() int64

func (*CascadeConnStatus) GetStatus

func (x *CascadeConnStatus) GetStatus() int64

func (*CascadeConnStatus) ProtoMessage

func (*CascadeConnStatus) ProtoMessage()

func (*CascadeConnStatus) ProtoReflect

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

func (*CascadeConnStatus) Reset

func (x *CascadeConnStatus) Reset()

func (*CascadeConnStatus) String

func (x *CascadeConnStatus) String() string

type CascadeLower

type CascadeLower struct {
	CascadeId      string `protobuf:"bytes,1,opt,name=CascadeId,proto3" json:"CascadeId,omitempty"`
	LowerGroupName string `protobuf:"bytes,2,opt,name=LowerGroupName,proto3" json:"LowerGroupName,omitempty"`
	LowerGid       string `protobuf:"bytes,3,opt,name=LowerGid,proto3" json:"LowerGid,omitempty"`
	LowerSn        string `protobuf:"bytes,4,opt,name=LowerSn,proto3" json:"LowerSn,omitempty"`
	LowerType      int64  `protobuf:"varint,5,opt,name=LowerType,proto3" json:"LowerType,omitempty"`
	Gid            string `protobuf:"bytes,6,opt,name=Gid,proto3" json:"Gid,omitempty"`
	ApiAddr        string `protobuf:"bytes,7,opt,name=ApiAddr,proto3" json:"ApiAddr,omitempty"`
	Name           string `protobuf:"bytes,8,opt,name=Name,proto3" json:"Name,omitempty"`
	SipAddr        string `protobuf:"bytes,9,opt,name=SipAddr,proto3" json:"SipAddr,omitempty"`
	AuthPwd        string `protobuf:"bytes,10,opt,name=AuthPwd,proto3" json:"AuthPwd,omitempty"`
	AuthUser       string `protobuf:"bytes,11,opt,name=AuthUser,proto3" json:"AuthUser,omitempty"`
	Webhook        string `protobuf:"bytes,12,opt,name=Webhook,proto3" json:"Webhook,omitempty"`
	// contains filtered or unexported fields
}

func (*CascadeLower) Descriptor deprecated

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

Deprecated: Use CascadeLower.ProtoReflect.Descriptor instead.

func (*CascadeLower) GetApiAddr

func (x *CascadeLower) GetApiAddr() string

func (*CascadeLower) GetAuthPwd

func (x *CascadeLower) GetAuthPwd() string

func (*CascadeLower) GetAuthUser

func (x *CascadeLower) GetAuthUser() string

func (*CascadeLower) GetCascadeId

func (x *CascadeLower) GetCascadeId() string

func (*CascadeLower) GetGid

func (x *CascadeLower) GetGid() string

func (*CascadeLower) GetLowerGid

func (x *CascadeLower) GetLowerGid() string

func (*CascadeLower) GetLowerGroupName

func (x *CascadeLower) GetLowerGroupName() string

func (*CascadeLower) GetLowerSn

func (x *CascadeLower) GetLowerSn() string

func (*CascadeLower) GetLowerType

func (x *CascadeLower) GetLowerType() int64

func (*CascadeLower) GetName

func (x *CascadeLower) GetName() string

func (*CascadeLower) GetSipAddr

func (x *CascadeLower) GetSipAddr() string

func (*CascadeLower) GetWebhook

func (x *CascadeLower) GetWebhook() string

func (*CascadeLower) ProtoMessage

func (*CascadeLower) ProtoMessage()

func (*CascadeLower) ProtoReflect

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

func (*CascadeLower) Reset

func (x *CascadeLower) Reset()

func (*CascadeLower) String

func (x *CascadeLower) String() string

type CascadeSuperior

type CascadeSuperior struct {
	Name          string                 `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
	LastHeartBeat *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=LastHeartBeat,proto3" json:"LastHeartBeat,omitempty"`
	Expire        int64                  `protobuf:"varint,3,opt,name=Expire,proto3" json:"Expire,omitempty"`
	Sn            string                 `protobuf:"bytes,4,opt,name=Sn,proto3" json:"Sn,omitempty"`
	SnList        string                 `protobuf:"bytes,5,opt,name=SnList,proto3" json:"SnList,omitempty"`
	RemoteIp      string                 `protobuf:"bytes,6,opt,name=RemoteIp,proto3" json:"RemoteIp,omitempty"`
	Webhook       string                 `protobuf:"bytes,7,opt,name=Webhook,proto3" json:"Webhook,omitempty"`
	CbToken       string                 `protobuf:"bytes,8,opt,name=CbToken,proto3" json:"CbToken,omitempty"`
	ConfCount     int64                  `protobuf:"varint,9,opt,name=ConfCount,proto3" json:"ConfCount,omitempty"`
	ConnStatus    *CascadeConnStatus     `protobuf:"bytes,10,opt,name=ConnStatus,proto3" json:"ConnStatus,omitempty"`
	// contains filtered or unexported fields
}

func (*CascadeSuperior) Descriptor deprecated

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

Deprecated: Use CascadeSuperior.ProtoReflect.Descriptor instead.

func (*CascadeSuperior) GetCbToken

func (x *CascadeSuperior) GetCbToken() string

func (*CascadeSuperior) GetConfCount

func (x *CascadeSuperior) GetConfCount() int64

func (*CascadeSuperior) GetConnStatus

func (x *CascadeSuperior) GetConnStatus() *CascadeConnStatus

func (*CascadeSuperior) GetExpire

func (x *CascadeSuperior) GetExpire() int64

func (*CascadeSuperior) GetLastHeartBeat

func (x *CascadeSuperior) GetLastHeartBeat() *timestamppb.Timestamp

func (*CascadeSuperior) GetName

func (x *CascadeSuperior) GetName() string

func (*CascadeSuperior) GetRemoteIp

func (x *CascadeSuperior) GetRemoteIp() string

func (*CascadeSuperior) GetSn

func (x *CascadeSuperior) GetSn() string

func (*CascadeSuperior) GetSnList

func (x *CascadeSuperior) GetSnList() string

func (*CascadeSuperior) GetWebhook

func (x *CascadeSuperior) GetWebhook() string

func (*CascadeSuperior) ProtoMessage

func (*CascadeSuperior) ProtoMessage()

func (*CascadeSuperior) ProtoReflect

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

func (*CascadeSuperior) Reset

func (x *CascadeSuperior) Reset()

func (*CascadeSuperior) String

func (x *CascadeSuperior) String() string

type Invitee

type Invitee struct {
	Visitors []string `protobuf:"bytes,1,rep,name=Visitors,proto3" json:"Visitors,omitempty"`
	Members  []string `protobuf:"bytes,2,rep,name=Members,proto3" json:"Members,omitempty"`
	None     []string `protobuf:"bytes,3,rep,name=None,proto3" json:"None,omitempty"`
	ObFlag   int64    `protobuf:"varint,4,opt,name=ObFlag,proto3" json:"ObFlag,omitempty"`
	// contains filtered or unexported fields
}

func (*Invitee) Descriptor deprecated

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

Deprecated: Use Invitee.ProtoReflect.Descriptor instead.

func (*Invitee) GetMembers

func (x *Invitee) GetMembers() []string

func (*Invitee) GetNone

func (x *Invitee) GetNone() []string

func (*Invitee) GetObFlag

func (x *Invitee) GetObFlag() int64

func (*Invitee) GetVisitors

func (x *Invitee) GetVisitors() []string

func (*Invitee) ProtoMessage

func (*Invitee) ProtoMessage()

func (*Invitee) ProtoReflect

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

func (*Invitee) Reset

func (x *Invitee) Reset()

func (*Invitee) String

func (x *Invitee) String() string

type MemberStatus

type MemberStatus struct {
	Nid               string `protobuf:"bytes,1,opt,name=Nid,proto3" json:"Nid,omitempty"`
	Name              string `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"`
	Id                string `protobuf:"bytes,3,opt,name=Id,proto3" json:"Id,omitempty"`
	Role              string `protobuf:"bytes,4,opt,name=Role,proto3" json:"Role,omitempty"`
	ConfState         int64  `protobuf:"varint,5,opt,name=ConfState,proto3" json:"ConfState,omitempty"`
	Status            string `protobuf:"bytes,6,opt,name=Status,proto3" json:"Status,omitempty"`
	Unifyrole         int64  `protobuf:"varint,7,opt,name=Unifyrole,proto3" json:"Unifyrole,omitempty"`
	Platform          string `protobuf:"bytes,8,opt,name=Platform,proto3" json:"Platform,omitempty"`
	Mic               int64  `protobuf:"varint,9,opt,name=Mic,proto3" json:"Mic,omitempty"`
	Micdevicestatus   int64  `protobuf:"varint,10,opt,name=Micdevicestatus,proto3" json:"Micdevicestatus,omitempty"`
	Micoper           int64  `protobuf:"varint,11,opt,name=Micoper,proto3" json:"Micoper,omitempty"`
	Nakeplatform      string `protobuf:"bytes,12,opt,name=Nakeplatform,proto3" json:"Nakeplatform,omitempty"`
	Manuallydial      bool   `protobuf:"varint,13,opt,name=Manuallydial,proto3" json:"Manuallydial,omitempty"`
	Camera            int64  `protobuf:"varint,14,opt,name=Camera,proto3" json:"Camera,omitempty"`
	Speaker           int64  `protobuf:"varint,15,opt,name=Speaker,proto3" json:"Speaker,omitempty"`
	Streamindex       int64  `protobuf:"varint,16,opt,name=Streamindex,proto3" json:"Streamindex,omitempty"`
	Lastdialheartbeat int64  `protobuf:"varint,17,opt,name=Lastdialheartbeat,proto3" json:"Lastdialheartbeat,omitempty"`
	Usermode          int64  `protobuf:"varint,18,opt,name=Usermode,proto3" json:"Usermode,omitempty"`
	Userlaststatus    int64  `protobuf:"varint,19,opt,name=Userlaststatus,proto3" json:"Userlaststatus,omitempty"`
	Proxylink         string `protobuf:"bytes,20,opt,name=Proxylink,proto3" json:"Proxylink,omitempty"`
	Faceability       int64  `protobuf:"varint,21,opt,name=Faceability,proto3" json:"Faceability,omitempty"`
	NickName          string `protobuf:"bytes,22,opt,name=NickName,proto3" json:"NickName,omitempty"`
	// contains filtered or unexported fields
}

func (*MemberStatus) Descriptor deprecated

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

Deprecated: Use MemberStatus.ProtoReflect.Descriptor instead.

func (*MemberStatus) GetCamera

func (x *MemberStatus) GetCamera() int64

func (*MemberStatus) GetConfState

func (x *MemberStatus) GetConfState() int64

func (*MemberStatus) GetFaceability

func (x *MemberStatus) GetFaceability() int64

func (*MemberStatus) GetId

func (x *MemberStatus) GetId() string

func (*MemberStatus) GetLastdialheartbeat

func (x *MemberStatus) GetLastdialheartbeat() int64

func (*MemberStatus) GetManuallydial

func (x *MemberStatus) GetManuallydial() bool

func (*MemberStatus) GetMic

func (x *MemberStatus) GetMic() int64

func (*MemberStatus) GetMicdevicestatus

func (x *MemberStatus) GetMicdevicestatus() int64

func (*MemberStatus) GetMicoper

func (x *MemberStatus) GetMicoper() int64

func (*MemberStatus) GetNakeplatform

func (x *MemberStatus) GetNakeplatform() string

func (*MemberStatus) GetName

func (x *MemberStatus) GetName() string

func (*MemberStatus) GetNickName

func (x *MemberStatus) GetNickName() string

func (*MemberStatus) GetNid

func (x *MemberStatus) GetNid() string

func (*MemberStatus) GetPlatform

func (x *MemberStatus) GetPlatform() string
func (x *MemberStatus) GetProxylink() string

func (*MemberStatus) GetRole

func (x *MemberStatus) GetRole() string

func (*MemberStatus) GetSpeaker

func (x *MemberStatus) GetSpeaker() int64

func (*MemberStatus) GetStatus

func (x *MemberStatus) GetStatus() string

func (*MemberStatus) GetStreamindex

func (x *MemberStatus) GetStreamindex() int64

func (*MemberStatus) GetUnifyrole

func (x *MemberStatus) GetUnifyrole() int64

func (*MemberStatus) GetUserlaststatus

func (x *MemberStatus) GetUserlaststatus() int64

func (*MemberStatus) GetUsermode

func (x *MemberStatus) GetUsermode() int64

func (*MemberStatus) ProtoMessage

func (*MemberStatus) ProtoMessage()

func (*MemberStatus) ProtoReflect

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

func (*MemberStatus) Reset

func (x *MemberStatus) Reset()

func (*MemberStatus) String

func (x *MemberStatus) String() string

type PageParam

type PageParam struct {
	PageNum  int32 `protobuf:"varint,1,opt,name=pageNum,proto3" json:"pageNum,omitempty"`   //当前页
	PageSize int32 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize,omitempty"` //查询数量
	// contains filtered or unexported fields
}

func (*PageParam) Descriptor deprecated

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

Deprecated: Use PageParam.ProtoReflect.Descriptor instead.

func (*PageParam) GetPageNum

func (x *PageParam) GetPageNum() int32

func (*PageParam) GetPageSize

func (x *PageParam) GetPageSize() int32

func (*PageParam) ProtoMessage

func (*PageParam) ProtoMessage()

func (*PageParam) ProtoReflect

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

func (*PageParam) Reset

func (x *PageParam) Reset()

func (*PageParam) String

func (x *PageParam) String() string

type ReqCgwCallCreate

type ReqCgwCallCreate struct {
	CascadeId          string          `protobuf:"bytes,1,opt,name=CascadeId,proto3" json:"CascadeId,omitempty"`
	CascadeType        int64           `protobuf:"varint,2,opt,name=CascadeType,proto3" json:"CascadeType,omitempty"`
	CascadeDemo        int64           `protobuf:"varint,3,opt,name=CascadeDemo,proto3" json:"CascadeDemo,omitempty"`
	ParentCascadeLevel int64           `protobuf:"varint,4,opt,name=ParentCascadeLevel,proto3" json:"ParentCascadeLevel,omitempty"`
	ApiAddr            string          `protobuf:"bytes,5,opt,name=ApiAddr,proto3" json:"ApiAddr,omitempty"`
	LowerInvitee       *Invitee        `protobuf:"bytes,6,opt,name=LowerInvitee,proto3" json:"LowerInvitee,omitempty"`
	CreateRoomData     *RoomData       `protobuf:"bytes,7,opt,name=CreateRoomData,proto3" json:"CreateRoomData,omitempty"`
	CascadeLowers      []*CascadeLower `protobuf:"bytes,8,rep,name=CascadeLowers,proto3" json:"CascadeLowers,omitempty"`
	// contains filtered or unexported fields
}

func (*ReqCgwCallCreate) Descriptor deprecated

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

Deprecated: Use ReqCgwCallCreate.ProtoReflect.Descriptor instead.

func (*ReqCgwCallCreate) GetApiAddr

func (x *ReqCgwCallCreate) GetApiAddr() string

func (*ReqCgwCallCreate) GetCascadeDemo

func (x *ReqCgwCallCreate) GetCascadeDemo() int64

func (*ReqCgwCallCreate) GetCascadeId

func (x *ReqCgwCallCreate) GetCascadeId() string

func (*ReqCgwCallCreate) GetCascadeLowers

func (x *ReqCgwCallCreate) GetCascadeLowers() []*CascadeLower

func (*ReqCgwCallCreate) GetCascadeType

func (x *ReqCgwCallCreate) GetCascadeType() int64

func (*ReqCgwCallCreate) GetCreateRoomData

func (x *ReqCgwCallCreate) GetCreateRoomData() *RoomData

func (*ReqCgwCallCreate) GetLowerInvitee

func (x *ReqCgwCallCreate) GetLowerInvitee() *Invitee

func (*ReqCgwCallCreate) GetParentCascadeLevel

func (x *ReqCgwCallCreate) GetParentCascadeLevel() int64

func (*ReqCgwCallCreate) ProtoMessage

func (*ReqCgwCallCreate) ProtoMessage()

func (*ReqCgwCallCreate) ProtoReflect

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

func (*ReqCgwCallCreate) Reset

func (x *ReqCgwCallCreate) Reset()

func (*ReqCgwCallCreate) String

func (x *ReqCgwCallCreate) String() string

type ReqCgwCallDelete

type ReqCgwCallDelete struct {
	Cid          string `protobuf:"bytes,1,opt,name=Cid,proto3" json:"Cid,omitempty"`
	CascadeId    string `protobuf:"bytes,2,opt,name=CascadeId,proto3" json:"CascadeId,omitempty"`
	Force        int32  `protobuf:"varint,3,opt,name=Force,proto3" json:"Force,omitempty"`
	FromSuperior uint64 `protobuf:"varint,4,opt,name=FromSuperior,proto3" json:"FromSuperior,omitempty"`
	// contains filtered or unexported fields
}

func (*ReqCgwCallDelete) Descriptor deprecated

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

Deprecated: Use ReqCgwCallDelete.ProtoReflect.Descriptor instead.

func (*ReqCgwCallDelete) GetCascadeId

func (x *ReqCgwCallDelete) GetCascadeId() string

func (*ReqCgwCallDelete) GetCid

func (x *ReqCgwCallDelete) GetCid() string

func (*ReqCgwCallDelete) GetForce

func (x *ReqCgwCallDelete) GetForce() int32

func (*ReqCgwCallDelete) GetFromSuperior

func (x *ReqCgwCallDelete) GetFromSuperior() uint64

func (*ReqCgwCallDelete) ProtoMessage

func (*ReqCgwCallDelete) ProtoMessage()

func (*ReqCgwCallDelete) ProtoReflect

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

func (*ReqCgwCallDelete) Reset

func (x *ReqCgwCallDelete) Reset()

func (*ReqCgwCallDelete) String

func (x *ReqCgwCallDelete) String() string

type ReqCgwCallGroupCall

type ReqCgwCallGroupCall struct {
	Cid       string `protobuf:"bytes,1,opt,name=Cid,proto3" json:"Cid,omitempty"`
	CascadeId string `protobuf:"bytes,2,opt,name=CascadeId,proto3" json:"CascadeId,omitempty"`
	// contains filtered or unexported fields
}

func (*ReqCgwCallGroupCall) Descriptor deprecated

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

Deprecated: Use ReqCgwCallGroupCall.ProtoReflect.Descriptor instead.

func (*ReqCgwCallGroupCall) GetCascadeId

func (x *ReqCgwCallGroupCall) GetCascadeId() string

func (*ReqCgwCallGroupCall) GetCid

func (x *ReqCgwCallGroupCall) GetCid() string

func (*ReqCgwCallGroupCall) ProtoMessage

func (*ReqCgwCallGroupCall) ProtoMessage()

func (*ReqCgwCallGroupCall) ProtoReflect

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

func (*ReqCgwCallGroupCall) Reset

func (x *ReqCgwCallGroupCall) Reset()

func (*ReqCgwCallGroupCall) String

func (x *ReqCgwCallGroupCall) String() string

type ReqCgwCallHangupUser

type ReqCgwCallHangupUser struct {
	CascadeId string   `protobuf:"bytes,1,opt,name=CascadeId,proto3" json:"CascadeId,omitempty"`
	Nid       string   `protobuf:"bytes,2,opt,name=Nid,proto3" json:"Nid,omitempty"`
	Cid       string   `protobuf:"bytes,3,opt,name=Cid,proto3" json:"Cid,omitempty"`
	Members   []string `protobuf:"bytes,4,rep,name=Members,proto3" json:"Members,omitempty"`
	// contains filtered or unexported fields
}

func (*ReqCgwCallHangupUser) Descriptor deprecated

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

Deprecated: Use ReqCgwCallHangupUser.ProtoReflect.Descriptor instead.

func (*ReqCgwCallHangupUser) GetCascadeId

func (x *ReqCgwCallHangupUser) GetCascadeId() string

func (*ReqCgwCallHangupUser) GetCid

func (x *ReqCgwCallHangupUser) GetCid() string

func (*ReqCgwCallHangupUser) GetMembers

func (x *ReqCgwCallHangupUser) GetMembers() []string

func (*ReqCgwCallHangupUser) GetNid

func (x *ReqCgwCallHangupUser) GetNid() string

func (*ReqCgwCallHangupUser) ProtoMessage

func (*ReqCgwCallHangupUser) ProtoMessage()

func (*ReqCgwCallHangupUser) ProtoReflect

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

func (*ReqCgwCallHangupUser) Reset

func (x *ReqCgwCallHangupUser) Reset()

func (*ReqCgwCallHangupUser) String

func (x *ReqCgwCallHangupUser) String() string

type ReqCgwCallModify

type ReqCgwCallModify struct {
	CascadeId string `protobuf:"bytes,1,opt,name=CascadeId,proto3" json:"CascadeId,omitempty"`
	EndTime   int64  `protobuf:"varint,2,opt,name=EndTime,proto3" json:"EndTime,omitempty"`
	BeginTime int64  `protobuf:"varint,3,opt,name=BeginTime,proto3" json:"BeginTime,omitempty"`
	Nid       string `protobuf:"bytes,4,opt,name=Nid,proto3" json:"Nid,omitempty"`
	Cid       string `protobuf:"bytes,5,opt,name=Cid,proto3" json:"Cid,omitempty"`
	Name      string `protobuf:"bytes,6,opt,name=Name,proto3" json:"Name,omitempty"`
	Agenda    string `protobuf:"bytes,7,opt,name=Agenda,proto3" json:"Agenda,omitempty"`
	ZoneId    string `protobuf:"bytes,8,opt,name=ZoneId,proto3" json:"ZoneId,omitempty"`
	Mode      int32  `protobuf:"varint,9,opt,name=Mode,proto3" json:"Mode,omitempty"`
	// contains filtered or unexported fields
}

func (*ReqCgwCallModify) Descriptor deprecated

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

Deprecated: Use ReqCgwCallModify.ProtoReflect.Descriptor instead.

func (*ReqCgwCallModify) GetAgenda

func (x *ReqCgwCallModify) GetAgenda() string

func (*ReqCgwCallModify) GetBeginTime

func (x *ReqCgwCallModify) GetBeginTime() int64

func (*ReqCgwCallModify) GetCascadeId

func (x *ReqCgwCallModify) GetCascadeId() string

func (*ReqCgwCallModify) GetCid

func (x *ReqCgwCallModify) GetCid() string

func (*ReqCgwCallModify) GetEndTime

func (x *ReqCgwCallModify) GetEndTime() int64

func (*ReqCgwCallModify) GetMode

func (x *ReqCgwCallModify) GetMode() int32

func (*ReqCgwCallModify) GetName

func (x *ReqCgwCallModify) GetName() string

func (*ReqCgwCallModify) GetNid

func (x *ReqCgwCallModify) GetNid() string

func (*ReqCgwCallModify) GetZoneId

func (x *ReqCgwCallModify) GetZoneId() string

func (*ReqCgwCallModify) ProtoMessage

func (*ReqCgwCallModify) ProtoMessage()

func (*ReqCgwCallModify) ProtoReflect

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

func (*ReqCgwCallModify) Reset

func (x *ReqCgwCallModify) Reset()

func (*ReqCgwCallModify) String

func (x *ReqCgwCallModify) String() string

type ReqCgwCallSetMember

type ReqCgwCallSetMember struct {
	CascadeId string     `protobuf:"bytes,1,opt,name=CascadeId,proto3" json:"CascadeId,omitempty"`
	Nid       string     `protobuf:"bytes,2,opt,name=Nid,proto3" json:"Nid,omitempty"`
	Cid       string     `protobuf:"bytes,3,opt,name=Cid,proto3" json:"Cid,omitempty"`
	ZoneId    string     `protobuf:"bytes,4,opt,name=ZoneId,proto3" json:"ZoneId,omitempty"`
	Invitees  []*Invitee `protobuf:"bytes,5,rep,name=invitees,proto3" json:"invitees,omitempty"`
	// contains filtered or unexported fields
}

func (*ReqCgwCallSetMember) Descriptor deprecated

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

Deprecated: Use ReqCgwCallSetMember.ProtoReflect.Descriptor instead.

func (*ReqCgwCallSetMember) GetCascadeId

func (x *ReqCgwCallSetMember) GetCascadeId() string

func (*ReqCgwCallSetMember) GetCid

func (x *ReqCgwCallSetMember) GetCid() string

func (*ReqCgwCallSetMember) GetInvitees

func (x *ReqCgwCallSetMember) GetInvitees() []*Invitee

func (*ReqCgwCallSetMember) GetNid

func (x *ReqCgwCallSetMember) GetNid() string

func (*ReqCgwCallSetMember) GetZoneId

func (x *ReqCgwCallSetMember) GetZoneId() string

func (*ReqCgwCallSetMember) ProtoMessage

func (*ReqCgwCallSetMember) ProtoMessage()

func (*ReqCgwCallSetMember) ProtoReflect

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

func (*ReqCgwCallSetMember) Reset

func (x *ReqCgwCallSetMember) Reset()

func (*ReqCgwCallSetMember) String

func (x *ReqCgwCallSetMember) String() string

type ReqHeartBeat

type ReqHeartBeat struct {
	Superior   *CascadeSuperior `protobuf:"bytes,1,opt,name=Superior,proto3" json:"Superior,omitempty"`
	LocalIP    string           `protobuf:"bytes,2,opt,name=LocalIP,proto3" json:"LocalIP,omitempty"`
	IsPublicIP bool             `protobuf:"varint,3,opt,name=IsPublicIP,proto3" json:"IsPublicIP,omitempty"`
	// contains filtered or unexported fields
}

func (*ReqHeartBeat) Descriptor deprecated

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

Deprecated: Use ReqHeartBeat.ProtoReflect.Descriptor instead.

func (*ReqHeartBeat) GetIsPublicIP

func (x *ReqHeartBeat) GetIsPublicIP() bool

func (*ReqHeartBeat) GetLocalIP

func (x *ReqHeartBeat) GetLocalIP() string

func (*ReqHeartBeat) GetSuperior

func (x *ReqHeartBeat) GetSuperior() *CascadeSuperior

func (*ReqHeartBeat) ProtoMessage

func (*ReqHeartBeat) ProtoMessage()

func (*ReqHeartBeat) ProtoReflect

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

func (*ReqHeartBeat) Reset

func (x *ReqHeartBeat) Reset()

func (*ReqHeartBeat) String

func (x *ReqHeartBeat) String() string

type ReqHeartbeat

type ReqHeartbeat struct {
	CascadeId    string           `protobuf:"bytes,1,opt,name=CascadeId,proto3" json:"CascadeId,omitempty"`
	LocalIP      string           `protobuf:"bytes,2,opt,name=LocalIP,proto3" json:"LocalIP,omitempty"`
	IsPublicIP   bool             `protobuf:"varint,3,opt,name=IsPublicIP,proto3" json:"IsPublicIP,omitempty"`
	SuperiorData *CascadeSuperior `protobuf:"bytes,4,opt,name=SuperiorData,proto3" json:"SuperiorData,omitempty"`
	// contains filtered or unexported fields
}

func (*ReqHeartbeat) Descriptor deprecated

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

Deprecated: Use ReqHeartbeat.ProtoReflect.Descriptor instead.

func (*ReqHeartbeat) GetCascadeId

func (x *ReqHeartbeat) GetCascadeId() string

func (*ReqHeartbeat) GetIsPublicIP

func (x *ReqHeartbeat) GetIsPublicIP() bool

func (*ReqHeartbeat) GetLocalIP

func (x *ReqHeartbeat) GetLocalIP() string

func (*ReqHeartbeat) GetSuperiorData

func (x *ReqHeartbeat) GetSuperiorData() *CascadeSuperior

func (*ReqHeartbeat) ProtoMessage

func (*ReqHeartbeat) ProtoMessage()

func (*ReqHeartbeat) ProtoReflect

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

func (*ReqHeartbeat) Reset

func (x *ReqHeartbeat) Reset()

func (*ReqHeartbeat) String

func (x *ReqHeartbeat) String() string

type ReqLowerCreate

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

func (*ReqLowerCreate) Descriptor deprecated

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

Deprecated: Use ReqLowerCreate.ProtoReflect.Descriptor instead.

func (*ReqLowerCreate) GetCascadeLowerCreate

func (x *ReqLowerCreate) GetCascadeLowerCreate() *CascadeLower

func (*ReqLowerCreate) ProtoMessage

func (*ReqLowerCreate) ProtoMessage()

func (*ReqLowerCreate) ProtoReflect

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

func (*ReqLowerCreate) Reset

func (x *ReqLowerCreate) Reset()

func (*ReqLowerCreate) String

func (x *ReqLowerCreate) String() string

type ReqLowerDel

type ReqLowerDel struct {
	CascadeId string `protobuf:"bytes,1,opt,name=CascadeId,proto3" json:"CascadeId,omitempty"`
	Sn        string `protobuf:"bytes,2,opt,name=Sn,proto3" json:"Sn,omitempty"`
	// contains filtered or unexported fields
}

func (*ReqLowerDel) Descriptor deprecated

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

Deprecated: Use ReqLowerDel.ProtoReflect.Descriptor instead.

func (*ReqLowerDel) GetCascadeId

func (x *ReqLowerDel) GetCascadeId() string

func (*ReqLowerDel) GetSn

func (x *ReqLowerDel) GetSn() string

func (*ReqLowerDel) ProtoMessage

func (*ReqLowerDel) ProtoMessage()

func (*ReqLowerDel) ProtoReflect

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

func (*ReqLowerDel) Reset

func (x *ReqLowerDel) Reset()

func (*ReqLowerDel) String

func (x *ReqLowerDel) String() string

type ReqLowerGetInfo

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

func (*ReqLowerGetInfo) Descriptor deprecated

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

Deprecated: Use ReqLowerGetInfo.ProtoReflect.Descriptor instead.

func (*ReqLowerGetInfo) GetCascadeId

func (x *ReqLowerGetInfo) GetCascadeId() string

func (*ReqLowerGetInfo) ProtoMessage

func (*ReqLowerGetInfo) ProtoMessage()

func (*ReqLowerGetInfo) ProtoReflect

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

func (*ReqLowerGetInfo) Reset

func (x *ReqLowerGetInfo) Reset()

func (*ReqLowerGetInfo) String

func (x *ReqLowerGetInfo) String() string

type ReqLowerSearch

type ReqLowerSearch struct {
	AnyKey      string `protobuf:"bytes,1,opt,name=AnyKey,proto3" json:"AnyKey,omitempty"`
	PageSize    int64  `protobuf:"varint,2,opt,name=PageSize,proto3" json:"PageSize,omitempty"`
	PageNum     int64  `protobuf:"varint,3,opt,name=PageNum,proto3" json:"PageNum,omitempty"`
	Gid         string `protobuf:"bytes,4,opt,name=Gid,proto3" json:"Gid,omitempty"`
	IgnoreChild bool   `protobuf:"varint,5,opt,name=IgnoreChild,proto3" json:"IgnoreChild,omitempty"`
	// contains filtered or unexported fields
}

func (*ReqLowerSearch) Descriptor deprecated

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

Deprecated: Use ReqLowerSearch.ProtoReflect.Descriptor instead.

func (*ReqLowerSearch) GetAnyKey

func (x *ReqLowerSearch) GetAnyKey() string

func (*ReqLowerSearch) GetGid

func (x *ReqLowerSearch) GetGid() string

func (*ReqLowerSearch) GetIgnoreChild

func (x *ReqLowerSearch) GetIgnoreChild() bool

func (*ReqLowerSearch) GetPageNum

func (x *ReqLowerSearch) GetPageNum() int64

func (*ReqLowerSearch) GetPageSize

func (x *ReqLowerSearch) GetPageSize() int64

func (*ReqLowerSearch) ProtoMessage

func (*ReqLowerSearch) ProtoMessage()

func (*ReqLowerSearch) ProtoReflect

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

func (*ReqLowerSearch) Reset

func (x *ReqLowerSearch) Reset()

func (*ReqLowerSearch) String

func (x *ReqLowerSearch) String() string

type ReqLowerUpdate

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

func (*ReqLowerUpdate) Descriptor deprecated

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

Deprecated: Use ReqLowerUpdate.ProtoReflect.Descriptor instead.

func (*ReqLowerUpdate) GetCascadeUpdate

func (x *ReqLowerUpdate) GetCascadeUpdate() *CascadeLower

func (*ReqLowerUpdate) ProtoMessage

func (*ReqLowerUpdate) ProtoMessage()

func (*ReqLowerUpdate) ProtoReflect

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

func (*ReqLowerUpdate) Reset

func (x *ReqLowerUpdate) Reset()

func (*ReqLowerUpdate) String

func (x *ReqLowerUpdate) String() string

type ReqSuperiorDel

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

func (*ReqSuperiorDel) Descriptor deprecated

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

Deprecated: Use ReqSuperiorDel.ProtoReflect.Descriptor instead.

func (*ReqSuperiorDel) GetSn

func (x *ReqSuperiorDel) GetSn() string

func (*ReqSuperiorDel) ProtoMessage

func (*ReqSuperiorDel) ProtoMessage()

func (*ReqSuperiorDel) ProtoReflect

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

func (*ReqSuperiorDel) Reset

func (x *ReqSuperiorDel) Reset()

func (*ReqSuperiorDel) String

func (x *ReqSuperiorDel) String() string

type ReqSuperiorGet

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

func (*ReqSuperiorGet) Descriptor deprecated

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

Deprecated: Use ReqSuperiorGet.ProtoReflect.Descriptor instead.

func (*ReqSuperiorGet) ProtoMessage

func (*ReqSuperiorGet) ProtoMessage()

func (*ReqSuperiorGet) ProtoReflect

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

func (*ReqSuperiorGet) Reset

func (x *ReqSuperiorGet) Reset()

func (*ReqSuperiorGet) String

func (x *ReqSuperiorGet) String() string

type ReqSuperiorSet

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

func (*ReqSuperiorSet) Descriptor deprecated

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

Deprecated: Use ReqSuperiorSet.ProtoReflect.Descriptor instead.

func (*ReqSuperiorSet) ProtoMessage

func (*ReqSuperiorSet) ProtoMessage()

func (*ReqSuperiorSet) ProtoReflect

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

func (*ReqSuperiorSet) Reset

func (x *ReqSuperiorSet) Reset()

func (*ReqSuperiorSet) String

func (x *ReqSuperiorSet) String() string

type ReqSyncTime

type ReqSyncTime struct {
	Step     int64  `protobuf:"varint,1,opt,name=Step,proto3" json:"Step,omitempty"`
	Time     int64  `protobuf:"varint,2,opt,name=Time,proto3" json:"Time,omitempty"`
	Level    int64  `protobuf:"varint,3,opt,name=Level,proto3" json:"Level,omitempty"`
	RemoteIp string `protobuf:"bytes,4,opt,name=RemoteIp,proto3" json:"RemoteIp,omitempty"`
	Sn       string `protobuf:"bytes,5,opt,name=Sn,proto3" json:"Sn,omitempty"`
	// contains filtered or unexported fields
}

func (*ReqSyncTime) Descriptor deprecated

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

Deprecated: Use ReqSyncTime.ProtoReflect.Descriptor instead.

func (*ReqSyncTime) GetLevel

func (x *ReqSyncTime) GetLevel() int64

func (*ReqSyncTime) GetRemoteIp

func (x *ReqSyncTime) GetRemoteIp() string

func (*ReqSyncTime) GetSn

func (x *ReqSyncTime) GetSn() string

func (*ReqSyncTime) GetStep

func (x *ReqSyncTime) GetStep() int64

func (*ReqSyncTime) GetTime

func (x *ReqSyncTime) GetTime() int64

func (*ReqSyncTime) ProtoMessage

func (*ReqSyncTime) ProtoMessage()

func (*ReqSyncTime) ProtoReflect

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

func (*ReqSyncTime) Reset

func (x *ReqSyncTime) Reset()

func (*ReqSyncTime) String

func (x *ReqSyncTime) String() string

type RespCgwCallCreate

type RespCgwCallCreate struct {
	Cid           string          `protobuf:"bytes,1,opt,name=Cid,proto3" json:"Cid,omitempty"`
	Cuid          string          `protobuf:"bytes,2,opt,name=Cuid,proto3" json:"Cuid,omitempty"`
	BeginTime     int64           `protobuf:"varint,3,opt,name=BeginTime,proto3" json:"BeginTime,omitempty"`
	EndTime       int64           `protobuf:"varint,4,opt,name=EndTime,proto3" json:"EndTime,omitempty"`
	Name          string          `protobuf:"bytes,5,opt,name=Name,proto3" json:"Name,omitempty"`
	Mode          int32           `protobuf:"varint,6,opt,name=Mode,proto3" json:"Mode,omitempty"`
	MemberStatus  []*MemberStatus `protobuf:"bytes,7,rep,name=MemberStatus,proto3" json:"MemberStatus,omitempty"`
	CascadeLowers []*CascadeLower `protobuf:"bytes,8,rep,name=CascadeLowers,proto3" json:"CascadeLowers,omitempty"`
	RpcStatus     *Status         `protobuf:"bytes,9,opt,name=RpcStatus,proto3" json:"RpcStatus,omitempty"`
	// contains filtered or unexported fields
}

func (*RespCgwCallCreate) Descriptor deprecated

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

Deprecated: Use RespCgwCallCreate.ProtoReflect.Descriptor instead.

func (*RespCgwCallCreate) GetBeginTime

func (x *RespCgwCallCreate) GetBeginTime() int64

func (*RespCgwCallCreate) GetCascadeLowers

func (x *RespCgwCallCreate) GetCascadeLowers() []*CascadeLower

func (*RespCgwCallCreate) GetCid

func (x *RespCgwCallCreate) GetCid() string

func (*RespCgwCallCreate) GetCuid

func (x *RespCgwCallCreate) GetCuid() string

func (*RespCgwCallCreate) GetEndTime

func (x *RespCgwCallCreate) GetEndTime() int64

func (*RespCgwCallCreate) GetMemberStatus

func (x *RespCgwCallCreate) GetMemberStatus() []*MemberStatus

func (*RespCgwCallCreate) GetMode

func (x *RespCgwCallCreate) GetMode() int32

func (*RespCgwCallCreate) GetName

func (x *RespCgwCallCreate) GetName() string

func (*RespCgwCallCreate) GetRpcStatus

func (x *RespCgwCallCreate) GetRpcStatus() *Status

func (*RespCgwCallCreate) ProtoMessage

func (*RespCgwCallCreate) ProtoMessage()

func (*RespCgwCallCreate) ProtoReflect

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

func (*RespCgwCallCreate) Reset

func (x *RespCgwCallCreate) Reset()

func (*RespCgwCallCreate) String

func (x *RespCgwCallCreate) String() string

type RespCgwCallDelete

type RespCgwCallDelete struct {
	CascadeLowers []*CascadeLower `protobuf:"bytes,1,rep,name=CascadeLowers,proto3" json:"CascadeLowers,omitempty"`
	RpcStatus     *Status         `protobuf:"bytes,2,opt,name=RpcStatus,proto3" json:"RpcStatus,omitempty"`
	// contains filtered or unexported fields
}

func (*RespCgwCallDelete) Descriptor deprecated

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

Deprecated: Use RespCgwCallDelete.ProtoReflect.Descriptor instead.

func (*RespCgwCallDelete) GetCascadeLowers

func (x *RespCgwCallDelete) GetCascadeLowers() []*CascadeLower

func (*RespCgwCallDelete) GetRpcStatus

func (x *RespCgwCallDelete) GetRpcStatus() *Status

func (*RespCgwCallDelete) ProtoMessage

func (*RespCgwCallDelete) ProtoMessage()

func (*RespCgwCallDelete) ProtoReflect

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

func (*RespCgwCallDelete) Reset

func (x *RespCgwCallDelete) Reset()

func (*RespCgwCallDelete) String

func (x *RespCgwCallDelete) String() string

type RespCgwCallGroupCall

type RespCgwCallGroupCall struct {
	CascadeId string   `protobuf:"bytes,1,opt,name=CascadeId,proto3" json:"CascadeId,omitempty"`
	Called    []string `protobuf:"bytes,2,rep,name=Called,proto3" json:"Called,omitempty"`
	RpcStatus *Status  `protobuf:"bytes,3,opt,name=RpcStatus,proto3" json:"RpcStatus,omitempty"`
	// contains filtered or unexported fields
}

func (*RespCgwCallGroupCall) Descriptor deprecated

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

Deprecated: Use RespCgwCallGroupCall.ProtoReflect.Descriptor instead.

func (*RespCgwCallGroupCall) GetCalled

func (x *RespCgwCallGroupCall) GetCalled() []string

func (*RespCgwCallGroupCall) GetCascadeId

func (x *RespCgwCallGroupCall) GetCascadeId() string

func (*RespCgwCallGroupCall) GetRpcStatus

func (x *RespCgwCallGroupCall) GetRpcStatus() *Status

func (*RespCgwCallGroupCall) ProtoMessage

func (*RespCgwCallGroupCall) ProtoMessage()

func (*RespCgwCallGroupCall) ProtoReflect

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

func (*RespCgwCallGroupCall) Reset

func (x *RespCgwCallGroupCall) Reset()

func (*RespCgwCallGroupCall) String

func (x *RespCgwCallGroupCall) String() string

type RespCgwCallHangupUser

type RespCgwCallHangupUser struct {
	CascadeId string  `protobuf:"bytes,1,opt,name=CascadeId,proto3" json:"CascadeId,omitempty"`
	RpcStatus *Status `protobuf:"bytes,2,opt,name=RpcStatus,proto3" json:"RpcStatus,omitempty"`
	// contains filtered or unexported fields
}

func (*RespCgwCallHangupUser) Descriptor deprecated

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

Deprecated: Use RespCgwCallHangupUser.ProtoReflect.Descriptor instead.

func (*RespCgwCallHangupUser) GetCascadeId

func (x *RespCgwCallHangupUser) GetCascadeId() string

func (*RespCgwCallHangupUser) GetRpcStatus

func (x *RespCgwCallHangupUser) GetRpcStatus() *Status

func (*RespCgwCallHangupUser) ProtoMessage

func (*RespCgwCallHangupUser) ProtoMessage()

func (*RespCgwCallHangupUser) ProtoReflect

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

func (*RespCgwCallHangupUser) Reset

func (x *RespCgwCallHangupUser) Reset()

func (*RespCgwCallHangupUser) String

func (x *RespCgwCallHangupUser) String() string

type RespCgwCallModify

type RespCgwCallModify struct {
	CascadeLowers []*CascadeLower `protobuf:"bytes,1,rep,name=CascadeLowers,proto3" json:"CascadeLowers,omitempty"`
	RpcStatus     *Status         `protobuf:"bytes,2,opt,name=RpcStatus,proto3" json:"RpcStatus,omitempty"`
	// contains filtered or unexported fields
}

func (*RespCgwCallModify) Descriptor deprecated

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

Deprecated: Use RespCgwCallModify.ProtoReflect.Descriptor instead.

func (*RespCgwCallModify) GetCascadeLowers

func (x *RespCgwCallModify) GetCascadeLowers() []*CascadeLower

func (*RespCgwCallModify) GetRpcStatus

func (x *RespCgwCallModify) GetRpcStatus() *Status

func (*RespCgwCallModify) ProtoMessage

func (*RespCgwCallModify) ProtoMessage()

func (*RespCgwCallModify) ProtoReflect

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

func (*RespCgwCallModify) Reset

func (x *RespCgwCallModify) Reset()

func (*RespCgwCallModify) String

func (x *RespCgwCallModify) String() string

type RespCgwCallSetMember

type RespCgwCallSetMember struct {
	CascadeId     string          `protobuf:"bytes,1,opt,name=CascadeId,proto3" json:"CascadeId,omitempty"`
	CascadeLowers []*CascadeLower `protobuf:"bytes,2,rep,name=CascadeLowers,proto3" json:"CascadeLowers,omitempty"`
	MemberStatus  []*MemberStatus `protobuf:"bytes,3,rep,name=memberStatus,proto3" json:"memberStatus,omitempty"`
	RpcStatus     *Status         `protobuf:"bytes,4,opt,name=RpcStatus,proto3" json:"RpcStatus,omitempty"`
	// contains filtered or unexported fields
}

func (*RespCgwCallSetMember) Descriptor deprecated

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

Deprecated: Use RespCgwCallSetMember.ProtoReflect.Descriptor instead.

func (*RespCgwCallSetMember) GetCascadeId

func (x *RespCgwCallSetMember) GetCascadeId() string

func (*RespCgwCallSetMember) GetCascadeLowers

func (x *RespCgwCallSetMember) GetCascadeLowers() []*CascadeLower

func (*RespCgwCallSetMember) GetMemberStatus

func (x *RespCgwCallSetMember) GetMemberStatus() []*MemberStatus

func (*RespCgwCallSetMember) GetRpcStatus

func (x *RespCgwCallSetMember) GetRpcStatus() *Status

func (*RespCgwCallSetMember) ProtoMessage

func (*RespCgwCallSetMember) ProtoMessage()

func (*RespCgwCallSetMember) ProtoReflect

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

func (*RespCgwCallSetMember) Reset

func (x *RespCgwCallSetMember) Reset()

func (*RespCgwCallSetMember) String

func (x *RespCgwCallSetMember) String() string

type RespHeartBeat

type RespHeartBeat struct {
	CascadeData *CascadeLower `protobuf:"bytes,1,opt,name=CascadeData,proto3" json:"CascadeData,omitempty"`
	RpcStatus   *Status       `protobuf:"bytes,2,opt,name=RpcStatus,proto3" json:"RpcStatus,omitempty"`
	// contains filtered or unexported fields
}

func (*RespHeartBeat) Descriptor deprecated

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

Deprecated: Use RespHeartBeat.ProtoReflect.Descriptor instead.

func (*RespHeartBeat) GetCascadeData

func (x *RespHeartBeat) GetCascadeData() *CascadeLower

func (*RespHeartBeat) GetRpcStatus

func (x *RespHeartBeat) GetRpcStatus() *Status

func (*RespHeartBeat) ProtoMessage

func (*RespHeartBeat) ProtoMessage()

func (*RespHeartBeat) ProtoReflect

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

func (*RespHeartBeat) Reset

func (x *RespHeartBeat) Reset()

func (*RespHeartBeat) String

func (x *RespHeartBeat) String() string

type RespHeartbeat

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

func (*RespHeartbeat) Descriptor deprecated

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

Deprecated: Use RespHeartbeat.ProtoReflect.Descriptor instead.

func (*RespHeartbeat) GetCascadeData

func (x *RespHeartbeat) GetCascadeData() *CascadeLower

func (*RespHeartbeat) ProtoMessage

func (*RespHeartbeat) ProtoMessage()

func (*RespHeartbeat) ProtoReflect

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

func (*RespHeartbeat) Reset

func (x *RespHeartbeat) Reset()

func (*RespHeartbeat) String

func (x *RespHeartbeat) String() string

type RespLowerCreate

type RespLowerCreate struct {
	CascadeId string  `protobuf:"bytes,1,opt,name=CascadeId,proto3" json:"CascadeId,omitempty"`
	RpcStatus *Status `protobuf:"bytes,2,opt,name=RpcStatus,proto3" json:"RpcStatus,omitempty"`
	// contains filtered or unexported fields
}

func (*RespLowerCreate) Descriptor deprecated

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

Deprecated: Use RespLowerCreate.ProtoReflect.Descriptor instead.

func (*RespLowerCreate) GetCascadeId

func (x *RespLowerCreate) GetCascadeId() string

func (*RespLowerCreate) GetRpcStatus

func (x *RespLowerCreate) GetRpcStatus() *Status

func (*RespLowerCreate) ProtoMessage

func (*RespLowerCreate) ProtoMessage()

func (*RespLowerCreate) ProtoReflect

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

func (*RespLowerCreate) Reset

func (x *RespLowerCreate) Reset()

func (*RespLowerCreate) String

func (x *RespLowerCreate) String() string

type RespLowerDel

type RespLowerDel struct {
	CascadeId string  `protobuf:"bytes,1,opt,name=CascadeId,proto3" json:"CascadeId,omitempty"`
	RpcStatus *Status `protobuf:"bytes,2,opt,name=RpcStatus,proto3" json:"RpcStatus,omitempty"`
	// contains filtered or unexported fields
}

func (*RespLowerDel) Descriptor deprecated

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

Deprecated: Use RespLowerDel.ProtoReflect.Descriptor instead.

func (*RespLowerDel) GetCascadeId

func (x *RespLowerDel) GetCascadeId() string

func (*RespLowerDel) GetRpcStatus

func (x *RespLowerDel) GetRpcStatus() *Status

func (*RespLowerDel) ProtoMessage

func (*RespLowerDel) ProtoMessage()

func (*RespLowerDel) ProtoReflect

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

func (*RespLowerDel) Reset

func (x *RespLowerDel) Reset()

func (*RespLowerDel) String

func (x *RespLowerDel) String() string

type RespLowerGetInfo

type RespLowerGetInfo struct {
	CascadeInfo *CascadeLower `protobuf:"bytes,1,opt,name=CascadeInfo,proto3" json:"CascadeInfo,omitempty"`
	RpcStatus   *Status       `protobuf:"bytes,2,opt,name=RpcStatus,proto3" json:"RpcStatus,omitempty"`
	// contains filtered or unexported fields
}

func (*RespLowerGetInfo) Descriptor deprecated

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

Deprecated: Use RespLowerGetInfo.ProtoReflect.Descriptor instead.

func (*RespLowerGetInfo) GetCascadeInfo

func (x *RespLowerGetInfo) GetCascadeInfo() *CascadeLower

func (*RespLowerGetInfo) GetRpcStatus

func (x *RespLowerGetInfo) GetRpcStatus() *Status

func (*RespLowerGetInfo) ProtoMessage

func (*RespLowerGetInfo) ProtoMessage()

func (*RespLowerGetInfo) ProtoReflect

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

func (*RespLowerGetInfo) Reset

func (x *RespLowerGetInfo) Reset()

func (*RespLowerGetInfo) String

func (x *RespLowerGetInfo) String() string

type RespLowerSearch

type RespLowerSearch struct {
	Total         int64           `protobuf:"varint,1,opt,name=Total,proto3" json:"Total,omitempty"`
	CascadeLowers []*CascadeLower `protobuf:"bytes,2,rep,name=CascadeLowers,proto3" json:"CascadeLowers,omitempty"`
	RpcStatus     *Status         `protobuf:"bytes,3,opt,name=RpcStatus,proto3" json:"RpcStatus,omitempty"`
	// contains filtered or unexported fields
}

func (*RespLowerSearch) Descriptor deprecated

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

Deprecated: Use RespLowerSearch.ProtoReflect.Descriptor instead.

func (*RespLowerSearch) GetCascadeLowers

func (x *RespLowerSearch) GetCascadeLowers() []*CascadeLower

func (*RespLowerSearch) GetRpcStatus

func (x *RespLowerSearch) GetRpcStatus() *Status

func (*RespLowerSearch) GetTotal

func (x *RespLowerSearch) GetTotal() int64

func (*RespLowerSearch) ProtoMessage

func (*RespLowerSearch) ProtoMessage()

func (*RespLowerSearch) ProtoReflect

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

func (*RespLowerSearch) Reset

func (x *RespLowerSearch) Reset()

func (*RespLowerSearch) String

func (x *RespLowerSearch) String() string

type RespLowerUpdate

type RespLowerUpdate struct {
	CascadeId string  `protobuf:"bytes,1,opt,name=CascadeId,proto3" json:"CascadeId,omitempty"`
	RpcStatus *Status `protobuf:"bytes,2,opt,name=RpcStatus,proto3" json:"RpcStatus,omitempty"`
	// contains filtered or unexported fields
}

func (*RespLowerUpdate) Descriptor deprecated

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

Deprecated: Use RespLowerUpdate.ProtoReflect.Descriptor instead.

func (*RespLowerUpdate) GetCascadeId

func (x *RespLowerUpdate) GetCascadeId() string

func (*RespLowerUpdate) GetRpcStatus

func (x *RespLowerUpdate) GetRpcStatus() *Status

func (*RespLowerUpdate) ProtoMessage

func (*RespLowerUpdate) ProtoMessage()

func (*RespLowerUpdate) ProtoReflect

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

func (*RespLowerUpdate) Reset

func (x *RespLowerUpdate) Reset()

func (*RespLowerUpdate) String

func (x *RespLowerUpdate) String() string

type RespSuperiorDel

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

func (*RespSuperiorDel) Descriptor deprecated

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

Deprecated: Use RespSuperiorDel.ProtoReflect.Descriptor instead.

func (*RespSuperiorDel) GetRpcStatus

func (x *RespSuperiorDel) GetRpcStatus() *Status

func (*RespSuperiorDel) ProtoMessage

func (*RespSuperiorDel) ProtoMessage()

func (*RespSuperiorDel) ProtoReflect

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

func (*RespSuperiorDel) Reset

func (x *RespSuperiorDel) Reset()

func (*RespSuperiorDel) String

func (x *RespSuperiorDel) String() string

type RespSuperiorGet

type RespSuperiorGet struct {
	Superior  *CascadeSuperior `protobuf:"bytes,1,opt,name=Superior,proto3" json:"Superior,omitempty"`
	RpcStatus *Status          `protobuf:"bytes,2,opt,name=RpcStatus,proto3" json:"RpcStatus,omitempty"`
	// contains filtered or unexported fields
}

func (*RespSuperiorGet) Descriptor deprecated

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

Deprecated: Use RespSuperiorGet.ProtoReflect.Descriptor instead.

func (*RespSuperiorGet) GetRpcStatus

func (x *RespSuperiorGet) GetRpcStatus() *Status

func (*RespSuperiorGet) GetSuperior

func (x *RespSuperiorGet) GetSuperior() *CascadeSuperior

func (*RespSuperiorGet) ProtoMessage

func (*RespSuperiorGet) ProtoMessage()

func (*RespSuperiorGet) ProtoReflect

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

func (*RespSuperiorGet) Reset

func (x *RespSuperiorGet) Reset()

func (*RespSuperiorGet) String

func (x *RespSuperiorGet) String() string

type RespSuperiorSet

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

func (*RespSuperiorSet) Descriptor deprecated

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

Deprecated: Use RespSuperiorSet.ProtoReflect.Descriptor instead.

func (*RespSuperiorSet) ProtoMessage

func (*RespSuperiorSet) ProtoMessage()

func (*RespSuperiorSet) ProtoReflect

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

func (*RespSuperiorSet) Reset

func (x *RespSuperiorSet) Reset()

func (*RespSuperiorSet) String

func (x *RespSuperiorSet) String() string

type RespSyncTime

type RespSyncTime struct {
	Step      int64   `protobuf:"varint,1,opt,name=Step,proto3" json:"Step,omitempty"`
	Level     int64   `protobuf:"varint,2,opt,name=Level,proto3" json:"Level,omitempty"`
	RpcStatus *Status `protobuf:"bytes,3,opt,name=RpcStatus,proto3" json:"RpcStatus,omitempty"`
	// contains filtered or unexported fields
}

func (*RespSyncTime) Descriptor deprecated

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

Deprecated: Use RespSyncTime.ProtoReflect.Descriptor instead.

func (*RespSyncTime) GetLevel

func (x *RespSyncTime) GetLevel() int64

func (*RespSyncTime) GetRpcStatus

func (x *RespSyncTime) GetRpcStatus() *Status

func (*RespSyncTime) GetStep

func (x *RespSyncTime) GetStep() int64

func (*RespSyncTime) ProtoMessage

func (*RespSyncTime) ProtoMessage()

func (*RespSyncTime) ProtoReflect

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

func (*RespSyncTime) Reset

func (x *RespSyncTime) Reset()

func (*RespSyncTime) String

func (x *RespSyncTime) String() string

type RoomData

type RoomData struct {
	Cid           string `protobuf:"bytes,1,opt,name=Cid,proto3" json:"Cid,omitempty"`
	Cuid          string `protobuf:"bytes,2,opt,name=Cuid,proto3" json:"Cuid,omitempty"`
	ParentCid     string `protobuf:"bytes,3,opt,name=ParentCid,proto3" json:"ParentCid,omitempty"`
	ParentCuid    string `protobuf:"bytes,4,opt,name=ParentCuid,proto3" json:"ParentCuid,omitempty"`
	BeginTime     int64  `protobuf:"varint,5,opt,name=BeginTime,proto3" json:"BeginTime,omitempty"`
	EndTime       int64  `protobuf:"varint,6,opt,name=EndTime,proto3" json:"EndTime,omitempty"`
	Gid           string `protobuf:"bytes,7,opt,name=Gid,proto3" json:"Gid,omitempty"`
	Vid           string `protobuf:"bytes,8,opt,name=Vid,proto3" json:"Vid,omitempty"`
	Mode          int32  `protobuf:"varint,9,opt,name=Mode,proto3" json:"Mode,omitempty"`
	DeptGid       string `protobuf:"bytes,10,opt,name=Dept_gid,json=DeptGid,proto3" json:"Dept_gid,omitempty"`
	Name          string `protobuf:"bytes,11,opt,name=Name,proto3" json:"Name,omitempty"`
	ZoneId        string `protobuf:"bytes,12,opt,name=ZoneId,proto3" json:"ZoneId,omitempty"`
	Agenda        string `protobuf:"bytes,13,opt,name=Agenda,proto3" json:"Agenda,omitempty"`
	IsPoint2Point bool   `protobuf:"varint,14,opt,name=IsPoint2point,proto3" json:"IsPoint2point,omitempty"`
	// contains filtered or unexported fields
}

func (*RoomData) Descriptor deprecated

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

Deprecated: Use RoomData.ProtoReflect.Descriptor instead.

func (*RoomData) GetAgenda

func (x *RoomData) GetAgenda() string

func (*RoomData) GetBeginTime

func (x *RoomData) GetBeginTime() int64

func (*RoomData) GetCid

func (x *RoomData) GetCid() string

func (*RoomData) GetCuid

func (x *RoomData) GetCuid() string

func (*RoomData) GetDeptGid

func (x *RoomData) GetDeptGid() string

func (*RoomData) GetEndTime

func (x *RoomData) GetEndTime() int64

func (*RoomData) GetGid

func (x *RoomData) GetGid() string

func (*RoomData) GetIsPoint2Point

func (x *RoomData) GetIsPoint2Point() bool

func (*RoomData) GetMode

func (x *RoomData) GetMode() int32

func (*RoomData) GetName

func (x *RoomData) GetName() string

func (*RoomData) GetParentCid

func (x *RoomData) GetParentCid() string

func (*RoomData) GetParentCuid

func (x *RoomData) GetParentCuid() string

func (*RoomData) GetVid

func (x *RoomData) GetVid() string

func (*RoomData) GetZoneId

func (x *RoomData) GetZoneId() string

func (*RoomData) ProtoMessage

func (*RoomData) ProtoMessage()

func (*RoomData) ProtoReflect

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

func (*RoomData) Reset

func (x *RoomData) Reset()

func (*RoomData) String

func (x *RoomData) String() string

type SorterParam

type SorterParam struct {
	Field string            `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"`                                 //排序字段
	Order SorterParam_Order `protobuf:"varint,2,opt,name=order,proto3,enum=cascade.SorterParam_Order" json:"order,omitempty"` //排序方式
	// contains filtered or unexported fields
}

func (*SorterParam) Descriptor deprecated

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

Deprecated: Use SorterParam.ProtoReflect.Descriptor instead.

func (*SorterParam) GetField

func (x *SorterParam) GetField() string

func (*SorterParam) GetOrder

func (x *SorterParam) GetOrder() SorterParam_Order

func (*SorterParam) ProtoMessage

func (*SorterParam) ProtoMessage()

func (*SorterParam) ProtoReflect

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

func (*SorterParam) Reset

func (x *SorterParam) Reset()

func (*SorterParam) String

func (x *SorterParam) String() string

type SorterParam_Order

type SorterParam_Order int32
const (
	SorterParam_ASC  SorterParam_Order = 0 //升序
	SorterParam_DESC SorterParam_Order = 1 //降序
)

func (SorterParam_Order) Descriptor

func (SorterParam_Order) Enum

func (SorterParam_Order) EnumDescriptor deprecated

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

Deprecated: Use SorterParam_Order.Descriptor instead.

func (SorterParam_Order) Number

func (SorterParam_Order) String

func (x SorterParam_Order) String() string

func (SorterParam_Order) Type

type Status

type Status struct {
	Code     uint64            `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
	Reason   string            `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message  string            `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Metadata map[string]string `` /* 157-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Status) Descriptor deprecated

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

Deprecated: Use Status.ProtoReflect.Descriptor instead.

func (*Status) GetCode

func (x *Status) GetCode() uint64

func (*Status) GetMessage

func (x *Status) GetMessage() string

func (*Status) GetMetadata

func (x *Status) GetMetadata() map[string]string

func (*Status) GetReason

func (x *Status) GetReason() string

func (*Status) ProtoMessage

func (*Status) ProtoMessage()

func (*Status) ProtoReflect

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

func (*Status) Reset

func (x *Status) Reset()

func (*Status) String

func (x *Status) String() string

type TitleInfo

type TitleInfo struct {
	BgColor        string `protobuf:"bytes,1,opt,name=BgColor,proto3" json:"BgColor,omitempty"`
	BgTransparency string `protobuf:"bytes,2,opt,name=BgTransparency,proto3" json:"BgTransparency,omitempty"`
	Color          string `protobuf:"bytes,3,opt,name=Color,proto3" json:"Color,omitempty"`
	Enable         bool   `protobuf:"varint,4,opt,name=Enable,proto3" json:"Enable,omitempty"`
	Position       string `protobuf:"bytes,5,opt,name=Position,proto3" json:"Position,omitempty"`
	Size           string `protobuf:"bytes,6,opt,name=Size,proto3" json:"Size,omitempty"`
	Text           string `protobuf:"bytes,7,opt,name=Text,proto3" json:"Text,omitempty"`
	// contains filtered or unexported fields
}

func (*TitleInfo) Descriptor deprecated

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

Deprecated: Use TitleInfo.ProtoReflect.Descriptor instead.

func (*TitleInfo) GetBgColor

func (x *TitleInfo) GetBgColor() string

func (*TitleInfo) GetBgTransparency

func (x *TitleInfo) GetBgTransparency() string

func (*TitleInfo) GetColor

func (x *TitleInfo) GetColor() string

func (*TitleInfo) GetEnable

func (x *TitleInfo) GetEnable() bool

func (*TitleInfo) GetPosition

func (x *TitleInfo) GetPosition() string

func (*TitleInfo) GetSize

func (x *TitleInfo) GetSize() string

func (*TitleInfo) GetText

func (x *TitleInfo) GetText() string

func (*TitleInfo) ProtoMessage

func (*TitleInfo) ProtoMessage()

func (*TitleInfo) ProtoReflect

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

func (*TitleInfo) Reset

func (x *TitleInfo) Reset()

func (*TitleInfo) String

func (x *TitleInfo) String() string

type UnimplementedCascadeClientServer

type UnimplementedCascadeClientServer struct {
}

UnimplementedCascadeClientServer must be embedded to have forward compatible implementations.

func (UnimplementedCascadeClientServer) CallCreate

func (UnimplementedCascadeClientServer) CallDelete

func (UnimplementedCascadeClientServer) CallGroupCall

func (UnimplementedCascadeClientServer) CallHangupUser

func (UnimplementedCascadeClientServer) CallModify

func (UnimplementedCascadeClientServer) CallSetMember

func (UnimplementedCascadeClientServer) HeartBeat

func (UnimplementedCascadeClientServer) LowerCreate

func (UnimplementedCascadeClientServer) LowerDel

func (UnimplementedCascadeClientServer) LowerGetInfo

func (UnimplementedCascadeClientServer) LowerSearch

func (UnimplementedCascadeClientServer) LowerUpdate

func (UnimplementedCascadeClientServer) SuperiorGet

func (UnimplementedCascadeClientServer) SuperiorSet

func (UnimplementedCascadeClientServer) SyncTime

type UnsafeCascadeClientServer

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

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

Jump to

Keyboard shortcuts

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