216 lines
7.5 KiB
Go
216 lines
7.5 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: testing/jsonpb_test_proto/test_objects.proto
|
|
|
|
package jsonpb
|
|
|
|
import (
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
any "github.com/golang/protobuf/ptypes/any"
|
|
duration "github.com/golang/protobuf/ptypes/duration"
|
|
_struct "github.com/golang/protobuf/ptypes/struct"
|
|
timestamp "github.com/golang/protobuf/ptypes/timestamp"
|
|
wrappers "github.com/golang/protobuf/ptypes/wrappers"
|
|
math "math"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
type KnownTypes struct {
|
|
An *any.Any `protobuf:"bytes,14,opt,name=an" json:"an,omitempty"`
|
|
Dur *duration.Duration `protobuf:"bytes,1,opt,name=dur" json:"dur,omitempty"`
|
|
St *_struct.Struct `protobuf:"bytes,12,opt,name=st" json:"st,omitempty"`
|
|
Ts *timestamp.Timestamp `protobuf:"bytes,2,opt,name=ts" json:"ts,omitempty"`
|
|
Lv *_struct.ListValue `protobuf:"bytes,15,opt,name=lv" json:"lv,omitempty"`
|
|
Val *_struct.Value `protobuf:"bytes,16,opt,name=val" json:"val,omitempty"`
|
|
Dbl *wrappers.DoubleValue `protobuf:"bytes,3,opt,name=dbl" json:"dbl,omitempty"`
|
|
Flt *wrappers.FloatValue `protobuf:"bytes,4,opt,name=flt" json:"flt,omitempty"`
|
|
I64 *wrappers.Int64Value `protobuf:"bytes,5,opt,name=i64" json:"i64,omitempty"`
|
|
U64 *wrappers.UInt64Value `protobuf:"bytes,6,opt,name=u64" json:"u64,omitempty"`
|
|
I32 *wrappers.Int32Value `protobuf:"bytes,7,opt,name=i32" json:"i32,omitempty"`
|
|
U32 *wrappers.UInt32Value `protobuf:"bytes,8,opt,name=u32" json:"u32,omitempty"`
|
|
Bool *wrappers.BoolValue `protobuf:"bytes,9,opt,name=bool" json:"bool,omitempty"`
|
|
Str *wrappers.StringValue `protobuf:"bytes,10,opt,name=str" json:"str,omitempty"`
|
|
Bytes *wrappers.BytesValue `protobuf:"bytes,11,opt,name=bytes" json:"bytes,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *KnownTypes) Reset() { *m = KnownTypes{} }
|
|
func (m *KnownTypes) String() string { return proto.CompactTextString(m) }
|
|
func (*KnownTypes) ProtoMessage() {}
|
|
func (*KnownTypes) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_ab4422ec10550c41, []int{0}
|
|
}
|
|
|
|
func (m *KnownTypes) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_KnownTypes.Unmarshal(m, b)
|
|
}
|
|
func (m *KnownTypes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_KnownTypes.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *KnownTypes) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_KnownTypes.Merge(m, src)
|
|
}
|
|
func (m *KnownTypes) XXX_Size() int {
|
|
return xxx_messageInfo_KnownTypes.Size(m)
|
|
}
|
|
func (m *KnownTypes) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_KnownTypes.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_KnownTypes proto.InternalMessageInfo
|
|
|
|
func (m *KnownTypes) GetAn() *any.Any {
|
|
if m != nil {
|
|
return m.An
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *KnownTypes) GetDur() *duration.Duration {
|
|
if m != nil {
|
|
return m.Dur
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *KnownTypes) GetSt() *_struct.Struct {
|
|
if m != nil {
|
|
return m.St
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *KnownTypes) GetTs() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.Ts
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *KnownTypes) GetLv() *_struct.ListValue {
|
|
if m != nil {
|
|
return m.Lv
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *KnownTypes) GetVal() *_struct.Value {
|
|
if m != nil {
|
|
return m.Val
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *KnownTypes) GetDbl() *wrappers.DoubleValue {
|
|
if m != nil {
|
|
return m.Dbl
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *KnownTypes) GetFlt() *wrappers.FloatValue {
|
|
if m != nil {
|
|
return m.Flt
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *KnownTypes) GetI64() *wrappers.Int64Value {
|
|
if m != nil {
|
|
return m.I64
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *KnownTypes) GetU64() *wrappers.UInt64Value {
|
|
if m != nil {
|
|
return m.U64
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *KnownTypes) GetI32() *wrappers.Int32Value {
|
|
if m != nil {
|
|
return m.I32
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *KnownTypes) GetU32() *wrappers.UInt32Value {
|
|
if m != nil {
|
|
return m.U32
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *KnownTypes) GetBool() *wrappers.BoolValue {
|
|
if m != nil {
|
|
return m.Bool
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *KnownTypes) GetStr() *wrappers.StringValue {
|
|
if m != nil {
|
|
return m.Str
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *KnownTypes) GetBytes() *wrappers.BytesValue {
|
|
if m != nil {
|
|
return m.Bytes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*KnownTypes)(nil), "jsonpb.KnownTypes")
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterFile("testing/jsonpb_test_proto/test_objects.proto", fileDescriptor_ab4422ec10550c41)
|
|
}
|
|
|
|
var fileDescriptor_ab4422ec10550c41 = []byte{
|
|
// 402 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0xd0, 0xdf, 0x6b, 0xd5, 0x30,
|
|
0x14, 0x07, 0x70, 0x96, 0xee, 0x4e, 0xcd, 0x44, 0x25, 0x88, 0x66, 0xd7, 0xa1, 0x22, 0x82, 0xc3,
|
|
0x1f, 0x2d, 0xb6, 0xa5, 0xef, 0x0e, 0x11, 0x44, 0x9f, 0xba, 0xe9, 0xeb, 0x48, 0xd6, 0xac, 0x74,
|
|
0x64, 0x49, 0x49, 0x4e, 0xee, 0xe8, 0xbf, 0xe6, 0x5f, 0x27, 0x49, 0x73, 0x45, 0x6e, 0xc9, 0xde,
|
|
0xee, 0xcd, 0xf7, 0x73, 0xbe, 0x9c, 0x53, 0xfc, 0x11, 0x84, 0x85, 0x41, 0xf5, 0xc5, 0xb5, 0xd5,
|
|
0x6a, 0xe4, 0x17, 0xfe, 0xef, 0xc5, 0x68, 0x34, 0xe8, 0x22, 0xfc, 0xd4, 0xfc, 0x5a, 0x5c, 0x82,
|
|
0xcd, 0xc3, 0x13, 0x39, 0x98, 0xd5, 0xfa, 0xa8, 0xd7, 0xba, 0x97, 0xa2, 0x08, 0xaf, 0xdc, 0x5d,
|
|
0x15, 0x4c, 0x4d, 0x33, 0x59, 0xbf, 0xdc, 0x8d, 0x3a, 0x67, 0x18, 0x0c, 0x5a, 0xc5, 0xfc, 0x78,
|
|
0x37, 0xb7, 0x60, 0xdc, 0x25, 0xc4, 0xf4, 0xd5, 0x6e, 0x0a, 0xc3, 0x8d, 0xb0, 0xc0, 0x6e, 0xc6,
|
|
0x54, 0xfd, 0xad, 0x61, 0xe3, 0x28, 0x4c, 0xdc, 0xf0, 0xcd, 0x9f, 0x15, 0xc6, 0x3f, 0x94, 0xbe,
|
|
0x55, 0xe7, 0xd3, 0x28, 0x2c, 0x79, 0x8b, 0x11, 0x53, 0xf4, 0xd1, 0xeb, 0xbd, 0x93, 0xc3, 0xf2,
|
|
0x69, 0x3e, 0xcf, 0xe6, 0xdb, 0xd9, 0xfc, 0x8b, 0x9a, 0x5a, 0xc4, 0x14, 0xf9, 0x80, 0xb3, 0xce,
|
|
0x19, 0xba, 0x17, 0xd8, 0xd1, 0x82, 0x7d, 0x8d, 0x17, 0xb4, 0x5e, 0x91, 0x77, 0x18, 0x59, 0xa0,
|
|
0x0f, 0x83, 0x7d, 0xbe, 0xb0, 0x67, 0xe1, 0x9a, 0x16, 0x59, 0x20, 0xef, 0x31, 0x02, 0x4b, 0x51,
|
|
0x80, 0xeb, 0x05, 0x3c, 0xdf, 0x1e, 0xd6, 0x22, 0xb0, 0xde, 0xca, 0x0d, 0x7d, 0x9c, 0xb0, 0x3f,
|
|
0x07, 0x0b, 0xbf, 0x99, 0x74, 0xa2, 0x45, 0x72, 0x43, 0x4e, 0x70, 0xb6, 0x61, 0x92, 0x3e, 0x09,
|
|
0xf8, 0xd9, 0x02, 0xcf, 0xd0, 0x13, 0x92, 0xe3, 0xac, 0xe3, 0x92, 0x66, 0x41, 0x1e, 0x2f, 0xef,
|
|
0xd2, 0x8e, 0x4b, 0x11, 0x7d, 0xc7, 0x25, 0xf9, 0x84, 0xb3, 0x2b, 0x09, 0x74, 0x3f, 0xf8, 0x17,
|
|
0x0b, 0xff, 0x4d, 0x6a, 0x16, 0xf7, 0xf0, 0xce, 0xf3, 0xa1, 0xa9, 0xe9, 0x2a, 0xc1, 0xbf, 0x2b,
|
|
0x68, 0xea, 0xc8, 0x87, 0xa6, 0xf6, 0xdb, 0xb8, 0xa6, 0xa6, 0x07, 0x89, 0x6d, 0x7e, 0xfd, 0xef,
|
|
0x5d, 0x53, 0x87, 0xfa, 0xaa, 0xa4, 0xf7, 0xd2, 0xf5, 0x55, 0xb9, 0xad, 0xaf, 0xca, 0x50, 0x5f,
|
|
0x95, 0xf4, 0xfe, 0x1d, 0xf5, 0xff, 0xbc, 0x0b, 0x7e, 0x9f, 0x6b, 0x2d, 0xe9, 0x83, 0xc4, 0x47,
|
|
0x3f, 0xd5, 0x5a, 0xce, 0x3c, 0x38, 0xdf, 0x6f, 0xc1, 0x50, 0x9c, 0xe8, 0x3f, 0x03, 0x33, 0xa8,
|
|
0x3e, 0xf6, 0x5b, 0x30, 0xe4, 0x33, 0x5e, 0xf1, 0x09, 0x84, 0xa5, 0x87, 0x89, 0x03, 0x4e, 0x7d,
|
|
0x3a, 0x0f, 0xcc, 0xf2, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xab, 0x65, 0x99, 0x5a, 0x8d, 0x03,
|
|
0x00, 0x00,
|
|
}
|