com.google.protobuf.struct

Members list

Concise view

Type members

Classlikes

final case class ListValue(values: Seq[Value], unknownFields: UnknownFieldSet) extends GeneratedMessage with Updatable[ListValue]

ListValue is a wrapper around a repeated field of values.

ListValue is a wrapper around a repeated field of values.

The JSON representation for ListValue is JSON array.

Attributes

values

Repeated field of dynamically typed values.

Companion:
object
Source:
ListValue.scala
Graph
Supertypes
trait Updatable[ListValue]
trait GeneratedMessage
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
object ListValue extends GeneratedMessageCompanion[ListValue]

Attributes

Companion:
class
Source:
ListValue.scala
Graph
Supertypes
trait Product
trait Mirror
trait GeneratedMessageCompanion[ListValue]
trait Serializable
class Object
trait Matchable
class Any
Self type
sealed abstract class NullValue(val value: Int) extends GeneratedEnum

NullValue is a singleton enumeration to represent the null value for the Value type union.

NullValue is a singleton enumeration to represent the null value for the Value type union.

The JSON representation for NullValue is JSON null.

Attributes

Companion:
object
Source:
NullValue.scala
Graph
Supertypes
trait GeneratedEnum
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Known subtypes
object NULL_VALUE.type
object NullValue extends GeneratedEnumCompanion[NullValue]

Attributes

Companion:
class
Source:
NullValue.scala
Graph
Supertypes
trait Sum
trait Mirror
trait GeneratedEnumCompanion[NullValue]
trait Serializable
class Object
trait Matchable
class Any
Self type
final case class Struct(fields: Map[String, Value], unknownFields: UnknownFieldSet) extends GeneratedMessage with Updatable[Struct]

Struct represents a structured data value, consisting of fields which map to dynamically typed values. In some languages, Struct might 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.

Struct represents a structured data value, consisting of fields which map to dynamically typed values. In some languages, Struct might 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 Struct is JSON object.

Attributes

fields

Unordered map of dynamically typed values.

Companion:
object
Source:
Struct.scala
Graph
Supertypes
trait Updatable[Struct]
trait GeneratedMessage
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
object Struct extends GeneratedMessageCompanion[Struct]

Attributes

Companion:
class
Source:
Struct.scala
Graph
Supertypes
trait Product
trait Mirror
trait GeneratedMessageCompanion[Struct]
trait Serializable
class Object
trait Matchable
class Any
Self type
Struct.type
object StructProto extends GeneratedFileObject

Attributes

Source:
StructProto.scala
Graph
Supertypes
class GeneratedFileObject
class Object
trait Matchable
class Any
Self type
final case class Value(kind: Kind, unknownFields: UnknownFieldSet) extends GeneratedMessage with Updatable[Value]

Value represents 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 these variants. Absence of any variant indicates an error.

Value represents 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 these variants. Absence of any variant indicates an error.

The JSON representation for Value is JSON value.

Attributes

Companion:
object
Source:
Value.scala
Graph
Supertypes
trait Updatable[Value]
trait GeneratedMessage
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
object Value extends GeneratedMessageCompanion[Value]

Attributes

Companion:
class
Source:
Value.scala
Graph
Supertypes
trait Product
trait Mirror
trait GeneratedMessageCompanion[Value]
trait Serializable
class Object
trait Matchable
class Any
Self type
Value.type