Packages

package struct

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. 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

    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.

    values

    Repeated field of dynamically typed values.

    Annotations
    @SerialVersionUID()
  2. sealed abstract class NullValue 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.

  3. 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

    Struct represents a structured data value, consisting of fields which map to dynamically typed values.

    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.

    fields

    Unordered map of dynamically typed values.

    Annotations
    @SerialVersionUID()
  4. 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

    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.

    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 that variants, absence of any variant indicates an error.

    The JSON representation for Value is JSON value.

    Annotations
    @SerialVersionUID()

Value Members

  1. object ListValue extends GeneratedMessageCompanion[ListValue] with JavaProtoSupport[ListValue, protobuf.ListValue] with Serializable
  2. object NullValue extends GeneratedEnumCompanion[NullValue] with Serializable
  3. object Struct extends GeneratedMessageCompanion[Struct] with JavaProtoSupport[Struct, protobuf.Struct] with Serializable
  4. object StructProto extends GeneratedFileObject
  5. object Value extends GeneratedMessageCompanion[Value] with JavaProtoSupport[Value, protobuf.Value] with Serializable

Ungrouped