Packages

case class AnalyticsMetaData(requestId: String, clientContextId: String, signatureContent: Option[Array[Byte]], metrics: AnalyticsMetrics, warnings: Seq[AnalyticsWarning], status: AnalyticsStatus) extends Product with Serializable

Additional information returned by the Analytics service after any rows and errors.

metrics

metrics related to the Analytics request, if they are available

warnings

any warnings returned from the Analytics service

status

the raw status string returned from the Analytics service

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AnalyticsMetaData
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new AnalyticsMetaData(requestId: String, clientContextId: String, signatureContent: Option[Array[Byte]], metrics: AnalyticsMetrics, warnings: Seq[AnalyticsWarning], status: AnalyticsStatus)

    metrics

    metrics related to the Analytics request, if they are available

    warnings

    any warnings returned from the Analytics service

    status

    the raw status string returned from the Analytics service

Value Members

  1. val clientContextId: String
  2. val metrics: AnalyticsMetrics
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product
  4. val requestId: String
  5. def signatureAs[T](implicit deserializer: JsonDeserializer[T]): Try[T]

    Return any signature content, converted into the application's preferred representation.

    Return any signature content, converted into the application's preferred representation.

    T

    The rows can be converted into the user's desired type. This can be any type for which an implicit JsonDeserializer[T] can be found, and can include com.couchbase.client.scala.json.JsonObject, a case class, String, or one of a number of supported third-party JSON libraries.

  6. val status: AnalyticsStatus
  7. val warnings: Seq[AnalyticsWarning]