package struct
- Alphabetic
- Public
- Protected
Type Members
- final case class ListValue(values: Seq[Value] = _root_.scala.Seq.empty, unknownFields: scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty) extends scalapb.GeneratedMessage with Updatable[ListValue] with Product with Serializable
ListValueis a wrapper around a repeated field of values.ListValueis a wrapper around a repeated field of values.The JSON representation for
ListValueis JSON array.- values
Repeated field of dynamically typed values.
- Annotations
- @SerialVersionUID()
- sealed abstract class NullValue extends GeneratedEnum
NullValueis a singleton enumeration to represent the null value for theValuetype union.NullValueis a singleton enumeration to represent the null value for theValuetype union.The JSON representation for
NullValueis JSONnull. - final case class Struct(fields: Map[String, Value] = _root_.scala.collection.immutable.Map.empty, unknownFields: scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty) extends scalapb.GeneratedMessage with Updatable[Struct] with Product with Serializable
Structrepresents a structured data value, consisting of fields which map to dynamically typed values.Structrepresents a structured data value, consisting of fields which map to dynamically typed values. In some languages,Structmight be supported by a native representation. For example, in scripting languages like JS a struct is represented as an object. The details of that representation are described together with the proto support for the language.The JSON representation for
Structis JSON object.- fields
Unordered map of dynamically typed values.
- Annotations
- @SerialVersionUID()
- final case class Value(kind: Kind = com.google.protobuf.struct.Value.Kind.Empty, unknownFields: scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty) extends scalapb.GeneratedMessage with Updatable[Value] with Product with Serializable
Valuerepresents a dynamically typed value which can be either null, a number, a string, a boolean, a recursive struct value, or a list of values.Valuerepresents a dynamically typed value which can be either null, a number, a string, a boolean, a recursive struct value, or a list of values. A producer of value is expected to set one of that variants, absence of any variant indicates an error.The JSON representation for
Valueis JSON value.- Annotations
- @SerialVersionUID()
Value Members
- object ListValue extends GeneratedMessageCompanion[ListValue] with JavaProtoSupport[ListValue, protobuf.ListValue]
- object NullValue extends GeneratedEnumCompanion[NullValue]
- object Struct extends GeneratedMessageCompanion[Struct] with JavaProtoSupport[Struct, protobuf.Struct]
- object StructProto extends GeneratedFileObject
- object Value extends GeneratedMessageCompanion[Value] with JavaProtoSupport[Value, protobuf.Value]