package models

Type Members

  1. case class Collection(name: String) extends Product with Serializable
  2. case class CollectionName(collection: String) extends Product with Serializable
  3. case class CollectionResponse(id: String, error: Boolean, code: Int, name: Option[String], waitForSync: Option[Boolean], isVolatile: Option[Boolean], isSystem: Option[Boolean], status: Option[Int], type: Option[Int], errorNum: Option[Int], errorMessage: Option[String]) extends Product with Serializable
  4. case class CurrentDatabase(result: Result, error: Boolean, code: Int) extends Product with Serializable
  5. case class Database(name: String, users: Option[List[User]]) extends Product with Serializable
  6. case class Documents(documents: List[String]) extends Product with Serializable
  7. case class DropGraphResponse(error: Boolean, removed: Boolean, code: Int) extends Product with Serializable
  8. case class Edge(type: String, _from: String, _to: String) extends Product with Serializable
  9. case class EdgeDefinition(collection: String, from: List[String], to: List[String]) extends Product with Serializable
  10. case class EdgeOrVertex(_id: String, _rev: String, _key: String) extends Product with Serializable
  11. case class Edges(edges: List[Edge], error: Boolean, code: Int, stats: Stats) extends Product with Serializable
  12. case class Error(message: String) extends Product with Serializable
  13. case class Extra(stats: Stats, warnings: Option[List[String]]) extends Product with Serializable
  14. case class Graph(name: String, edgeDefinitions: List[EdgeDefinition]) extends Product with Serializable
  15. case class GraphResponse(name: String, edgeDefinitions: List[EdgeDefinition], orphanCollections: List[String], isSmart: Boolean, numberOfShards: Long, smartGraphAttribute: String, _id: String, _rev: String) extends Product with Serializable
  16. case class Result(name: String, id: String, path: String, isSystem: Boolean) extends Product with Serializable
  17. case class ResultList(result: List[String], error: Boolean, code: Int, hasMore: Option[Boolean], cached: Option[Boolean], extra: Option[Extra]) extends Product with Serializable
  18. case class ResultMessage(error: Option[Boolean], errorMessage: Option[String] = None, result: Option[Boolean] = None, graph: Option[GraphResponse] = None, vertex: Option[EdgeOrVertex] = None, edge: Option[EdgeOrVertex] = None, code: Option[Int] = None, errorNum: Option[Int] = None, _id: Option[String] = None, _rev: Option[String] = None, _key: Option[String] = None, _oldRev: Option[String] = None) extends Product with Serializable
  19. case class Stats(writesExecuted: Long, writesIgnored: Long, scannedFull: Long, scannedIndex: Long, filtered: Long) extends Product with Serializable
  20. case class User(username: String, password: String, active: Boolean = true, extra: Option[String] = None) extends Product with Serializable

Ungrouped