com.colisweb.gdrive.client.sheets.GoogleSheetDimension.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-drive-scala-client_2.13 Show documentation
Show all versions of google-drive-scala-client_2.13 Show documentation
Google Drive Scala Client is a Scala wrapper around the Google Drive client for Java
The newest version!
package com.colisweb.gdrive.client.sheets
sealed trait GoogleSheetDimension {
val code: String
}
case object Columns extends GoogleSheetDimension {
val code = "COLUMNS"
}
case object Rows extends GoogleSheetDimension {
val code = "ROWS"
}