Package

com.google.protobuf

struct

Permalink

package struct

Visibility
  1. Public
  2. All

Type Members

  1. final case class ListValue(values: Seq[Value] = _root_.scala.collection.Seq.empty) extends scalapb.GeneratedMessage with scalapb.Message[ListValue] with Updatable[ListValue] with Product with Serializable

    Permalink

    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 trait NullValue extends GeneratedEnum

    Permalink

    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] = ...) extends scalapb.GeneratedMessage with scalapb.Message[Struct] with Updatable[Struct] with Product with Serializable

    Permalink

    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 = ...) extends scalapb.GeneratedMessage with scalapb.Message[Value] with Updatable[Value] with Product with Serializable

    Permalink

    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 Serializable

    Permalink
  2. object NullValue extends GeneratedEnumCompanion[NullValue] with Serializable

    Permalink
  3. object Struct extends GeneratedMessageCompanion[Struct] with Serializable

    Permalink
  4. object StructProto extends GeneratedFileObject

    Permalink
  5. object Value extends GeneratedMessageCompanion[Value] with Serializable

    Permalink

Ungrouped