test

package
v1.6.0 Latest Latest
Warning

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

Go to latest
Published: Aug 8, 2023 License: Apache-2.0 Imports: 15 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	RegularEnum_name = map[int32]string{
		0: "REGULAR_UNKNOWN",
		1: "REGULAR_A",
		2: "REGULAR_B",
	}
	RegularEnum_value = map[string]int32{
		"REGULAR_UNKNOWN": 0,
		"REGULAR_A":       1,
		"REGULAR_B":       2,
	}
)

Enum value maps for RegularEnum.

View Source
var (
	CustomEnum_name = map[int32]string{
		0: "CUSTOM_UNKNOWN",
		1: "CUSTOM_V1_0",
		2: "CUSTOM_V1_0_1",
	}
	CustomEnum_value = map[string]int32{
		"CUSTOM_UNKNOWN": 0,
		"CUSTOM_V1_0":    1,
		"CUSTOM_V1_0_1":  2,
	}
)

Enum value maps for CustomEnum.

View Source
var CustomEnum_customname = map[int32]string{
	1: "1.0",
	2: "1.0.1",
}

CustomEnum_customname contains custom string values that override CustomEnum_name.

View Source
var CustomEnum_customvalue = map[string]int32{
	"UNKNOWN": 0,
	"V1_0":    1,
	"1.0":     1,
	"1.0.0":   1,
	"V1_0_1":  2,
	"1.0.1":   2,
}

CustomEnum_customvalue contains custom string values that extend CustomEnum_value.

View Source
var File_enums_proto protoreflect.FileDescriptor
View Source
var File_fieldmask_proto protoreflect.FileDescriptor
View Source
var File_scalars_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type CustomEnum

type CustomEnum int32
const (
	CustomEnum_CUSTOM_UNKNOWN CustomEnum = 0
	CustomEnum_CUSTOM_V1_0    CustomEnum = 1
	CustomEnum_CUSTOM_V1_0_1  CustomEnum = 2
)

func (CustomEnum) Descriptor

func (CustomEnum) Descriptor() protoreflect.EnumDescriptor

func (CustomEnum) Enum

func (x CustomEnum) Enum() *CustomEnum

func (CustomEnum) EnumDescriptor deprecated

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

Deprecated: Use CustomEnum.Descriptor instead.

func (CustomEnum) MarshalJSON added in v1.3.0

func (x CustomEnum) MarshalJSON() ([]byte, error)

MarshalJSON marshals the CustomEnum to JSON.

func (CustomEnum) MarshalProtoJSON

func (x CustomEnum) MarshalProtoJSON(s *jsonplugin.MarshalState)

MarshalProtoJSON marshals the CustomEnum to JSON.

func (CustomEnum) MarshalText added in v1.3.0

func (x CustomEnum) MarshalText() ([]byte, error)

MarshalText marshals the CustomEnum to text.

func (CustomEnum) Number

func (x CustomEnum) Number() protoreflect.EnumNumber

func (CustomEnum) String

func (x CustomEnum) String() string

func (CustomEnum) Type

func (*CustomEnum) UnmarshalJSON added in v1.3.0

func (x *CustomEnum) UnmarshalJSON(b []byte) error

UnmarshalJSON unmarshals the CustomEnum from JSON.

func (*CustomEnum) UnmarshalProtoJSON

func (x *CustomEnum) UnmarshalProtoJSON(s *jsonplugin.UnmarshalState)

UnmarshalProtoJSON unmarshals the CustomEnum from JSON.

func (*CustomEnum) UnmarshalText added in v1.3.0

func (x *CustomEnum) UnmarshalText(b []byte) error

UnmarshalText unmarshals the CustomEnum from text.

type CustomEnumValue

