1
0
mirror of https://github.com/Mrs4s/MiraiGo.git synced 2025-05-04 11:07:40 +08:00
MiraiGo/client/pb/qweb/protocol.pb.go

83 lines
1.3 KiB
Go

// Code generated by protoc-gen-golite. DO NOT EDIT.
// source: protocol.proto
package qweb
type QWebReq struct {
Seq int64 `protobuf:"varint,1,opt"`
Qua string `protobuf:"bytes,2,opt"`
DeviceInfo string `protobuf:"bytes,3,opt"`
BusiBuff []byte `protobuf:"bytes,4,opt"`
TraceId string `protobuf:"bytes,5,opt"`
}
func (x *QWebReq) GetSeq() int64 {
if x != nil {
return x.Seq
}
return 0
}
func (x *QWebReq) GetQua() string {
if x != nil {
return x.Qua
}
return ""
}
func (x *QWebReq) GetDeviceInfo() string {
if x != nil {
return x.DeviceInfo
}
return ""
}
func (x *QWebReq) GetBusiBuff() []byte {
if x != nil {
return x.BusiBuff
}
return nil
}
func (x *QWebReq) GetTraceId() string {
if x != nil {
return x.TraceId
}
return ""
}
type QWebRsp struct {
Seq int64 `protobuf:"varint,1,opt"`
RetCode int64 `protobuf:"varint,2,opt"`
ErrMsg string `protobuf:"bytes,3,opt"`
BusiBuff []byte `protobuf:"bytes,4,opt"`
}
func (x *QWebRsp) GetSeq() int64 {
if x != nil {
return x.Seq
}
return 0
}
func (x *QWebRsp) GetRetCode() int64 {
if x != nil {
return x.RetCode
}
return 0
}
func (x *QWebRsp) GetErrMsg() string {
if x != nil {
return x.ErrMsg
}
return ""
}
func (x *QWebRsp) GetBusiBuff() []byte {
if x != nil {
return x.BusiBuff
}
return nil
}