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
- Alphabetic
- By Inheritance
- AnalyticsMetaData
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
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
- val clientContextId: String
- val metrics: AnalyticsMetrics
- val requestId: String
-
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 includecom.couchbase.client.scala.json.JsonObject
, a case class, String, or one of a number of supported third-party JSON libraries.
- val status: AnalyticsStatus
- val warnings: Seq[AnalyticsWarning]