type CustomEnumValue struct {
	Value CustomEnum `protobuf:"varint,1,opt,name=value,proto3,enum=thethings.json.test.CustomEnum" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*CustomEnumValue) Descriptor deprecated

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

Deprecated: Use CustomEnumValue.ProtoReflect.Descriptor instead.

func (*CustomEnumValue) GetValue

func (x *CustomEnumValue) GetValue() CustomEnum

func (*CustomEnumValue) MarshalJSON added in v1.3.0

func (x *CustomEnumValue) MarshalJSON() ([]byte, error)

MarshalJSON marshals the CustomEnumValue to JSON.

func (*CustomEnumValue) MarshalProtoJSON

func (x *CustomEnumValue) MarshalProtoJSON(s *jsonplugin.MarshalState)

MarshalProtoJSON marshals the CustomEnumValue message to JSON.

func (*CustomEnumValue) ProtoMessage

func (*CustomEnumValue) ProtoMessage()

func (*CustomEnumValue) ProtoReflect

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

func (*CustomEnumValue) Reset

func (x *CustomEnumValue) Reset()

func (*CustomEnumValue) String

func (x *CustomEnumValue) String() string

func (*CustomEnumValue) UnmarshalJSON added in v1.3.0

func (x *CustomEnumValue) UnmarshalJSON(b []byte) error

UnmarshalJSON unmarshals the CustomEnumValue from JSON.

func (*CustomEnumValue) UnmarshalProtoJSON

func (x *CustomEnumValue) UnmarshalProtoJSON(s *jsonplugin.UnmarshalState)

UnmarshalProtoJSON unmarshals the CustomEnumValue message from JSON.

type MessageWithEnums

type MessageWithEnums struct {
	Regular        RegularEnum        `protobuf:"varint,1,opt,name=regular,proto3,enum=thethings.json.test.RegularEnum" json:"regular,omitempty"`
	Regulars       []RegularEnum      `protobuf:"varint,2,rep,packed,name=regulars,proto3,enum=thethings.json.test.RegularEnum" json:"regulars,omitempty"`
	Custom         CustomEnum         `protobuf:"varint,3,opt,name=custom,proto3,enum=thethings.json.test.CustomEnum" json:"custom,omitempty"`
	Customs        []CustomEnum       `protobuf:"varint,4,rep,packed,name=customs,proto3,enum=thethings.json.test.CustomEnum" json:"customs,omitempty"`
	WrappedCustom  *CustomEnumValue   `protobuf:"bytes,5,opt,name=wrapped_custom,json=wrappedCustom,proto3" json:"wrapped_custom,omitempty"`
	WrappedCustoms []*CustomEnumValue `protobuf:"bytes,6,rep,name=wrapped_customs,json=wrappedCustoms,proto3" json:"wrapped_customs,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageWithEnums) Descriptor deprecated

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

Deprecated: Use MessageWithEnums.ProtoReflect.Descriptor instead.

func (*MessageWithEnums) GetCustom

func (x *MessageWithEnums) GetCustom() CustomEnum

func (*MessageWithEnums) GetCustoms

func (x *MessageWithEnums) GetCustoms() []CustomEnum

func (*MessageWithEnums) GetRegular

func (x *MessageWithEnums) GetRegular() RegularEnum

func (*MessageWithEnums) GetRegulars

func (x *MessageWithEnums) GetRegulars() []RegularEnum

func (*MessageWithEnums) GetWrappedCustom

func (x *MessageWithEnums) GetWrappedCustom() *CustomEnumValue

func (*MessageWithEnums) GetWrappedCustoms

func (x *MessageWithEnums) GetWrappedCustoms() []*CustomEnumValue

func (*MessageWithEnums) MarshalJSON added in v1.3.0

func (x *MessageWithEnums) MarshalJSON() ([]byte, error)

MarshalJSON marshals the MessageWithEnums to JSON.

func (*MessageWithEnums) MarshalProtoJSON

func (x *MessageWithEnums) MarshalProtoJSON(s *jsonplugin.MarshalState)

MarshalProtoJSON marshals the MessageWithEnums message to JSON.

func (*MessageWithEnums) ProtoMessage

func (*MessageWithEnums) ProtoMessage()

func (*MessageWithEnums) ProtoReflect

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

func (*MessageWithEnums) Reset

func (x *MessageWithEnums) Reset()

func (*MessageWithEnums) String

func (x *MessageWithEnums) String() string

func (*MessageWithEnums) UnmarshalJSON added in v1.3.0

func (x *MessageWithEnums) UnmarshalJSON(b []byte) error

UnmarshalJSON unmarshals the MessageWithEnums from JSON.

func (*MessageWithEnums) UnmarshalProtoJSON

func (x *MessageWithEnums) UnmarshalProtoJSON(s *jsonplugin.UnmarshalState)

UnmarshalProtoJSON unmarshals the MessageWithEnums message from JSON.

type MessageWithFieldMask added in v1.4.1

type MessageWithFieldMask struct {
	FieldMask *fieldmaskpb.FieldMask `protobuf:"bytes,1,opt,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"`
	Name      string                 `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageWithFieldMask) Descriptor deprecated added in v1.4.1

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

Deprecated: Use MessageWithFieldMask.ProtoReflect.Descriptor instead.

func (*MessageWithFieldMask) GetFieldMask added in v1.4.1

func (x *MessageWithFieldMask) GetFieldMask() *fieldmaskpb.FieldMask

func (*MessageWithFieldMask) GetName added in v1.4.1

func (x *MessageWithFieldMask) GetName() string

func (*MessageWithFieldMask) MarshalJSON added in v1.4.1

func (x *MessageWithFieldMask) MarshalJSON() ([]byte, error)

MarshalJSON marshals the MessageWithFieldMask to JSON.

func (*MessageWithFieldMask) MarshalProtoJSON added in v1.4.1

func (x *MessageWithFieldMask) MarshalProtoJSON(s *jsonplugin.MarshalState)

MarshalProtoJSON marshals the MessageWithFieldMask message to JSON.

func (*MessageWithFieldMask) ProtoMessage added in v1.4.1

func (*MessageWithFieldMask) ProtoMessage()

func (*MessageWithFieldMask) ProtoReflect added in v1.4.1

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

func (*MessageWithFieldMask) Reset added in v1.4.1

func (x *MessageWithFieldMask) Reset()

func (*MessageWithFieldMask) String added in v1.4.1

func (x *MessageWithFieldMask) String() string

func (*MessageWithFieldMask) UnmarshalJSON added in v1.4.1

func (x *MessageWithFieldMask) UnmarshalJSON(b []byte) error

UnmarshalJSON unmarshals the MessageWithFieldMask from JSON.

func (*MessageWithFieldMask) UnmarshalProtoJSON added in v1.4.1

func (x *MessageWithFieldMask) UnmarshalProtoJSON(s *jsonplugin.UnmarshalState)

UnmarshalProtoJSON unmarshals the MessageWithFieldMask message from JSON.

type MessageWithFieldmaskAndSubmessageWithFieldmask added in v1.4.1

type MessageWithFieldmaskAndSubmessageWithFieldmask struct {
	FieldMask  *fieldmaskpb.FieldMask   `protobuf:"bytes,1,opt,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"`
	Submessage *MessageWithoutFieldMask `protobuf:"bytes,2,opt,name=submessage,proto3" json:"submessage,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageWithFieldmaskAndSubmessageWithFieldmask) Descriptor deprecated added in v1.4.1

Deprecated: Use MessageWithFieldmaskAndSubmessageWithFieldmask.ProtoReflect.Descriptor instead.

func (*MessageWithFieldmaskAndSubmessageWithFieldmask) GetFieldMask added in v1.4.1

func (*MessageWithFieldmaskAndSubmessageWithFieldmask) GetSubmessage added in v1.4.1

func (*MessageWithFieldmaskAndSubmessageWithFieldmask) MarshalJSON added in v1.4.1

MarshalJSON marshals the MessageWithFieldmaskAndSubmessageWithFieldmask to JSON.

func (*MessageWithFieldmaskAndSubmessageWithFieldmask) MarshalProtoJSON added in v1.4.1

MarshalProtoJSON marshals the MessageWithFieldmaskAndSubmessageWithFieldmask message to JSON.

func (*MessageWithFieldmaskAndSubmessageWithFieldmask) ProtoMessage added in v1.4.1

func (*MessageWithFieldmaskAndSubmessageWithFieldmask) ProtoReflect added in v1.4.1

func (*MessageWithFieldmaskAndSubmessageWithFieldmask) Reset added in v1.4.1

func (*MessageWithFieldmaskAndSubmessageWithFieldmask) String added in v1.4.1

func (*MessageWithFieldmaskAndSubmessageWithFieldmask) UnmarshalJSON added in v1.4.1

UnmarshalJSON unmarshals the MessageWithFieldmaskAndSubmessageWithFieldmask from JSON.

func (*MessageWithFieldmaskAndSubmessageWithFieldmask) UnmarshalProtoJSON added in v1.4.1

UnmarshalProtoJSON unmarshals the MessageWithFieldmaskAndSubmessageWithFieldmask message from JSON.

type MessageWithFieldmaskAndSubmessageWithoutFieldmask added in v1.4.1

type MessageWithFieldmaskAndSubmessageWithoutFieldmask struct {
	FieldMask  *fieldmaskpb.FieldMask `protobuf:"bytes,1,opt,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"`
	Submessage *MessageWithFieldMask  `protobuf:"bytes,2,opt,name=submessage,proto3" json:"submessage,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageWithFieldmaskAndSubmessageWithoutFieldmask) Descriptor deprecated added in v1.4.1

Deprecated: Use MessageWithFieldmaskAndSubmessageWithoutFieldmask.ProtoReflect.Descriptor instead.

func (*MessageWithFieldmaskAndSubmessageWithoutFieldmask) GetFieldMask added in v1.4.1

func (*MessageWithFieldmaskAndSubmessageWithoutFieldmask) GetSubmessage added in v1.4.1

func (*MessageWithFieldmaskAndSubmessageWithoutFieldmask) MarshalJSON added in v1.4.1

MarshalJSON marshals the MessageWithFieldmaskAndSubmessageWithoutFieldmask to JSON.

func (*MessageWithFieldmaskAndSubmessageWithoutFieldmask) MarshalProtoJSON added in v1.4.1

MarshalProtoJSON marshals the MessageWithFieldmaskAndSubmessageWithoutFieldmask message to JSON.

func (*MessageWithFieldmaskAndSubmessageWithoutFieldmask) ProtoMessage added in v1.4.1

func (*MessageWithFieldmaskAndSubmessageWithoutFieldmask) ProtoReflect added in v1.4.1

func (*MessageWithFieldmaskAndSubmessageWithoutFieldmask) Reset added in v1.4.1

func (*MessageWithFieldmaskAndSubmessageWithoutFieldmask) String added in v1.4.1

func (*MessageWithFieldmaskAndSubmessageWithoutFieldmask) UnmarshalJSON added in v1.4.1

UnmarshalJSON unmarshals the MessageWithFieldmaskAndSubmessageWithoutFieldmask from JSON.

func (*MessageWithFieldmaskAndSubmessageWithoutFieldmask) UnmarshalProtoJSON added in v1.4.1

UnmarshalProtoJSON unmarshals the MessageWithFieldmaskAndSubmessageWithoutFieldmask message from JSON.

type MessageWithMarshaler

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

func (*MessageWithMarshaler) Descriptor deprecated

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

Deprecated: Use MessageWithMarshaler.ProtoReflect.Descriptor instead.

func (*MessageWithMarshaler) GetMessage

func (x *MessageWithMarshaler) GetMessage() string

func (*MessageWithMarshaler) MarshalJSON added in v1.3.0

func (x *MessageWithMarshaler) MarshalJSON() ([]byte, error)

MarshalJSON marshals the MessageWithMarshaler to JSON.

func (*MessageWithMarshaler) MarshalProtoJSON

func (x *MessageWithMarshaler) MarshalProtoJSON(s *jsonplugin.MarshalState)

MarshalProtoJSON marshals the MessageWithMarshaler message to JSON.

func (*MessageWithMarshaler) ProtoMessage

func (*MessageWithMarshaler) ProtoMessage()

func (*MessageWithMarshaler) ProtoReflect

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

func (*MessageWithMarshaler) Reset

func (x *MessageWithMarshaler) Reset()

func (*MessageWithMarshaler) String

func (x *MessageWithMarshaler) String() string

func (*MessageWithMarshaler) UnmarshalJSON added in v1.3.0

func (x *MessageWithMarshaler) UnmarshalJSON(b []byte) error

UnmarshalJSON unmarshals the MessageWithMarshaler from JSON.

func (*MessageWithMarshaler) UnmarshalProtoJSON

func (x *MessageWithMarshaler) UnmarshalProtoJSON(s *jsonplugin.UnmarshalState)

UnmarshalProtoJSON unmarshals the MessageWithMarshaler message from JSON.

type MessageWithOneofEnums

type MessageWithOneofEnums struct {

	// Types that are assignable to Value:
	//
	//	*MessageWithOneofEnums_Regular
	//	*MessageWithOneofEnums_Custom
	//	*MessageWithOneofEnums_WrappedCustom
	Value isMessageWithOneofEnums_Value `protobuf_oneof:"value"`
	// contains filtered or unexported fields
}

func (*MessageWithOneofEnums) Descriptor deprecated

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

Deprecated: Use MessageWithOneofEnums.ProtoReflect.Descriptor instead.

func (*MessageWithOneofEnums) GetCustom

func (x *MessageWithOneofEnums) GetCustom() CustomEnum

func (*MessageWithOneofEnums) GetRegular

func (x *MessageWithOneofEnums) GetRegular() RegularEnum

func (*MessageWithOneofEnums) GetValue

func (m *MessageWithOneofEnums) GetValue() isMessageWithOneofEnums_Value

func (*MessageWithOneofEnums) GetWrappedCustom

func (x *MessageWithOneofEnums) GetWrappedCustom() *CustomEnumValue

func (*MessageWithOneofEnums) MarshalJSON added in v1.3.0

func (x *MessageWithOneofEnums) MarshalJSON() ([]byte, error)

MarshalJSON marshals the MessageWithOneofEnums to JSON.

func (*MessageWithOneofEnums) MarshalProtoJSON

func (x *MessageWithOneofEnums) MarshalProtoJSON(s *jsonplugin.MarshalState)

MarshalProtoJSON marshals the MessageWithOneofEnums message to JSON.

func (*MessageWithOneofEnums) ProtoMessage

func (*MessageWithOneofEnums) ProtoMessage()

func (*MessageWithOneofEnums) ProtoReflect

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

func (*MessageWithOneofEnums) Reset

func (x *MessageWithOneofEnums) Reset()

func (*MessageWithOneofEnums) String

func (x *MessageWithOneofEnums) String() string

func (*MessageWithOneofEnums) UnmarshalJSON added in v1.3.0

func (x *MessageWithOneofEnums) UnmarshalJSON(b []byte) error

UnmarshalJSON unmarshals the MessageWithOneofEnums from JSON.

func (*MessageWithOneofEnums) UnmarshalProtoJSON

func (x *MessageWithOneofEnums) UnmarshalProtoJSON(s *jsonplugin.UnmarshalState)

UnmarshalProtoJSON unmarshals the MessageWithOneofEnums message from JSON.

type MessageWithOneofEnums_Custom

type MessageWithOneofEnums_Custom struct {
	Custom CustomEnum `protobuf:"varint,2,opt,name=custom,proto3,enum=thethings.json.test.CustomEnum,oneof"`
}

type MessageWithOneofEnums_Regular

type MessageWithOneofEnums_Regular struct {
	Regular RegularEnum `protobuf:"varint,1,opt,name=regular,proto3,enum=thethings.json.test.RegularEnum,oneof"`
}

type MessageWithOneofEnums_WrappedCustom

type MessageWithOneofEnums_WrappedCustom struct {
	WrappedCustom *CustomEnumValue `protobuf:"bytes,3,opt,name=wrapped_custom,json=wrappedCustom,proto3,oneof"`
}

type MessageWithOneofScalars

type MessageWithOneofScalars struct {

	// Types that are assignable to Value:
	//
	//	*MessageWithOneofScalars_DoubleValue
	//	*MessageWithOneofScalars_FloatValue
	//	*MessageWithOneofScalars_Int32Value
	//	*MessageWithOneofScalars_Int64Value
	//	*MessageWithOneofScalars_Uint32Value
	//	*MessageWithOneofScalars_Uint64Value
	//	*MessageWithOneofScalars_Sint32Value
	//	*MessageWithOneofScalars_Sint64Value
	//	*MessageWithOneofScalars_Fixed32Value
	//	*MessageWithOneofScalars_Fixed64Value
	//	*MessageWithOneofScalars_Sfixed32Value
	//	*MessageWithOneofScalars_Sfixed64Value
	//	*MessageWithOneofScalars_BoolValue
	//	*MessageWithOneofScalars_StringValue
	//	*MessageWithOneofScalars_BytesValue
	//	*MessageWithOneofScalars_HexBytesValue
	Value isMessageWithOneofScalars_Value `protobuf_oneof:"value"`
	// contains filtered or unexported fields
}

func (*MessageWithOneofScalars) Descriptor deprecated

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

Deprecated: Use MessageWithOneofScalars.ProtoReflect.Descriptor instead.

func (*MessageWithOneofScalars) GetBoolValue

func (x *MessageWithOneofScalars) GetBoolValue() bool

func (*MessageWithOneofScalars) GetBytesValue

func (x *MessageWithOneofScalars) GetBytesValue() []byte

func (*MessageWithOneofScalars) GetDoubleValue

func (x *MessageWithOneofScalars) GetDoubleValue() float64

func (*MessageWithOneofScalars) GetFixed32Value

func (x *MessageWithOneofScalars) GetFixed32Value() uint32

func (*MessageWithOneofScalars) GetFixed64Value

func (x *MessageWithOneofScalars) GetFixed64Value() uint64

func (*MessageWithOneofScalars) GetFloatValue

func (x *MessageWithOneofScalars) GetFloatValue() float32

func (*MessageWithOneofScalars) GetHexBytesValue added in v1.2.0

func (x *MessageWithOneofScalars) GetHexBytesValue() []byte

func (*MessageWithOneofScalars) GetInt32Value

func (x *MessageWithOneofScalars) GetInt32Value() int32

func (*MessageWithOneofScalars) GetInt64Value

func (x *MessageWithOneofScalars) GetInt64Value() int64

func (*MessageWithOneofScalars) GetSfixed32Value

func (x *MessageWithOneofScalars) GetSfixed32Value() int32

func (*MessageWithOneofScalars) GetSfixed64Value

func (x *MessageWithOneofScalars) GetSfixed64Value() int64

func (*MessageWithOneofScalars) GetSint32Value

func (x *MessageWithOneofScalars) GetSint32Value() int32

func (*MessageWithOneofScalars) GetSint64Value

func (x *MessageWithOneofScalars) GetSint64Value() int64

func (*MessageWithOneofScalars) GetStringValue

func (x *MessageWithOneofScalars) GetStringValue() string

func (*MessageWithOneofScalars) GetUint32Value

func (x *MessageWithOneofScalars) GetUint32Value() uint32

func (*MessageWithOneofScalars) GetUint64Value

func (x *MessageWithOneofScalars) GetUint64Value() uint64

func (*MessageWithOneofScalars) GetValue

func (m *MessageWithOneofScalars) GetValue() isMessageWithOneofScalars_Value

func (*MessageWithOneofScalars) MarshalJSON added in v1.3.0

func (x *MessageWithOneofScalars) MarshalJSON() ([]byte, error)

MarshalJSON marshals the MessageWithOneofScalars to JSON.

func (*MessageWithOneofScalars) MarshalProtoJSON

func (x *MessageWithOneofScalars) MarshalProtoJSON(s *jsonplugin.MarshalState)

MarshalProtoJSON marshals the MessageWithOneofScalars message to JSON.

func (*MessageWithOneofScalars) ProtoMessage

func (*MessageWithOneofScalars) ProtoMessage()

func (*MessageWithOneofScalars) ProtoReflect

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

func (*MessageWithOneofScalars) Reset

func (x *MessageWithOneofScalars) Reset()

func (*MessageWithOneofScalars) String

func (x *MessageWithOneofScalars) String() string

func (*MessageWithOneofScalars) UnmarshalJSON added in v1.3.0

func (x *MessageWithOneofScalars) UnmarshalJSON(b []byte) error

UnmarshalJSON unmarshals the MessageWithOneofScalars from JSON.

func (*MessageWithOneofScalars) UnmarshalProtoJSON

func (x *MessageWithOneofScalars) UnmarshalProtoJSON(s *jsonplugin.UnmarshalState)

UnmarshalProtoJSON unmarshals the MessageWithOneofScalars message from JSON.

type MessageWithOneofScalars_BoolValue

type MessageWithOneofScalars_BoolValue struct {
	BoolValue bool `protobuf:"varint,13,opt,name=bool_value,json=boolValue,proto3,oneof"`
}

type MessageWithOneofScalars_BytesValue

type MessageWithOneofScalars_BytesValue struct {
	BytesValue []byte `protobuf:"bytes,15,opt,name=bytes_value,json=bytesValue,proto3,oneof"`
}

type MessageWithOneofScalars_DoubleValue

type MessageWithOneofScalars_DoubleValue struct {
	DoubleValue float64 `protobuf:"fixed64,1,opt,name=double_value,json=doubleValue,proto3,oneof"`
}

type MessageWithOneofScalars_Fixed32Value

type MessageWithOneofScalars_Fixed32Value struct {
	Fixed32Value uint32 `protobuf:"fixed32,9,opt,name=fixed32_value,json=fixed32Value,proto3,oneof"`
}

type MessageWithOneofScalars_Fixed64Value

type MessageWithOneofScalars_Fixed64Value struct {
	Fixed64Value uint64 `protobuf:"fixed64,10,opt,name=fixed64_value,json=fixed64Value,proto3,oneof"`
}

type MessageWithOneofScalars_FloatValue

type MessageWithOneofScalars_FloatValue struct {
	FloatValue float32 `protobuf:"fixed32,2,opt,name=float_value,json=floatValue,proto3,oneof"`
}

type MessageWithOneofScalars_HexBytesValue added in v1.2.0

type MessageWithOneofScalars_HexBytesValue struct {
	HexBytesValue []byte `protobuf:"bytes,16,opt,name=hex_bytes_value,json=hexBytesValue,proto3,oneof"`
}

type MessageWithOneofScalars_Int32Value

type MessageWithOneofScalars_Int32Value struct {
	Int32Value int32 `protobuf:"varint,3,opt,name=int32_value,json=int32Value,proto3,oneof"`
}

type MessageWithOneofScalars_Int64Value

type MessageWithOneofScalars_Int64Value struct {
	Int64Value int64 `protobuf:"varint,4,opt,name=int64_value,json=int64Value,proto3,oneof"`
}

type MessageWithOneofScalars_Sfixed32Value

type MessageWithOneofScalars_Sfixed32Value struct {
	Sfixed32Value int32 `protobuf:"fixed32,11,opt,name=sfixed32_value,json=sfixed32Value,proto3,oneof"`
}

type MessageWithOneofScalars_Sfixed64Value

type MessageWithOneofScalars_Sfixed64Value struct {
	Sfixed64Value int64 `protobuf:"fixed64,12,opt,name=sfixed64_value,json=sfixed64Value,proto3,oneof"`
}

type MessageWithOneofScalars_Sint32Value

type MessageWithOneofScalars_Sint32Value struct {
	Sint32Value int32 `protobuf:"zigzag32,7,opt,name=sint32_value,json=sint32Value,proto3,oneof"`
}

type MessageWithOneofScalars_Sint64Value

type MessageWithOneofScalars_Sint64Value struct {
	Sint64Value int64 `protobuf:"zigzag64,8,opt,name=sint64_value,json=sint64Value,proto3,oneof"`
}

type MessageWithOneofScalars_StringValue

type MessageWithOneofScalars_StringValue struct {
	StringValue string `protobuf:"bytes,14,opt,name=string_value,json=stringValue,proto3,oneof"`
}

type MessageWithOneofScalars_Uint32Value

type MessageWithOneofScalars_Uint32Value struct {
	Uint32Value uint32 `protobuf:"varint,5,opt,name=uint32_value,json=uint32Value,proto3,oneof"`
}

type MessageWithOneofScalars_Uint64Value

type MessageWithOneofScalars_Uint64Value struct {
	Uint64Value uint64 `protobuf:"varint,6,opt,name=uint64_value,json=uint64Value,proto3,oneof"`
}

type MessageWithOneofWKTs

type MessageWithOneofWKTs struct {

	// Types that are assignable to Value:
	//
	//	*MessageWithOneofWKTs_DoubleValue
	//	*MessageWithOneofWKTs_FloatValue
	//	*MessageWithOneofWKTs_Int32Value
	//	*MessageWithOneofWKTs_Int64Value
	//	*MessageWithOneofWKTs_Uint32Value
	//	*MessageWithOneofWKTs_Uint64Value
	//	*MessageWithOneofWKTs_BoolValue
	//	*MessageWithOneofWKTs_StringValue
	//	*MessageWithOneofWKTs_BytesValue
	//	*MessageWithOneofWKTs_EmptyValue
	//	*MessageWithOneofWKTs_TimestampValue
	//	*MessageWithOneofWKTs_DurationValue
	//	*MessageWithOneofWKTs_FieldMaskValue
	//	*MessageWithOneofWKTs_ValueValue
	//	*MessageWithOneofWKTs_ListValueValue
	//	*MessageWithOneofWKTs_StructValue
	//	*MessageWithOneofWKTs_AnyValue
	Value isMessageWithOneofWKTs_Value `protobuf_oneof:"value"`
	// contains filtered or unexported fields
}

func (*MessageWithOneofWKTs) Descriptor deprecated

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

Deprecated: Use MessageWithOneofWKTs.ProtoReflect.Descriptor instead.

func (*MessageWithOneofWKTs) GetAnyValue

func (x *MessageWithOneofWKTs) GetAnyValue() *anypb.Any

func (*MessageWithOneofWKTs) GetBoolValue

func (x *MessageWithOneofWKTs) GetBoolValue() *wrapperspb.BoolValue

func (*MessageWithOneofWKTs) GetBytesValue

func (x *MessageWithOneofWKTs) GetBytesValue() *wrapperspb.BytesValue

func (*MessageWithOneofWKTs) GetDoubleValue

func (x *MessageWithOneofWKTs) GetDoubleValue() *wrapperspb.DoubleValue

func (*MessageWithOneofWKTs) GetDurationValue

func (x *MessageWithOneofWKTs) GetDurationValue() *durationpb.Duration

func (*MessageWithOneofWKTs) GetEmptyValue

func (x *MessageWithOneofWKTs) GetEmptyValue() *emptypb.Empty

func (*MessageWithOneofWKTs) GetFieldMaskValue

func (x *MessageWithOneofWKTs) GetFieldMaskValue() *fieldmaskpb.FieldMask

func (*MessageWithOneofWKTs) GetFloatValue

func (x *MessageWithOneofWKTs) GetFloatValue() *wrapperspb.FloatValue

func (*MessageWithOneofWKTs) GetInt32Value

func (x *MessageWithOneofWKTs) GetInt32Value() *wrapperspb.Int32Value

func (*MessageWithOneofWKTs) GetInt64Value

func (x *MessageWithOneofWKTs) GetInt64Value() *wrapperspb.Int64Value

func (*MessageWithOneofWKTs) GetListValueValue

func (x *MessageWithOneofWKTs) GetListValueValue() *structpb.ListValue

func (*MessageWithOneofWKTs) GetStringValue

func (x *MessageWithOneofWKTs) GetStringValue() *wrapperspb.StringValue

func (*MessageWithOneofWKTs) GetStructValue

func (x *MessageWithOneofWKTs) GetStructValue() *structpb.Struct

func (*MessageWithOneofWKTs) GetTimestampValue

func (x *MessageWithOneofWKTs) GetTimestampValue() *timestamppb.Timestamp

func (*MessageWithOneofWKTs) GetUint32Value

func (x *MessageWithOneofWKTs) GetUint32Value() *wrapperspb.UInt32Value

func (*MessageWithOneofWKTs) GetUint64Value

func (x *MessageWithOneofWKTs) GetUint64Value() *wrapperspb.UInt64Value

func (*MessageWithOneofWKTs) GetValue

func (m *MessageWithOneofWKTs) GetValue() isMessageWithOneofWKTs_Value

func (*MessageWithOneofWKTs) GetValueValue

func (x *MessageWithOneofWKTs) GetValueValue() *structpb.Value

func (*MessageWithOneofWKTs) MarshalJSON added in v1.3.0

func (x *MessageWithOneofWKTs) MarshalJSON() ([]byte, error)

MarshalJSON marshals the MessageWithOneofWKTs to JSON.

func (*MessageWithOneofWKTs) MarshalProtoJSON

func (x *MessageWithOneofWKTs) MarshalProtoJSON(s *jsonplugin.MarshalState)

MarshalProtoJSON marshals the MessageWithOneofWKTs message to JSON.

func (*MessageWithOneofWKTs) ProtoMessage

func (*MessageWithOneofWKTs) ProtoMessage()

func (*MessageWithOneofWKTs) ProtoReflect

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

func (*MessageWithOneofWKTs) Reset

func (x *MessageWithOneofWKTs) Reset()

func (*MessageWithOneofWKTs) String

func (x *MessageWithOneofWKTs) String() string

func (*MessageWithOneofWKTs) UnmarshalJSON added in v1.3.0

func (x *MessageWithOneofWKTs) UnmarshalJSON(b []byte) error

UnmarshalJSON unmarshals the MessageWithOneofWKTs from JSON.

func (*MessageWithOneofWKTs) UnmarshalProtoJSON

func (x *MessageWithOneofWKTs) UnmarshalProtoJSON(s *jsonplugin.UnmarshalState)

UnmarshalProtoJSON unmarshals the MessageWithOneofWKTs message from JSON.

type MessageWithOneofWKTs_AnyValue

type MessageWithOneofWKTs_AnyValue struct {
	AnyValue *anypb.Any `protobuf:"bytes,17,opt,name=any_value,json=anyValue,proto3,oneof"`
}

type MessageWithOneofWKTs_BoolValue

type MessageWithOneofWKTs_BoolValue struct {
	BoolValue *wrapperspb.BoolValue `protobuf:"bytes,7,opt,name=bool_value,json=boolValue,proto3,oneof"`
}

type MessageWithOneofWKTs_BytesValue

type MessageWithOneofWKTs_BytesValue struct {
	BytesValue *wrapperspb.BytesValue `protobuf:"bytes,9,opt,name=bytes_value,json=bytesValue,proto3,oneof"`
}

type MessageWithOneofWKTs_DoubleValue

type MessageWithOneofWKTs_DoubleValue struct {
	DoubleValue *wrapperspb.DoubleValue `protobuf:"bytes,1,opt,name=double_value,json=doubleValue,proto3,oneof"`
}

type MessageWithOneofWKTs_DurationValue

type MessageWithOneofWKTs_DurationValue struct {
	DurationValue *durationpb.Duration `protobuf:"bytes,12,opt,name=duration_value,json=durationValue,proto3,oneof"`
}

type MessageWithOneofWKTs_EmptyValue

type MessageWithOneofWKTs_EmptyValue struct {
	EmptyValue *emptypb.Empty `protobuf:"bytes,10,opt,name=empty_value,json=emptyValue,proto3,oneof"`
}

type MessageWithOneofWKTs_FieldMaskValue

type MessageWithOneofWKTs_FieldMaskValue struct {
	FieldMaskValue *fieldmaskpb.FieldMask `protobuf:"bytes,13,opt,name=field_mask_value,json=fieldMaskValue,proto3,oneof"`
}

type MessageWithOneofWKTs_FloatValue

type MessageWithOneofWKTs_FloatValue struct {
	FloatValue *wrapperspb.FloatValue `protobuf:"bytes,2,opt,name=float_value,json=floatValue,proto3,oneof"`
}

type MessageWithOneofWKTs_Int32Value

type MessageWithOneofWKTs_Int32Value struct {
	Int32Value *wrapperspb.Int32Value `protobuf:"bytes,3,opt,name=int32_value,json=int32Value,proto3,oneof"`
}

type MessageWithOneofWKTs_Int64Value

type MessageWithOneofWKTs_Int64Value struct {
	Int64Value *wrapperspb.Int64Value `protobuf:"bytes,4,opt,name=int64_value,json=int64Value,proto3,oneof"`
}

type MessageWithOneofWKTs_ListValueValue

type MessageWithOneofWKTs_ListValueValue struct {
	ListValueValue *structpb.ListValue `protobuf:"bytes,15,opt,name=list_value_value,json=listValueValue,proto3,oneof"`
}

type MessageWithOneofWKTs_StringValue

type MessageWithOneofWKTs_StringValue struct {
	StringValue *wrapperspb.StringValue `protobuf:"bytes,8,opt,name=string_value,json=stringValue,proto3,oneof"`
}

type MessageWithOneofWKTs_StructValue

type MessageWithOneofWKTs_StructValue struct {
	StructValue *structpb.Struct `protobuf:"bytes,16,opt,name=struct_value,json=structValue,proto3,oneof"`
}

type MessageWithOneofWKTs_TimestampValue

type MessageWithOneofWKTs_TimestampValue struct {
	TimestampValue *timestamppb.Timestamp `protobuf:"bytes,11,opt,name=timestamp_value,json=timestampValue,proto3,oneof"`
}

type MessageWithOneofWKTs_Uint32Value

type MessageWithOneofWKTs_Uint32Value struct {
	Uint32Value *wrapperspb.UInt32Value `protobuf:"bytes,5,opt,name=uint32_value,json=uint32Value,proto3,oneof"`
}

type MessageWithOneofWKTs_Uint64Value

type MessageWithOneofWKTs_Uint64Value struct {
	Uint64Value *wrapperspb.UInt64Value `protobuf:"bytes,6,opt,name=uint64_value,json=uint64Value,proto3,oneof"`
}

type MessageWithOneofWKTs_ValueValue

type MessageWithOneofWKTs_ValueValue struct {
	ValueValue *structpb.Value `protobuf:"bytes,14,opt,name=value_value,json=valueValue,proto3,oneof"`
}

type MessageWithScalarMaps

type MessageWithScalarMaps struct {
	StringDoubleMap map[string]float64 `` // map<double,string> is impossible.
	/* 198-byte string literal not displayed */
	StringFloatMap map[string]float32 `` // map<float,string> is impossible.
	/* 195-byte string literal not displayed */
	StringInt32Map    map[string]int32  `` /* 194-byte string literal not displayed */
	Int32StringMap    map[int32]string  `` /* 194-byte string literal not displayed */
	StringInt64Map    map[string]int64  `` /* 194-byte string literal not displayed */
	Int64StringMap    map[int64]string  `` /* 194-byte string literal not displayed */
	StringUint32Map   map[string]uint32 `` /* 197-byte string literal not displayed */
	Uint32StringMap   map[uint32]string `` /* 198-byte string literal not displayed */
	StringUint64Map   map[string]uint64 `` /* 198-byte string literal not displayed */
	Uint64StringMap   map[uint64]string `` /* 198-byte string literal not displayed */
	StringSint32Map   map[string]int32  `` /* 200-byte string literal not displayed */
	Sint32StringMap   map[int32]string  `` /* 200-byte string literal not displayed */
	StringSint64Map   map[string]int64  `` /* 200-byte string literal not displayed */
	Sint64StringMap   map[int64]string  `` /* 200-byte string literal not displayed */
	StringFixed32Map  map[string]uint32 `` /* 202-byte string literal not displayed */
	Fixed32StringMap  map[uint32]string `` /* 202-byte string literal not displayed */
	StringFixed64Map  map[string]uint64 `` /* 202-byte string literal not displayed */
	Fixed64StringMap  map[uint64]string `` /* 202-byte string literal not displayed */
	StringSfixed32Map map[string]int32  `` /* 205-byte string literal not displayed */
	Sfixed32StringMap map[int32]string  `` /* 205-byte string literal not displayed */
	StringSfixed64Map map[string]int64  `` /* 205-byte string literal not displayed */
	Sfixed64StringMap map[int64]string  `` /* 205-byte string literal not displayed */
	StringBoolMap     map[string]bool   `` /* 192-byte string literal not displayed */
	BoolStringMap     map[bool]string   `` /* 192-byte string literal not displayed */
	StringStringMap   map[string]string `` // map<string,string> is above.
	/* 197-byte string literal not displayed */
	StringBytesMap map[string][]byte `` // map<bytes,string> is impossible.
	/* 194-byte string literal not displayed */
	StringHexBytesMap map[string][]byte `` /* 205-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*MessageWithScalarMaps) Descriptor deprecated

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

Deprecated: Use MessageWithScalarMaps.ProtoReflect.Descriptor instead.

func (*MessageWithScalarMaps) GetBoolStringMap

func (x *MessageWithScalarMaps) GetBoolStringMap() map[bool]string

func (*MessageWithScalarMaps) GetFixed32StringMap

func (x *MessageWithScalarMaps) GetFixed32StringMap() map[uint32]string

func (*MessageWithScalarMaps) GetFixed64StringMap

func (x *MessageWithScalarMaps) GetFixed64StringMap() map[uint64]string

func (*MessageWithScalarMaps) GetInt32StringMap

func (x *MessageWithScalarMaps) GetInt32StringMap() map[int32]string

func (*MessageWithScalarMaps) GetInt64StringMap

func (x *MessageWithScalarMaps) GetInt64StringMap() map[int64]string

func (*MessageWithScalarMaps) GetSfixed32StringMap

func (x *MessageWithScalarMaps) GetSfixed32StringMap() map[int32]string

func (*MessageWithScalarMaps) GetSfixed64StringMap

func (x *MessageWithScalarMaps) GetSfixed64StringMap() map[int64]string

func (*MessageWithScalarMaps) GetSint32StringMap

func (x *MessageWithScalarMaps) GetSint32StringMap() map[int32]string

func (*MessageWithScalarMaps) GetSint64StringMap

func (x *MessageWithScalarMaps) GetSint64StringMap() map[int64]string

func (*MessageWithScalarMaps) GetStringBoolMap

func (x *MessageWithScalarMaps) GetStringBoolMap() map[string]bool

func (*MessageWithScalarMaps) GetStringBytesMap

func (x *MessageWithScalarMaps) GetStringBytesMap() map[string][]byte

func (*MessageWithScalarMaps) GetStringDoubleMap

func (x *MessageWithScalarMaps) GetStringDoubleMap() map[string]float64

func (*MessageWithScalarMaps) GetStringFixed32Map

func (x *MessageWithScalarMaps) GetStringFixed32Map() map[string]uint32

func (*MessageWithScalarMaps) GetStringFixed64Map

func (x *MessageWithScalarMaps) GetStringFixed64Map() map[string]uint64

func (*MessageWithScalarMaps) GetStringFloatMap

func (x *MessageWithScalarMaps) GetStringFloatMap() map[string]float32

func (*MessageWithScalarMaps) GetStringHexBytesMap added in v1.2.0

func (x *MessageWithScalarMaps) GetStringHexBytesMap() map[string][]byte

func (*MessageWithScalarMaps) GetStringInt32Map

func (x *MessageWithScalarMaps) GetStringInt32Map() map[string]int32

func (*MessageWithScalarMaps) GetStringInt64Map

func (x *MessageWithScalarMaps) GetStringInt64Map() map[string]int64

func (*MessageWithScalarMaps) GetStringSfixed32Map

func (x *MessageWithScalarMaps) GetStringSfixed32Map() map[string]int32

func (*MessageWithScalarMaps) GetStringSfixed64Map

func (x *MessageWithScalarMaps) GetStringSfixed64Map() map[string]int64

func (*MessageWithScalarMaps) GetStringSint32Map

func (x *MessageWithScalarMaps) GetStringSint32Map() map[string]int32

func (*MessageWithScalarMaps) GetStringSint64Map

func (x *MessageWithScalarMaps) GetStringSint64Map() map[string]int64

func (*MessageWithScalarMaps) GetStringStringMap

func (x *MessageWithScalarMaps) GetStringStringMap() map[string]string

func (*MessageWithScalarMaps) GetStringUint32Map

func (x *MessageWithScalarMaps) GetStringUint32Map() map[string]uint32

func (*MessageWithScalarMaps) GetStringUint64Map

func (x *MessageWithScalarMaps) GetStringUint64Map() map[string]uint64

func (*MessageWithScalarMaps) GetUint32StringMap

func (x *MessageWithScalarMaps) GetUint32StringMap() map[uint32]string

func (*MessageWithScalarMaps) GetUint64StringMap

func (x *MessageWithScalarMaps) GetUint64StringMap() map[uint64]string

func (*MessageWithScalarMaps) MarshalJSON added in v1.3.0

func (x *MessageWithScalarMaps) MarshalJSON() ([]byte, error)

MarshalJSON marshals the MessageWithScalarMaps to JSON.

func (*MessageWithScalarMaps) MarshalProtoJSON

func (x *MessageWithScalarMaps) MarshalProtoJSON(s *jsonplugin.MarshalState)

MarshalProtoJSON marshals the MessageWithScalarMaps message to JSON.

func (*MessageWithScalarMaps) ProtoMessage

func (*MessageWithScalarMaps) ProtoMessage()

func (*MessageWithScalarMaps) ProtoReflect

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

func (*MessageWithScalarMaps) Reset

func (x *MessageWithScalarMaps) Reset()

func (*MessageWithScalarMaps) String

func (x *MessageWithScalarMaps) String() string

func (*MessageWithScalarMaps) UnmarshalJSON added in v1.3.0

func (x *MessageWithScalarMaps) UnmarshalJSON(b []byte) error

UnmarshalJSON unmarshals the MessageWithScalarMaps from JSON.

func (*MessageWithScalarMaps) UnmarshalProtoJSON

func (x *MessageWithScalarMaps) UnmarshalProtoJSON(s *jsonplugin.UnmarshalState)

UnmarshalProtoJSON unmarshals the MessageWithScalarMaps message from JSON.

type MessageWithScalars

type MessageWithScalars struct {
	DoubleValue    float64   `protobuf:"fixed64,1,opt,name=double_value,json=doubleValue,proto3" json:"double_value,omitempty"`
	DoubleValues   []float64 `protobuf:"fixed64,2,rep,packed,name=double_values,json=doubleValues,proto3" json:"double_values,omitempty"`
	FloatValue     float32   `protobuf:"fixed32,3,opt,name=float_value,json=floatValue,proto3" json:"float_value,omitempty"`
	FloatValues    []float32 `protobuf:"fixed32,4,rep,packed,name=float_values,json=floatValues,proto3" json:"float_values,omitempty"`
	Int32Value     int32     `protobuf:"varint,5,opt,name=int32_value,json=int32Value,proto3" json:"int32_value,omitempty"`
	Int32Values    []int32   `protobuf:"varint,6,rep,packed,name=int32_values,json=int32Values,proto3" json:"int32_values,omitempty"`
	Int64Value     int64     `protobuf:"varint,7,opt,name=int64_value,json=int64Value,proto3" json:"int64_value,omitempty"`
	Int64Values    []int64   `protobuf:"varint,8,rep,packed,name=int64_values,json=int64Values,proto3" json:"int64_values,omitempty"`
	Uint32Value    uint32    `protobuf:"varint,9,opt,name=uint32_value,json=uint32Value,proto3" json:"uint32_value,omitempty"`
	Uint32Values   []uint32  `protobuf:"varint,10,rep,packed,name=uint32_values,json=uint32Values,proto3" json:"uint32_values,omitempty"`
	Uint64Value    uint64    `protobuf:"varint,11,opt,name=uint64_value,json=uint64Value,proto3" json:"uint64_value,omitempty"`
	Uint64Values   []uint64  `protobuf:"varint,12,rep,packed,name=uint64_values,json=uint64Values,proto3" json:"uint64_values,omitempty"`
	Sint32Value    int32     `protobuf:"zigzag32,13,opt,name=sint32_value,json=sint32Value,proto3" json:"sint32_value,omitempty"`
	Sint32Values   []int32   `protobuf:"zigzag32,14,rep,packed,name=sint32_values,json=sint32Values,proto3" json:"sint32_values,omitempty"`
	Sint64Value    int64     `protobuf:"zigzag64,15,opt,name=sint64_value,json=sint64Value,proto3" json:"sint64_value,omitempty"`
	Sint64Values   []int64   `protobuf:"zigzag64,16,rep,packed,name=sint64_values,json=sint64Values,proto3" json:"sint64_values,omitempty"`
	Fixed32Value   uint32    `protobuf:"fixed32,17,opt,name=fixed32_value,json=fixed32Value,proto3" json:"fixed32_value,omitempty"`
	Fixed32Values  []uint32  `protobuf:"fixed32,18,rep,packed,name=fixed32_values,json=fixed32Values,proto3" json:"fixed32_values,omitempty"`
	Fixed64Value   uint64    `protobuf:"fixed64,19,opt,name=fixed64_value,json=fixed64Value,proto3" json:"fixed64_value,omitempty"`
	Fixed64Values  []uint64  `protobuf:"fixed64,20,rep,packed,name=fixed64_values,json=fixed64Values,proto3" json:"fixed64_values,omitempty"`
	Sfixed32Value  int32     `protobuf:"fixed32,21,opt,name=sfixed32_value,json=sfixed32Value,proto3" json:"sfixed32_value,omitempty"`
	Sfixed32Values []int32   `protobuf:"fixed32,22,rep,packed,name=sfixed32_values,json=sfixed32Values,proto3" json:"sfixed32_values,omitempty"`
	Sfixed64Value  int64     `protobuf:"fixed64,23,opt,name=sfixed64_value,json=sfixed64Value,proto3" json:"sfixed64_value,omitempty"`
	Sfixed64Values []int64   `protobuf:"fixed64,24,rep,packed,name=sfixed64_values,json=sfixed64Values,proto3" json:"sfixed64_values,omitempty"`
	BoolValue      bool      `protobuf:"varint,25,opt,name=bool_value,json=boolValue,proto3" json:"bool_value,omitempty"`
	BoolValues     []bool    `protobuf:"varint,26,rep,packed,name=bool_values,json=boolValues,proto3" json:"bool_values,omitempty"`
	StringValue    string    `protobuf:"bytes,27,opt,name=string_value,json=stringValue,proto3" json:"string_value,omitempty"`
	StringValues   []string  `protobuf:"bytes,28,rep,name=string_values,json=stringValues,proto3" json:"string_values,omitempty"`
	BytesValue     []byte    `protobuf:"bytes,29,opt,name=bytes_value,json=bytesValue,proto3" json:"bytes_value,omitempty"`
	BytesValues    [][]byte  `protobuf:"bytes,30,rep,name=bytes_values,json=bytesValues,proto3" json:"bytes_values,omitempty"`
	HexBytesValue  []byte    `protobuf:"bytes,31,opt,name=hex_bytes_value,json=hexBytesValue,proto3" json:"hex_bytes_value,omitempty"`
	HexBytesValues [][]byte  `protobuf:"bytes,32,rep,name=hex_bytes_values,json=hexBytesValues,proto3" json:"hex_bytes_values,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageWithScalars) Descriptor deprecated

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

Deprecated: Use MessageWithScalars.ProtoReflect.Descriptor instead.

func (*MessageWithScalars) GetBoolValue

func (x *MessageWithScalars) GetBoolValue() bool

func (*MessageWithScalars) GetBoolValues

func (x *MessageWithScalars) GetBoolValues() []bool

func (*MessageWithScalars) GetBytesValue

func (x *MessageWithScalars) GetBytesValue() []byte

func (*MessageWithScalars) GetBytesValues

func (x *MessageWithScalars) GetBytesValues() [][]byte

func (*MessageWithScalars) GetDoubleValue

func (x *MessageWithScalars) GetDoubleValue() float64

func (*MessageWithScalars) GetDoubleValues

func (x *MessageWithScalars) GetDoubleValues() []float64

func (*MessageWithScalars) GetFixed32Value

func (x *MessageWithScalars) GetFixed32Value() uint32

func (*MessageWithScalars) GetFixed32Values

func (x *MessageWithScalars) GetFixed32Values() []uint32

func (*MessageWithScalars) GetFixed64Value

func (x *MessageWithScalars) GetFixed64Value() uint64

func (*MessageWithScalars) GetFixed64Values

func (x *MessageWithScalars) GetFixed64Values() []uint64

func (*MessageWithScalars) GetFloatValue

func (x *MessageWithScalars) GetFloatValue() float32

func (*MessageWithScalars) GetFloatValues

func (x *MessageWithScalars) GetFloatValues() []float32

func (*MessageWithScalars) GetHexBytesValue added in v1.2.0

func (x *MessageWithScalars) GetHexBytesValue() []byte

func (*MessageWithScalars) GetHexBytesValues added in v1.2.0

func (x *MessageWithScalars) GetHexBytesValues() [][]byte

func (*MessageWithScalars) GetInt32Value

func (x *MessageWithScalars) GetInt32Value() int32

func (*MessageWithScalars) GetInt32Values

func (x *MessageWithScalars) GetInt32Values() []int32

func (*MessageWithScalars) GetInt64Value

func (x *MessageWithScalars) GetInt64Value() int64

func (*MessageWithScalars) GetInt64Values

func (x *MessageWithScalars) GetInt64Values() []int64

func (*MessageWithScalars) GetSfixed32Value

func (x *MessageWithScalars) GetSfixed32Value() int32

func (*MessageWithScalars) GetSfixed32Values

func (x *MessageWithScalars) GetSfixed32Values() []int32

func (*MessageWithScalars) GetSfixed64Value

func (x *MessageWithScalars) GetSfixed64Value() int64

func (*MessageWithScalars) GetSfixed64Values

func (x *MessageWithScalars) GetSfixed64Values() []int64

func (*MessageWithScalars) GetSint32Value

func (x *MessageWithScalars) GetSint32Value() int32

func (*MessageWithScalars) GetSint32Values

func (x *MessageWithScalars) GetSint32Values() []int32

func (*MessageWithScalars) GetSint64Value

func (x *MessageWithScalars) GetSint64Value() int64

func (*MessageWithScalars) GetSint64Values

func (x *MessageWithScalars) GetSint64Values() []int64

func (*MessageWithScalars) GetStringValue

func (x *MessageWithScalars) GetStringValue() string

func (*MessageWithScalars) GetStringValues

func (x *MessageWithScalars) GetStringValues() []string

func (*MessageWithScalars) GetUint32Value

func (x *MessageWithScalars) GetUint32Value() uint32

func (*MessageWithScalars) GetUint32Values

func (x *MessageWithScalars) GetUint32Values() []uint32

func (*MessageWithScalars) GetUint64Value

func (x *MessageWithScalars) GetUint64Value() uint64

func (*MessageWithScalars) GetUint64Values

func (x *MessageWithScalars) GetUint64Values() []uint64

func (*MessageWithScalars) MarshalJSON added in v1.3.0

func (x *MessageWithScalars) MarshalJSON() ([]byte, error)

MarshalJSON marshals the MessageWithScalars to JSON.

func (*MessageWithScalars) MarshalProtoJSON

func (x *MessageWithScalars) MarshalProtoJSON(s *jsonplugin.MarshalState)

MarshalProtoJSON marshals the MessageWithScalars message to JSON.

func (*MessageWithScalars) ProtoMessage

func (*MessageWithScalars) ProtoMessage()

func (*MessageWithScalars) ProtoReflect

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

func (*MessageWithScalars) Reset

func (x *MessageWithScalars) Reset()

func (*MessageWithScalars) String

func (x *MessageWithScalars) String() string

func (*MessageWithScalars) UnmarshalJSON added in v1.3.0

func (x *MessageWithScalars) UnmarshalJSON(b []byte) error

UnmarshalJSON unmarshals the MessageWithScalars from JSON.

func (*MessageWithScalars) UnmarshalProtoJSON

func (x *MessageWithScalars) UnmarshalProtoJSON(s *jsonplugin.UnmarshalState)

UnmarshalProtoJSON unmarshals the MessageWithScalars message from JSON.

type MessageWithSubmessageWithFieldmask added in v1.4.1

type MessageWithSubmessageWithFieldmask struct {
	Submessage *MessageWithFieldMask `protobuf:"bytes,1,opt,name=submessage,proto3" json:"submessage,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageWithSubmessageWithFieldmask) Descriptor deprecated added in v1.4.1

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

Deprecated: Use MessageWithSubmessageWithFieldmask.ProtoReflect.Descriptor instead.

func (*MessageWithSubmessageWithFieldmask) GetSubmessage added in v1.4.1

func (*MessageWithSubmessageWithFieldmask) MarshalJSON added in v1.4.1

func (x *MessageWithSubmessageWithFieldmask) MarshalJSON() ([]byte, error)

MarshalJSON marshals the MessageWithSubmessageWithFieldmask to JSON.

func (*MessageWithSubmessageWithFieldmask) MarshalProtoJSON added in v1.4.1

MarshalProtoJSON marshals the MessageWithSubmessageWithFieldmask message to JSON.

func (*MessageWithSubmessageWithFieldmask) ProtoMessage added in v1.4.1

func (*MessageWithSubmessageWithFieldmask) ProtoMessage()

func (*MessageWithSubmessageWithFieldmask) ProtoReflect added in v1.4.1

func (*MessageWithSubmessageWithFieldmask) Reset added in v1.4.1

func (*MessageWithSubmessageWithFieldmask) String added in v1.4.1

func (*MessageWithSubmessageWithFieldmask) UnmarshalJSON added in v1.4.1

func (x *MessageWithSubmessageWithFieldmask) UnmarshalJSON(b []byte) error

UnmarshalJSON unmarshals the MessageWithSubmessageWithFieldmask from JSON.

func (*MessageWithSubmessageWithFieldmask) UnmarshalProtoJSON added in v1.4.1

UnmarshalProtoJSON unmarshals the MessageWithSubmessageWithFieldmask message from JSON.

type MessageWithSubmessageWithFieldmaskAndMarshaler added in v1.4.1

type MessageWithSubmessageWithFieldmaskAndMarshaler struct {
	Submessage *MessageWithFieldMask `protobuf:"bytes,1,opt,name=submessage,proto3" json:"submessage,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageWithSubmessageWithFieldmaskAndMarshaler) Descriptor deprecated added in v1.4.1

Deprecated: Use MessageWithSubmessageWithFieldmaskAndMarshaler.ProtoReflect.Descriptor instead.

func (*MessageWithSubmessageWithFieldmaskAndMarshaler) GetSubmessage added in v1.4.1

func (*MessageWithSubmessageWithFieldmaskAndMarshaler) MarshalJSON added in v1.4.1

MarshalJSON marshals the MessageWithSubmessageWithFieldmaskAndMarshaler to JSON.

func (*MessageWithSubmessageWithFieldmaskAndMarshaler) MarshalProtoJSON added in v1.4.1

MarshalProtoJSON marshals the MessageWithSubmessageWithFieldmaskAndMarshaler message to JSON.

func (*MessageWithSubmessageWithFieldmaskAndMarshaler) ProtoMessage added in v1.4.1

func (*MessageWithSubmessageWithFieldmaskAndMarshaler) ProtoReflect added in v1.4.1

func (*MessageWithSubmessageWithFieldmaskAndMarshaler) Reset added in v1.4.1

func (*MessageWithSubmessageWithFieldmaskAndMarshaler) String added in v1.4.1

func (*MessageWithSubmessageWithFieldmaskAndMarshaler) UnmarshalJSON added in v1.4.1

UnmarshalJSON unmarshals the MessageWithSubmessageWithFieldmaskAndMarshaler from JSON.

func (*MessageWithSubmessageWithFieldmaskAndMarshaler) UnmarshalProtoJSON added in v1.4.1

UnmarshalProtoJSON unmarshals the MessageWithSubmessageWithFieldmaskAndMarshaler message from JSON.

type MessageWithSubmessageWithoutFieldmask added in v1.4.1

type MessageWithSubmessageWithoutFieldmask struct {
	Submessage *MessageWithoutFieldMask `protobuf:"bytes,1,opt,name=submessage,proto3" json:"submessage,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageWithSubmessageWithoutFieldmask) Descriptor deprecated added in v1.4.1

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

Deprecated: Use MessageWithSubmessageWithoutFieldmask.ProtoReflect.Descriptor instead.

func (*MessageWithSubmessageWithoutFieldmask) GetSubmessage added in v1.4.1

func (*MessageWithSubmessageWithoutFieldmask) ProtoMessage added in v1.4.1

func (*MessageWithSubmessageWithoutFieldmask) ProtoMessage()

func (*MessageWithSubmessageWithoutFieldmask) ProtoReflect added in v1.4.1

func (*MessageWithSubmessageWithoutFieldmask) Reset added in v1.4.1

func (*MessageWithSubmessageWithoutFieldmask) String added in v1.4.1

type MessageWithWKTMaps

type MessageWithWKTMaps struct {
	StringDoubleMap    map[string]*wrapperspb.DoubleValue `` /* 196-byte string literal not displayed */
	StringFloatMap     map[string]*wrapperspb.FloatValue  `` /* 193-byte string literal not displayed */
	StringInt32Map     map[string]*wrapperspb.Int32Value  `` /* 193-byte string literal not displayed */
	StringInt64Map     map[string]*wrapperspb.Int64Value  `` /* 193-byte string literal not displayed */
	StringUint32Map    map[string]*wrapperspb.UInt32Value `` /* 196-byte string literal not displayed */
	StringUint64Map    map[string]*wrapperspb.UInt64Value `` /* 196-byte string literal not displayed */
	StringBoolMap      map[string]*wrapperspb.BoolValue   `` /* 190-byte string literal not displayed */
	StringStringMap    map[string]*wrapperspb.StringValue `` /* 196-byte string literal not displayed */
	StringBytesMap     map[string]*wrapperspb.BytesValue  `` /* 193-byte string literal not displayed */
	StringEmptyMap     map[string]*emptypb.Empty          `` /* 194-byte string literal not displayed */
	StringTimestampMap map[string]*timestamppb.Timestamp  `` /* 206-byte string literal not displayed */
	StringDurationMap  map[string]*durationpb.Duration    `` /* 203-byte string literal not displayed */
	StringFieldMaskMap map[string]*fieldmaskpb.FieldMask  `` /* 208-byte string literal not displayed */
	StringValueMap     map[string]*structpb.Value         `` /* 194-byte string literal not displayed */
	StringListValueMap map[string]*structpb.ListValue     `` /* 208-byte string literal not displayed */
	StringStructMap    map[string]*structpb.Struct        `` /* 197-byte string literal not displayed */
	StringAnyMap       map[string]*anypb.Any              `` /* 188-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*MessageWithWKTMaps) Descriptor deprecated

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

Deprecated: Use MessageWithWKTMaps.ProtoReflect.Descriptor instead.

func (*MessageWithWKTMaps) GetStringAnyMap

func (x *MessageWithWKTMaps) GetStringAnyMap() map[string]*anypb.Any

func (*MessageWithWKTMaps) GetStringBoolMap

func (x *MessageWithWKTMaps) GetStringBoolMap() map[string]*wrapperspb.BoolValue

func (*MessageWithWKTMaps) GetStringBytesMap

func (x *MessageWithWKTMaps) GetStringBytesMap() map[string]*wrapperspb.BytesValue

func (*MessageWithWKTMaps) GetStringDoubleMap

func (x *MessageWithWKTMaps) GetStringDoubleMap() map[string]*wrapperspb.DoubleValue

func (*MessageWithWKTMaps) GetStringDurationMap

func (x *MessageWithWKTMaps) GetStringDurationMap() map[string]*durationpb.Duration

func (*MessageWithWKTMaps) GetStringEmptyMap

func (x *MessageWithWKTMaps) GetStringEmptyMap() map[string]*emptypb.Empty

func (*MessageWithWKTMaps) GetStringFieldMaskMap

func (x *MessageWithWKTMaps) GetStringFieldMaskMap() map[string]*fieldmaskpb.FieldMask

func (*MessageWithWKTMaps) GetStringFloatMap

func (x *MessageWithWKTMaps) GetStringFloatMap() map[string]*wrapperspb.FloatValue

func (*MessageWithWKTMaps) GetStringInt32Map

func (x *MessageWithWKTMaps) GetStringInt32Map() map[string]*wrapperspb.Int32Value

func (*MessageWithWKTMaps) GetStringInt64Map

func (x *MessageWithWKTMaps) GetStringInt64Map() map[string]*wrapperspb.Int64Value

func (*MessageWithWKTMaps) GetStringListValueMap

func (x *MessageWithWKTMaps) GetStringListValueMap() map[string]*structpb.ListValue

func (*MessageWithWKTMaps) GetStringStringMap

func (x *MessageWithWKTMaps) GetStringStringMap() map[string]*wrapperspb.StringValue

func (*MessageWithWKTMaps) GetStringStructMap

func (x *MessageWithWKTMaps) GetStringStructMap() map[string]*structpb.Struct

func (*MessageWithWKTMaps) GetStringTimestampMap

func (x *MessageWithWKTMaps) GetStringTimestampMap() map[string]*timestamppb.Timestamp

func (*MessageWithWKTMaps) GetStringUint32Map

func (x *MessageWithWKTMaps) GetStringUint32Map() map[string]*wrapperspb.UInt32Value

func (*MessageWithWKTMaps) GetStringUint64Map

func (x *MessageWithWKTMaps) GetStringUint64Map() map[string]*wrapperspb.UInt64Value

func (*MessageWithWKTMaps) GetStringValueMap

func (x *MessageWithWKTMaps) GetStringValueMap() map[string]*structpb.Value

func (*MessageWithWKTMaps) MarshalJSON added in v1.3.0

func (x *MessageWithWKTMaps) MarshalJSON() ([]byte, error)

MarshalJSON marshals the MessageWithWKTMaps to JSON.

func (*MessageWithWKTMaps) MarshalProtoJSON

func (x *MessageWithWKTMaps) MarshalProtoJSON(s *jsonplugin.MarshalState)

MarshalProtoJSON marshals the MessageWithWKTMaps message to JSON.

func (*MessageWithWKTMaps) ProtoMessage

func (*MessageWithWKTMaps) ProtoMessage()

func (*MessageWithWKTMaps) ProtoReflect

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

func (*MessageWithWKTMaps) Reset

func (x *MessageWithWKTMaps) Reset()

func (*MessageWithWKTMaps) String

func (x *MessageWithWKTMaps) String() string

func (*MessageWithWKTMaps) UnmarshalJSON added in v1.3.0

func (x *MessageWithWKTMaps) UnmarshalJSON(b []byte) error

UnmarshalJSON unmarshals the MessageWithWKTMaps from JSON.

func (*MessageWithWKTMaps) UnmarshalProtoJSON

func (x *MessageWithWKTMaps) UnmarshalProtoJSON(s *jsonplugin.UnmarshalState)

UnmarshalProtoJSON unmarshals the MessageWithWKTMaps message from JSON.

type MessageWithWKTs

type MessageWithWKTs struct {
	DoubleValue     *wrapperspb.DoubleValue   `protobuf:"bytes,1,opt,name=double_value,json=doubleValue,proto3" json:"double_value,omitempty"`
	DoubleValues    []*wrapperspb.DoubleValue `protobuf:"bytes,2,rep,name=double_values,json=doubleValues,proto3" json:"double_values,omitempty"`
	FloatValue      *wrapperspb.FloatValue    `protobuf:"bytes,3,opt,name=float_value,json=floatValue,proto3" json:"float_value,omitempty"`
	FloatValues     []*wrapperspb.FloatValue  `protobuf:"bytes,4,rep,name=float_values,json=floatValues,proto3" json:"float_values,omitempty"`
	Int32Value      *wrapperspb.Int32Value    `protobuf:"bytes,5,opt,name=int32_value,json=int32Value,proto3" json:"int32_value,omitempty"`
	Int32Values     []*wrapperspb.Int32Value  `protobuf:"bytes,6,rep,name=int32_values,json=int32Values,proto3" json:"int32_values,omitempty"`
	Int64Value      *wrapperspb.Int64Value    `protobuf:"bytes,7,opt,name=int64_value,json=int64Value,proto3" json:"int64_value,omitempty"`
	Int64Values     []*wrapperspb.Int64Value  `protobuf:"bytes,8,rep,name=int64_values,json=int64Values,proto3" json:"int64_values,omitempty"`
	Uint32Value     *wrapperspb.UInt32Value   `protobuf:"bytes,9,opt,name=uint32_value,json=uint32Value,proto3" json:"uint32_value,omitempty"`
	Uint32Values    []*wrapperspb.UInt32Value `protobuf:"bytes,10,rep,name=uint32_values,json=uint32Values,proto3" json:"uint32_values,omitempty"`
	Uint64Value     *wrapperspb.UInt64Value   `protobuf:"bytes,11,opt,name=uint64_value,json=uint64Value,proto3" json:"uint64_value,omitempty"`
	Uint64Values    []*wrapperspb.UInt64Value `protobuf:"bytes,12,rep,name=uint64_values,json=uint64Values,proto3" json:"uint64_values,omitempty"`
	BoolValue       *wrapperspb.BoolValue     `protobuf:"bytes,13,opt,name=bool_value,json=boolValue,proto3" json:"bool_value,omitempty"`
	BoolValues      []*wrapperspb.BoolValue   `protobuf:"bytes,14,rep,name=bool_values,json=boolValues,proto3" json:"bool_values,omitempty"`
	StringValue     *wrapperspb.StringValue   `protobuf:"bytes,15,opt,name=string_value,json=stringValue,proto3" json:"string_value,omitempty"`
	StringValues    []*wrapperspb.StringValue `protobuf:"bytes,16,rep,name=string_values,json=stringValues,proto3" json:"string_values,omitempty"`
	BytesValue      *wrapperspb.BytesValue    `protobuf:"bytes,17,opt,name=bytes_value,json=bytesValue,proto3" json:"bytes_value,omitempty"`
	BytesValues     []*wrapperspb.BytesValue  `protobuf:"bytes,18,rep,name=bytes_values,json=bytesValues,proto3" json:"bytes_values,omitempty"`
	EmptyValue      *emptypb.Empty            `protobuf:"bytes,19,opt,name=empty_value,json=emptyValue,proto3" json:"empty_value,omitempty"`
	EmptyValues     []*emptypb.Empty          `protobuf:"bytes,20,rep,name=empty_values,json=emptyValues,proto3" json:"empty_values,omitempty"`
	TimestampValue  *timestamppb.Timestamp    `protobuf:"bytes,21,opt,name=timestamp_value,json=timestampValue,proto3" json:"timestamp_value,omitempty"`
	TimestampValues []*timestamppb.Timestamp  `protobuf:"bytes,22,rep,name=timestamp_values,json=timestampValues,proto3" json:"timestamp_values,omitempty"`
	DurationValue   *durationpb.Duration      `protobuf:"bytes,23,opt,name=duration_value,json=durationValue,proto3" json:"duration_value,omitempty"`
	DurationValues  []*durationpb.Duration    `protobuf:"bytes,24,rep,name=duration_values,json=durationValues,proto3" json:"duration_values,omitempty"`
	FieldMaskValue  *fieldmaskpb.FieldMask    `protobuf:"bytes,25,opt,name=field_mask_value,json=fieldMaskValue,proto3" json:"field_mask_value,omitempty"`
	FieldMaskValues []*fieldmaskpb.FieldMask  `protobuf:"bytes,26,rep,name=field_mask_values,json=fieldMaskValues,proto3" json:"field_mask_values,omitempty"`
	ValueValue      *structpb.Value           `protobuf:"bytes,27,opt,name=value_value,json=valueValue,proto3" json:"value_value,omitempty"`
	ValueValues     []*structpb.Value         `protobuf:"bytes,28,rep,name=value_values,json=valueValues,proto3" json:"value_values,omitempty"`
	ListValueValue  *structpb.ListValue       `protobuf:"bytes,29,opt,name=list_value_value,json=listValueValue,proto3" json:"list_value_value,omitempty"`
	ListValueValues []*structpb.ListValue     `protobuf:"bytes,30,rep,name=list_value_values,json=listValueValues,proto3" json:"list_value_values,omitempty"`
	StructValue     *structpb.Struct          `protobuf:"bytes,31,opt,name=struct_value,json=structValue,proto3" json:"struct_value,omitempty"`
	StructValues    []*structpb.Struct        `protobuf:"bytes,32,rep,name=struct_values,json=structValues,proto3" json:"struct_values,omitempty"`
	AnyValue        *anypb.Any                `protobuf:"bytes,33,opt,name=any_value,json=anyValue,proto3" json:"any_value,omitempty"`
	AnyValues       []*anypb.Any              `protobuf:"bytes,34,rep,name=any_values,json=anyValues,proto3" json:"any_values,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageWithWKTs) Descriptor deprecated

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

Deprecated: Use MessageWithWKTs.ProtoReflect.Descriptor instead.

func (*MessageWithWKTs) GetAnyValue

func (x *MessageWithWKTs) GetAnyValue() *anypb.Any

func (*MessageWithWKTs) GetAnyValues

func (x *MessageWithWKTs) GetAnyValues() []*anypb.Any

func (*MessageWithWKTs) GetBoolValue

func (x *MessageWithWKTs) GetBoolValue() *wrapperspb.BoolValue

func (*MessageWithWKTs) GetBoolValues

func (x *MessageWithWKTs) GetBoolValues() []*wrapperspb.BoolValue

func (*MessageWithWKTs) GetBytesValue

func (x *MessageWithWKTs) GetBytesValue() *wrapperspb.BytesValue

func (*MessageWithWKTs) GetBytesValues

func (x *MessageWithWKTs) GetBytesValues() []*wrapperspb.BytesValue

func (*MessageWithWKTs) GetDoubleValue

func (x *MessageWithWKTs) GetDoubleValue() *wrapperspb.DoubleValue

func (*MessageWithWKTs) GetDoubleValues

func (x *MessageWithWKTs) GetDoubleValues() []*wrapperspb.DoubleValue

func (*MessageWithWKTs) GetDurationValue

func (x *MessageWithWKTs) GetDurationValue() *durationpb.Duration

func (*MessageWithWKTs) GetDurationValues

func (x *MessageWithWKTs) GetDurationValues() []*durationpb.Duration

func (*MessageWithWKTs) GetEmptyValue

func (x *MessageWithWKTs) GetEmptyValue() *emptypb.Empty

func (*MessageWithWKTs) GetEmptyValues

func (x *MessageWithWKTs) GetEmptyValues() []*emptypb.Empty

func (*MessageWithWKTs) GetFieldMaskValue

func (x *MessageWithWKTs) GetFieldMaskValue() *fieldmaskpb.FieldMask

func (*MessageWithWKTs) GetFieldMaskValues

func (x *MessageWithWKTs) GetFieldMaskValues() []*fieldmaskpb.FieldMask

func (*MessageWithWKTs) GetFloatValue

func (x *MessageWithWKTs) GetFloatValue() *wrapperspb.FloatValue

func (*MessageWithWKTs) GetFloatValues

func (x *MessageWithWKTs) GetFloatValues() []*wrapperspb.FloatValue

func (*MessageWithWKTs) GetInt32Value

func (x *MessageWithWKTs) GetInt32Value() *wrapperspb.Int32Value

func (*MessageWithWKTs) GetInt32Values

func (x *MessageWithWKTs) GetInt32Values() []*wrapperspb.Int32Value

func (*MessageWithWKTs) GetInt64Value

func (x *MessageWithWKTs) GetInt64Value() *wrapperspb.Int64Value

func (*MessageWithWKTs) GetInt64Values

func (x *MessageWithWKTs) GetInt64Values() []*wrapperspb.Int64Value

func (*MessageWithWKTs) GetListValueValue

func (x *MessageWithWKTs) GetListValueValue() *structpb.ListValue

func (*MessageWithWKTs) GetListValueValues

func (x *MessageWithWKTs) GetListValueValues() []*structpb.ListValue

func (*MessageWithWKTs) GetStringValue

func (x *MessageWithWKTs) GetStringValue() *wrapperspb.StringValue

func (*MessageWithWKTs) GetStringValues

func (x *MessageWithWKTs) GetStringValues() []*wrapperspb.StringValue

func (*MessageWithWKTs) GetStructValue

func (x *MessageWithWKTs) GetStructValue() *structpb.Struct

func (*MessageWithWKTs) GetStructValues

func (x *MessageWithWKTs) GetStructValues() []*structpb.Struct

func (*MessageWithWKTs) GetTimestampValue

func (x *MessageWithWKTs) GetTimestampValue() *timestamppb.Timestamp

func (*MessageWithWKTs) GetTimestampValues

func (x *MessageWithWKTs) GetTimestampValues() []*timestamppb.Timestamp

func (*MessageWithWKTs) GetUint32Value

func (x *MessageWithWKTs) GetUint32Value() *wrapperspb.UInt32Value

func (*MessageWithWKTs) GetUint32Values

func (x *MessageWithWKTs) GetUint32Values() []*wrapperspb.UInt32Value

func (*MessageWithWKTs) GetUint64Value

func (x *MessageWithWKTs) GetUint64Value() *wrapperspb.UInt64Value

func (*MessageWithWKTs) GetUint64Values

func (x *MessageWithWKTs) GetUint64Values() []*wrapperspb.UInt64Value

func (*MessageWithWKTs) GetValueValue

func (x *MessageWithWKTs) GetValueValue() *structpb.Value

func (*MessageWithWKTs) GetValueValues

func (x *MessageWithWKTs) GetValueValues() []*structpb.Value

func (*MessageWithWKTs) MarshalJSON added in v1.3.0

func (x *MessageWithWKTs) MarshalJSON() ([]byte, error)

MarshalJSON marshals the MessageWithWKTs to JSON.

func (*MessageWithWKTs) MarshalProtoJSON

func (x *MessageWithWKTs) MarshalProtoJSON(s *jsonplugin.MarshalState)

MarshalProtoJSON marshals the MessageWithWKTs message to JSON.

func (*MessageWithWKTs) ProtoMessage

func (*MessageWithWKTs) ProtoMessage()

func (*MessageWithWKTs) ProtoReflect

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

func (*MessageWithWKTs) Reset

func (x *MessageWithWKTs) Reset()

func (*MessageWithWKTs) String

func (x *MessageWithWKTs) String() string

func (*MessageWithWKTs) UnmarshalJSON added in v1.3.0

func (x *MessageWithWKTs) UnmarshalJSON(b []byte) error

UnmarshalJSON unmarshals the MessageWithWKTs from JSON.

func (*MessageWithWKTs) UnmarshalProtoJSON

func (x *MessageWithWKTs) UnmarshalProtoJSON(s *jsonplugin.UnmarshalState)

UnmarshalProtoJSON unmarshals the MessageWithWKTs message from JSON.

type MessageWithoutFieldMask added in v1.4.1

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

func (*MessageWithoutFieldMask) Descriptor deprecated added in v1.4.1

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

Deprecated: Use MessageWithoutFieldMask.ProtoReflect.Descriptor instead.

func (*MessageWithoutFieldMask) GetName added in v1.4.1

func (x *MessageWithoutFieldMask) GetName() string

func (*MessageWithoutFieldMask) ProtoMessage added in v1.4.1

func (*MessageWithoutFieldMask) ProtoMessage()

func (*MessageWithoutFieldMask) ProtoReflect added in v1.4.1

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

func (*MessageWithoutFieldMask) Reset added in v1.4.1

func (x *MessageWithoutFieldMask) Reset()

func (*MessageWithoutFieldMask) String added in v1.4.1

func (x *MessageWithoutFieldMask) String() string

type MessageWithoutMarshaler

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

func (*MessageWithoutMarshaler) Descriptor deprecated

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

Deprecated: Use MessageWithoutMarshaler.ProtoReflect.Descriptor instead.

func (*MessageWithoutMarshaler) GetMessage

func (x *MessageWithoutMarshaler) GetMessage() string

func (*MessageWithoutMarshaler) ProtoMessage

func (*MessageWithoutMarshaler) ProtoMessage()

func (*MessageWithoutMarshaler) ProtoReflect

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

func (*MessageWithoutMarshaler) Reset

func (x *MessageWithoutMarshaler) Reset()

func (*MessageWithoutMarshaler) String

func (x *MessageWithoutMarshaler) String() string

type RegularEnum

type RegularEnum int32
const (
	RegularEnum_REGULAR_UNKNOWN RegularEnum = 0
	RegularEnum_REGULAR_A       RegularEnum = 1
	RegularEnum_REGULAR_B       RegularEnum = 2
)

func (RegularEnum) Descriptor

func (RegularEnum) Enum

func (x RegularEnum) Enum() *RegularEnum

func (RegularEnum) EnumDescriptor deprecated

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

Deprecated: Use RegularEnum.Descriptor instead.

func (RegularEnum) Number

func (x RegularEnum) Number() protoreflect.EnumNumber

func (RegularEnum) String

func (x RegularEnum) String() string

func (RegularEnum) Type

Jump to

Keyboard shortcuts

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