2017-01-06 17:35:08 +01:00
|
|
|
/**
|
2017-03-23 19:30:51 +01:00
|
|
|
* This code is generated using [[http://www.scala-sbt.org/contraband/ sbt-contraband]].
|
2017-01-06 17:35:08 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// DO NOT EDIT MANUALLY
|
2017-07-01 04:08:30 +02:00
|
|
|
import _root_.sjsonnew.{ Unbuilder, Builder, JsonFormat, deserializationError }
|
2017-01-06 17:35:08 +01:00
|
|
|
trait CommandSourceFormats { self: sjsonnew.BasicJsonProtocol =>
|
|
|
|
|
implicit lazy val CommandSourceFormat: JsonFormat[sbt.CommandSource] = new JsonFormat[sbt.CommandSource] {
|
2019-12-12 20:33:53 +01:00
|
|
|
override def read[J](__jsOpt: Option[J], unbuilder: Unbuilder[J]): sbt.CommandSource = {
|
|
|
|
|
__jsOpt match {
|
|
|
|
|
case Some(__js) =>
|
|
|
|
|
unbuilder.beginObject(__js)
|
2017-01-06 17:35:08 +01:00
|
|
|
val channelName = unbuilder.readField[String]("channelName")
|
|
|
|
|
unbuilder.endObject()
|
|
|
|
|
sbt.CommandSource(channelName)
|
|
|
|
|
case None =>
|
|
|
|
|
deserializationError("Expected JsObject but found None")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
override def write[J](obj: sbt.CommandSource, builder: Builder[J]): Unit = {
|
|
|
|
|
builder.beginObject()
|
|
|
|
|
builder.addField("channelName", obj.channelName)
|
|
|
|
|
builder.endObject()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|