We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d34727d commit cad77bbCopy full SHA for cad77bb
src/main/scala/algoliasearch/ingestion/RecordType.scala
@@ -32,7 +32,10 @@ object RecordType {
32
case object Variant extends RecordType {
33
override def toString = "variant"
34
}
35
- val values: Seq[RecordType] = Seq(Product, Variant)
+ case object Collection extends RecordType {
36
+ override def toString = "collection"
37
+ }
38
+ val values: Seq[RecordType] = Seq(Product, Variant, Collection)
39
40
def withName(name: String): RecordType = RecordType.values
41
.find(_.toString == name)
0 commit comments