com.colisweb.gdrive.client.sheets.GoogleSheetProperties.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
import com.google.api.services.sheets.v4.model.{GridProperties, SheetProperties}
case class GoogleSheetProperties(title: String, gridProperties: GoogleGridProperties = GoogleGridProperties()) {
val toGoogle: SheetProperties =
new SheetProperties().setTitle(title).setGridProperties(gridProperties.toGoogle)
}
case class GoogleGridProperties(frozenRowCount: Int = 0, frozenColumnCount: Int = 0) {
val toGoogle: GridProperties =
new GridProperties().setFrozenRowCount(frozenRowCount).setFrozenColumnCount(frozenColumnCount)
}