mirror of
https://github.com/Mrs4s/MiraiGo.git
synced 2025-05-04 11:07:40 +08:00
66 lines
1.5 KiB
Go
66 lines
1.5 KiB
Go
// Code generated by protoc-gen-golite. DO NOT EDIT.
|
|
// source: pb/channel/oidb0xf62.proto
|
|
|
|
package channel
|
|
|
|
import (
|
|
msg "github.com/Mrs4s/MiraiGo/client/pb/msg"
|
|
)
|
|
|
|
type DF62ReqBody struct {
|
|
Msg *ChannelMsgContent `protobuf:"bytes,1,opt"`
|
|
}
|
|
|
|
type DF62RspBody struct {
|
|
Result *uint32 `protobuf:"varint,1,opt"`
|
|
Errmsg []byte `protobuf:"bytes,2,opt"`
|
|
SendTime *uint32 `protobuf:"varint,3,opt"`
|
|
Head *ChannelMsgHead `protobuf:"bytes,4,opt"`
|
|
ErrType *uint32 `protobuf:"varint,5,opt"`
|
|
TransSvrInfo *TransSvrInfo `protobuf:"bytes,6,opt"`
|
|
FreqLimitInfo *ChannelFreqLimitInfo `protobuf:"bytes,7,opt"`
|
|
Body *msg.MessageBody `protobuf:"bytes,8,opt"`
|
|
}
|
|
|
|
func (x *DF62RspBody) GetResult() uint32 {
|
|
if x != nil && x.Result != nil {
|
|
return *x.Result
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *DF62RspBody) GetSendTime() uint32 {
|
|
if x != nil && x.SendTime != nil {
|
|
return *x.SendTime
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *DF62RspBody) GetErrType() uint32 {
|
|
if x != nil && x.ErrType != nil {
|
|
return *x.ErrType
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type TransSvrInfo struct {
|
|
SubType *uint32 `protobuf:"varint,1,opt"`
|
|
RetCode *int32 `protobuf:"varint,2,opt"`
|
|
ErrMsg []byte `protobuf:"bytes,3,opt"`
|
|
TransInfo []byte `protobuf:"bytes,4,opt"`
|
|
}
|
|
|
|
func (x *TransSvrInfo) GetSubType() uint32 {
|
|
if x != nil && x.SubType != nil {
|
|
return *x.SubType
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *TransSvrInfo) GetRetCode() int32 {
|
|
if x != nil && x.RetCode != nil {
|
|
return *x.RetCode
|
|
}
|
|
return 0
|
|
}
|