2023-06-30 09:54:08 +00:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
|
// versions:
|
|
|
|
// protoc-gen-go v1.30.0
|
|
|
|
// protoc v3.21.12
|
|
|
|
// source: settings.proto
|
|
|
|
|
|
|
|
package binary
|
|
|
|
|
|
|
|
import (
|
|
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
|
|
reflect "reflect"
|
|
|
|
sync "sync"
|
|
|
|
)
|
|
|
|
|
2023-07-16 23:06:35 +00:00
|
|
|
import _ "embed"
|
|
|
|
|
2023-06-30 09:54:08 +00:00
|
|
|
const (
|
|
|
|
// Verify that this generated code is sufficiently up-to-date.
|
|
|
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
|
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
|
|
)
|
|
|
|
|
|
|
|
type Settings struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
Data *Data `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
|
|
|
|
OpCodeData *SomeData `protobuf:"bytes,3,opt,name=opCodeData,proto3" json:"opCodeData,omitempty"`
|
|
|
|
RcsSettings *RCSSettings `protobuf:"bytes,4,opt,name=rcsSettings,proto3" json:"rcsSettings,omitempty"`
|
|
|
|
BugleVersion string `protobuf:"bytes,5,opt,name=bugleVersion,proto3" json:"bugleVersion,omitempty"`
|
|
|
|
Bool1 bool `protobuf:"varint,7,opt,name=bool1,proto3" json:"bool1,omitempty"`
|
|
|
|
BoolFields2 *BooleanFields2 `protobuf:"bytes,8,opt,name=boolFields2,proto3" json:"boolFields2,omitempty"`
|
|
|
|
EmptyString string `protobuf:"bytes,9,opt,name=emptyString,proto3" json:"emptyString,omitempty"`
|
|
|
|
BoolFields3 *BooleanFields3 `protobuf:"bytes,10,opt,name=boolFields3,proto3" json:"boolFields3,omitempty"`
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Settings) Reset() {
|
|
|
|
*x = Settings{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_settings_proto_msgTypes[0]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Settings) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*Settings) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *Settings) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_settings_proto_msgTypes[0]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use Settings.ProtoReflect.Descriptor instead.
|
|
|
|
func (*Settings) Descriptor() ([]byte, []int) {
|
|
|
|
return file_settings_proto_rawDescGZIP(), []int{0}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Settings) GetData() *Data {
|
|
|
|
if x != nil {
|
|
|
|
return x.Data
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (x *Settings) GetOpCodeData() *SomeData {
|
2023-06-30 09:54:08 +00:00
|
|
|
if x != nil {
|
|
|
|
return x.OpCodeData
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (x *Settings) GetRcsSettings() *RCSSettings {
|
2023-06-30 09:54:08 +00:00
|
|
|
if x != nil {
|
2023-07-09 11:16:52 +00:00
|
|
|
return x.RcsSettings
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (x *Settings) GetBugleVersion() string {
|
2023-06-30 09:54:08 +00:00
|
|
|
if x != nil {
|
2023-07-09 11:16:52 +00:00
|
|
|
return x.BugleVersion
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Settings) GetBool1() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Bool1
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Settings) GetBoolFields2() *BooleanFields2 {
|
|
|
|
if x != nil {
|
|
|
|
return x.BoolFields2
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Settings) GetEmptyString() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.EmptyString
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Settings) GetBoolFields3() *BooleanFields3 {
|
|
|
|
if x != nil {
|
|
|
|
return x.BoolFields3
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type Data struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
RcsChats *RCSChats `protobuf:"bytes,3,opt,name=rcsChats,proto3" json:"rcsChats,omitempty"`
|
|
|
|
SimData *SimData `protobuf:"bytes,5,opt,name=simData,proto3" json:"simData,omitempty"`
|
|
|
|
Bool1 bool `protobuf:"varint,6,opt,name=bool1,proto3" json:"bool1,omitempty"`
|
|
|
|
NoClue *NoClue `protobuf:"bytes,7,opt,name=noClue,proto3" json:"noClue,omitempty"`
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Data) Reset() {
|
|
|
|
*x = Data{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_settings_proto_msgTypes[1]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Data) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*Data) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *Data) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_settings_proto_msgTypes[1]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use Data.ProtoReflect.Descriptor instead.
|
|
|
|
func (*Data) Descriptor() ([]byte, []int) {
|
|
|
|
return file_settings_proto_rawDescGZIP(), []int{1}
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (x *Data) GetRcsChats() *RCSChats {
|
2023-06-30 09:54:08 +00:00
|
|
|
if x != nil {
|
2023-07-09 11:16:52 +00:00
|
|
|
return x.RcsChats
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Data) GetSimData() *SimData {
|
|
|
|
if x != nil {
|
|
|
|
return x.SimData
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Data) GetBool1() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Bool1
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Data) GetNoClue() *NoClue {
|
|
|
|
if x != nil {
|
|
|
|
return x.NoClue
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
type RCSChats struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *RCSChats) Reset() {
|
|
|
|
*x = RCSChats{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_settings_proto_msgTypes[2]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *RCSChats) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*RCSChats) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *RCSChats) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_settings_proto_msgTypes[2]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use RCSChats.ProtoReflect.Descriptor instead.
|
|
|
|
func (*RCSChats) Descriptor() ([]byte, []int) {
|
|
|
|
return file_settings_proto_rawDescGZIP(), []int{2}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *RCSChats) GetEnabled() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Enabled
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2023-06-30 09:54:08 +00:00
|
|
|
type BoolMsg struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Bool1 bool `protobuf:"varint,1,opt,name=bool1,proto3" json:"bool1,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BoolMsg) Reset() {
|
|
|
|
*x = BoolMsg{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-07-09 11:16:52 +00:00
|
|
|
mi := &file_settings_proto_msgTypes[3]
|
2023-06-30 09:54:08 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BoolMsg) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*BoolMsg) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *BoolMsg) ProtoReflect() protoreflect.Message {
|
2023-07-09 11:16:52 +00:00
|
|
|
mi := &file_settings_proto_msgTypes[3]
|
2023-06-30 09:54:08 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use BoolMsg.ProtoReflect.Descriptor instead.
|
|
|
|
func (*BoolMsg) Descriptor() ([]byte, []int) {
|
2023-07-09 11:16:52 +00:00
|
|
|
return file_settings_proto_rawDescGZIP(), []int{3}
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BoolMsg) GetBool1() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Bool1
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
type SimData struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
UnknownMessage *UnknownMessage `protobuf:"bytes,1,opt,name=unknownMessage,proto3" json:"unknownMessage,omitempty"`
|
|
|
|
Bool1 bool `protobuf:"varint,2,opt,name=bool1,proto3" json:"bool1,omitempty"`
|
|
|
|
CarrierName string `protobuf:"bytes,3,opt,name=carrierName,proto3" json:"carrierName,omitempty"`
|
|
|
|
HexHash string `protobuf:"bytes,4,opt,name=hexHash,proto3" json:"hexHash,omitempty"`
|
|
|
|
Int1 int64 `protobuf:"varint,5,opt,name=int1,proto3" json:"int1,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SimData) Reset() {
|
|
|
|
*x = SimData{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-07-09 11:16:52 +00:00
|
|
|
mi := &file_settings_proto_msgTypes[4]
|
2023-06-30 09:54:08 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SimData) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*SimData) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *SimData) ProtoReflect() protoreflect.Message {
|
2023-07-09 11:16:52 +00:00
|
|
|
mi := &file_settings_proto_msgTypes[4]
|
2023-06-30 09:54:08 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use SimData.ProtoReflect.Descriptor instead.
|
|
|
|
func (*SimData) Descriptor() ([]byte, []int) {
|
2023-07-09 11:16:52 +00:00
|
|
|
return file_settings_proto_rawDescGZIP(), []int{4}
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SimData) GetUnknownMessage() *UnknownMessage {
|
|
|
|
if x != nil {
|
|
|
|
return x.UnknownMessage
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SimData) GetBool1() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Bool1
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SimData) GetCarrierName() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.CarrierName
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SimData) GetHexHash() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.HexHash
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SimData) GetInt1() int64 {
|
|
|
|
if x != nil {
|
|
|
|
return x.Int1
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
type UnknownMessage struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Int1 int64 `protobuf:"varint,1,opt,name=int1,proto3" json:"int1,omitempty"`
|
|
|
|
Int2 int64 `protobuf:"varint,2,opt,name=int2,proto3" json:"int2,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UnknownMessage) Reset() {
|
|
|
|
*x = UnknownMessage{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-07-09 11:16:52 +00:00
|
|
|
mi := &file_settings_proto_msgTypes[5]
|
2023-06-30 09:54:08 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UnknownMessage) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*UnknownMessage) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *UnknownMessage) ProtoReflect() protoreflect.Message {
|
2023-07-09 11:16:52 +00:00
|
|
|
mi := &file_settings_proto_msgTypes[5]
|
2023-06-30 09:54:08 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use UnknownMessage.ProtoReflect.Descriptor instead.
|
|
|
|
func (*UnknownMessage) Descriptor() ([]byte, []int) {
|
2023-07-09 11:16:52 +00:00
|
|
|
return file_settings_proto_rawDescGZIP(), []int{5}
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UnknownMessage) GetInt1() int64 {
|
|
|
|
if x != nil {
|
|
|
|
return x.Int1
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *UnknownMessage) GetInt2() int64 {
|
|
|
|
if x != nil {
|
|
|
|
return x.Int2
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
type NoClue struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Count string `protobuf:"bytes,1,opt,name=count,proto3" json:"count,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *NoClue) Reset() {
|
|
|
|
*x = NoClue{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-07-09 11:16:52 +00:00
|
|
|
mi := &file_settings_proto_msgTypes[6]
|
2023-06-30 09:54:08 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *NoClue) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*NoClue) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *NoClue) ProtoReflect() protoreflect.Message {
|
2023-07-09 11:16:52 +00:00
|
|
|
mi := &file_settings_proto_msgTypes[6]
|
2023-06-30 09:54:08 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use NoClue.ProtoReflect.Descriptor instead.
|
|
|
|
func (*NoClue) Descriptor() ([]byte, []int) {
|
2023-07-09 11:16:52 +00:00
|
|
|
return file_settings_proto_rawDescGZIP(), []int{6}
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *NoClue) GetCount() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Count
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
type SomeData struct {
|
2023-06-30 09:54:08 +00:00
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
Field7 bool `protobuf:"varint,7,opt,name=field7,proto3" json:"field7,omitempty"`
|
|
|
|
Field12 bool `protobuf:"varint,12,opt,name=field12,proto3" json:"field12,omitempty"`
|
|
|
|
SomeEmojis [][]byte `protobuf:"bytes,15,rep,name=someEmojis,proto3" json:"someEmojis,omitempty"`
|
|
|
|
JsonData string `protobuf:"bytes,16,opt,name=jsonData,proto3" json:"jsonData,omitempty"`
|
|
|
|
SomeString string `protobuf:"bytes,17,opt,name=someString,proto3" json:"someString,omitempty"`
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (x *SomeData) Reset() {
|
|
|
|
*x = SomeData{}
|
2023-06-30 09:54:08 +00:00
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-07-09 11:16:52 +00:00
|
|
|
mi := &file_settings_proto_msgTypes[7]
|
2023-06-30 09:54:08 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (x *SomeData) String() string {
|
2023-06-30 09:54:08 +00:00
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (*SomeData) ProtoMessage() {}
|
2023-06-30 09:54:08 +00:00
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (x *SomeData) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_settings_proto_msgTypes[7]
|
2023-06-30 09:54:08 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
// Deprecated: Use SomeData.ProtoReflect.Descriptor instead.
|
|
|
|
func (*SomeData) Descriptor() ([]byte, []int) {
|
|
|
|
return file_settings_proto_rawDescGZIP(), []int{7}
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (x *SomeData) GetField7() bool {
|
2023-06-30 09:54:08 +00:00
|
|
|
if x != nil {
|
|
|
|
return x.Field7
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (x *SomeData) GetField12() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Field12
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SomeData) GetSomeEmojis() [][]byte {
|
|
|
|
if x != nil {
|
|
|
|
return x.SomeEmojis
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *SomeData) GetJsonData() string {
|
2023-06-30 09:54:08 +00:00
|
|
|
if x != nil {
|
|
|
|
return x.JsonData
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (x *SomeData) GetSomeString() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.SomeString
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
type RCSSettings struct {
|
2023-06-30 09:54:08 +00:00
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
IsEnabled bool `protobuf:"varint,1,opt,name=isEnabled,proto3" json:"isEnabled,omitempty"`
|
|
|
|
SendReadReceipts bool `protobuf:"varint,2,opt,name=sendReadReceipts,proto3" json:"sendReadReceipts,omitempty"`
|
|
|
|
ShowTypingIndicators bool `protobuf:"varint,3,opt,name=showTypingIndicators,proto3" json:"showTypingIndicators,omitempty"`
|
|
|
|
Bool4 bool `protobuf:"varint,4,opt,name=bool4,proto3" json:"bool4,omitempty"`
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (x *RCSSettings) Reset() {
|
|
|
|
*x = RCSSettings{}
|
2023-06-30 09:54:08 +00:00
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-07-09 11:16:52 +00:00
|
|
|
mi := &file_settings_proto_msgTypes[8]
|
2023-06-30 09:54:08 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (x *RCSSettings) String() string {
|
2023-06-30 09:54:08 +00:00
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (*RCSSettings) ProtoMessage() {}
|
2023-06-30 09:54:08 +00:00
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (x *RCSSettings) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_settings_proto_msgTypes[8]
|
2023-06-30 09:54:08 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
// Deprecated: Use RCSSettings.ProtoReflect.Descriptor instead.
|
|
|
|
func (*RCSSettings) Descriptor() ([]byte, []int) {
|
|
|
|
return file_settings_proto_rawDescGZIP(), []int{8}
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (x *RCSSettings) GetIsEnabled() bool {
|
2023-06-30 09:54:08 +00:00
|
|
|
if x != nil {
|
2023-07-09 11:16:52 +00:00
|
|
|
return x.IsEnabled
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (x *RCSSettings) GetSendReadReceipts() bool {
|
2023-06-30 09:54:08 +00:00
|
|
|
if x != nil {
|
2023-07-09 11:16:52 +00:00
|
|
|
return x.SendReadReceipts
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (x *RCSSettings) GetShowTypingIndicators() bool {
|
2023-06-30 09:54:08 +00:00
|
|
|
if x != nil {
|
2023-07-09 11:16:52 +00:00
|
|
|
return x.ShowTypingIndicators
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
func (x *RCSSettings) GetBool4() bool {
|
2023-06-30 09:54:08 +00:00
|
|
|
if x != nil {
|
|
|
|
return x.Bool4
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
type BooleanFields2 struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Bool1 bool `protobuf:"varint,1,opt,name=bool1,proto3" json:"bool1,omitempty"`
|
|
|
|
Bool2 bool `protobuf:"varint,2,opt,name=bool2,proto3" json:"bool2,omitempty"`
|
|
|
|
BoolMsg1 *BoolMsg `protobuf:"bytes,3,opt,name=boolMsg1,proto3" json:"boolMsg1,omitempty"`
|
|
|
|
BoolMsg2 *BoolMsg `protobuf:"bytes,5,opt,name=boolMsg2,proto3" json:"boolMsg2,omitempty"`
|
|
|
|
Bool3 bool `protobuf:"varint,6,opt,name=bool3,proto3" json:"bool3,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BooleanFields2) Reset() {
|
|
|
|
*x = BooleanFields2{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-07-09 11:16:52 +00:00
|
|
|
mi := &file_settings_proto_msgTypes[9]
|
2023-06-30 09:54:08 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BooleanFields2) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*BooleanFields2) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *BooleanFields2) ProtoReflect() protoreflect.Message {
|
2023-07-09 11:16:52 +00:00
|
|
|
mi := &file_settings_proto_msgTypes[9]
|
2023-06-30 09:54:08 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use BooleanFields2.ProtoReflect.Descriptor instead.
|
|
|
|
func (*BooleanFields2) Descriptor() ([]byte, []int) {
|
2023-07-09 11:16:52 +00:00
|
|
|
return file_settings_proto_rawDescGZIP(), []int{9}
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BooleanFields2) GetBool1() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Bool1
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BooleanFields2) GetBool2() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Bool2
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BooleanFields2) GetBoolMsg1() *BoolMsg {
|
|
|
|
if x != nil {
|
|
|
|
return x.BoolMsg1
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BooleanFields2) GetBoolMsg2() *BoolMsg {
|
|
|
|
if x != nil {
|
|
|
|
return x.BoolMsg2
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BooleanFields2) GetBool3() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Bool3
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
type BooleanFields3 struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Bool1 bool `protobuf:"varint,1,opt,name=bool1,proto3" json:"bool1,omitempty"`
|
|
|
|
Bool3 bool `protobuf:"varint,3,opt,name=bool3,proto3" json:"bool3,omitempty"`
|
|
|
|
Bool4 bool `protobuf:"varint,4,opt,name=bool4,proto3" json:"bool4,omitempty"`
|
|
|
|
Bool5 bool `protobuf:"varint,5,opt,name=bool5,proto3" json:"bool5,omitempty"`
|
|
|
|
Bool6 bool `protobuf:"varint,6,opt,name=bool6,proto3" json:"bool6,omitempty"`
|
|
|
|
Bool7 bool `protobuf:"varint,7,opt,name=bool7,proto3" json:"bool7,omitempty"`
|
|
|
|
Bool8 bool `protobuf:"varint,8,opt,name=bool8,proto3" json:"bool8,omitempty"`
|
|
|
|
Bool9 bool `protobuf:"varint,9,opt,name=bool9,proto3" json:"bool9,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BooleanFields3) Reset() {
|
|
|
|
*x = BooleanFields3{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-07-09 11:16:52 +00:00
|
|
|
mi := &file_settings_proto_msgTypes[10]
|
2023-06-30 09:54:08 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BooleanFields3) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*BooleanFields3) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *BooleanFields3) ProtoReflect() protoreflect.Message {
|
2023-07-09 11:16:52 +00:00
|
|
|
mi := &file_settings_proto_msgTypes[10]
|
2023-06-30 09:54:08 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use BooleanFields3.ProtoReflect.Descriptor instead.
|
|
|
|
func (*BooleanFields3) Descriptor() ([]byte, []int) {
|
2023-07-09 11:16:52 +00:00
|
|
|
return file_settings_proto_rawDescGZIP(), []int{10}
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BooleanFields3) GetBool1() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Bool1
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BooleanFields3) GetBool3() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Bool3
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BooleanFields3) GetBool4() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Bool4
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BooleanFields3) GetBool5() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Bool5
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BooleanFields3) GetBool6() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Bool6
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BooleanFields3) GetBool7() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Bool7
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BooleanFields3) GetBool8() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Bool8
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BooleanFields3) GetBool9() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.Bool9
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
var File_settings_proto protoreflect.FileDescriptor
|
|
|
|
|
2023-07-16 23:06:35 +00:00
|
|
|
//go:embed settings.pb.raw
|
|
|
|
var file_settings_proto_rawDesc []byte
|
2023-06-30 09:54:08 +00:00
|
|
|
|
|
|
|
var (
|
|
|
|
file_settings_proto_rawDescOnce sync.Once
|
|
|
|
file_settings_proto_rawDescData = file_settings_proto_rawDesc
|
|
|
|
)
|
|
|
|
|
|
|
|
func file_settings_proto_rawDescGZIP() []byte {
|
|
|
|
file_settings_proto_rawDescOnce.Do(func() {
|
|
|
|
file_settings_proto_rawDescData = protoimpl.X.CompressGZIP(file_settings_proto_rawDescData)
|
|
|
|
})
|
|
|
|
return file_settings_proto_rawDescData
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
var file_settings_proto_msgTypes = make([]protoimpl.MessageInfo, 11)
|
2023-06-30 09:54:08 +00:00
|
|
|
var file_settings_proto_goTypes = []interface{}{
|
|
|
|
(*Settings)(nil), // 0: settings.Settings
|
|
|
|
(*Data)(nil), // 1: settings.Data
|
2023-07-09 11:16:52 +00:00
|
|
|
(*RCSChats)(nil), // 2: settings.RCSChats
|
|
|
|
(*BoolMsg)(nil), // 3: settings.BoolMsg
|
|
|
|
(*SimData)(nil), // 4: settings.SimData
|
|
|
|
(*UnknownMessage)(nil), // 5: settings.UnknownMessage
|
|
|
|
(*NoClue)(nil), // 6: settings.NoClue
|
|
|
|
(*SomeData)(nil), // 7: settings.SomeData
|
|
|
|
(*RCSSettings)(nil), // 8: settings.RCSSettings
|
|
|
|
(*BooleanFields2)(nil), // 9: settings.BooleanFields2
|
|
|
|
(*BooleanFields3)(nil), // 10: settings.BooleanFields3
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
var file_settings_proto_depIdxs = []int32{
|
|
|
|
1, // 0: settings.Settings.data:type_name -> settings.Data
|
2023-07-09 11:16:52 +00:00
|
|
|
7, // 1: settings.Settings.opCodeData:type_name -> settings.SomeData
|
|
|
|
8, // 2: settings.Settings.rcsSettings:type_name -> settings.RCSSettings
|
|
|
|
9, // 3: settings.Settings.boolFields2:type_name -> settings.BooleanFields2
|
|
|
|
10, // 4: settings.Settings.boolFields3:type_name -> settings.BooleanFields3
|
|
|
|
2, // 5: settings.Data.rcsChats:type_name -> settings.RCSChats
|
|
|
|
4, // 6: settings.Data.simData:type_name -> settings.SimData
|
|
|
|
6, // 7: settings.Data.noClue:type_name -> settings.NoClue
|
|
|
|
5, // 8: settings.SimData.unknownMessage:type_name -> settings.UnknownMessage
|
|
|
|
3, // 9: settings.BooleanFields2.boolMsg1:type_name -> settings.BoolMsg
|
|
|
|
3, // 10: settings.BooleanFields2.boolMsg2:type_name -> settings.BoolMsg
|
2023-06-30 09:54:08 +00:00
|
|
|
11, // [11:11] is the sub-list for method output_type
|
|
|
|
11, // [11:11] is the sub-list for method input_type
|
|
|
|
11, // [11:11] is the sub-list for extension type_name
|
|
|
|
11, // [11:11] is the sub-list for extension extendee
|
|
|
|
0, // [0:11] is the sub-list for field type_name
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() { file_settings_proto_init() }
|
|
|
|
func file_settings_proto_init() {
|
|
|
|
if File_settings_proto != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !protoimpl.UnsafeEnabled {
|
|
|
|
file_settings_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*Settings); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_settings_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
switch v := v.(*Data); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_settings_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
2023-07-09 11:16:52 +00:00
|
|
|
switch v := v.(*RCSChats); i {
|
2023-06-30 09:54:08 +00:00
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_settings_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
2023-07-09 11:16:52 +00:00
|
|
|
switch v := v.(*BoolMsg); i {
|
2023-06-30 09:54:08 +00:00
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_settings_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
2023-07-09 11:16:52 +00:00
|
|
|
switch v := v.(*SimData); i {
|
2023-06-30 09:54:08 +00:00
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_settings_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
2023-07-09 11:16:52 +00:00
|
|
|
switch v := v.(*UnknownMessage); i {
|
2023-06-30 09:54:08 +00:00
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_settings_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
2023-07-09 11:16:52 +00:00
|
|
|
switch v := v.(*NoClue); i {
|
2023-06-30 09:54:08 +00:00
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_settings_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
2023-07-09 11:16:52 +00:00
|
|
|
switch v := v.(*SomeData); i {
|
2023-06-30 09:54:08 +00:00
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_settings_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
2023-07-09 11:16:52 +00:00
|
|
|
switch v := v.(*RCSSettings); i {
|
2023-06-30 09:54:08 +00:00
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_settings_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
|
2023-07-09 11:16:52 +00:00
|
|
|
switch v := v.(*BooleanFields2); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_settings_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
|
2023-06-30 09:54:08 +00:00
|
|
|
switch v := v.(*BooleanFields3); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
type x struct{}
|
|
|
|
out := protoimpl.TypeBuilder{
|
|
|
|
File: protoimpl.DescBuilder{
|
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
|
RawDescriptor: file_settings_proto_rawDesc,
|
|
|
|
NumEnums: 0,
|
2023-07-09 11:16:52 +00:00
|
|
|
NumMessages: 11,
|
2023-06-30 09:54:08 +00:00
|
|
|
NumExtensions: 0,
|
|
|
|
NumServices: 0,
|
|
|
|
},
|
|
|
|
GoTypes: file_settings_proto_goTypes,
|
|
|
|
DependencyIndexes: file_settings_proto_depIdxs,
|
|
|
|
MessageInfos: file_settings_proto_msgTypes,
|
|
|
|
}.Build()
|
|
|
|
File_settings_proto = out.File
|
|
|
|
file_settings_proto_rawDesc = nil
|
|
|
|
file_settings_proto_goTypes = nil
|
|
|
|
file_settings_proto_depIdxs = nil
|
|
|
|
}
|