All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.colisweb.gdrive.client.sheets.InputOption.scala Maven / Gradle / Ivy

The newest version!
package com.colisweb.gdrive.client.sheets

sealed trait InputOption {
  def value: String
}

case object InputOptionRaw extends InputOption {
  override def value = "RAW"
}

case object InputOptionUserEntered extends InputOption {
  override def value = "USER_ENTERED"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy