com.colisweb.gdrive.client.sheets.SheetRangeContent.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.ValueRange
import scala.jdk.CollectionConverters._
case class SheetRangeContent(range: String, body: List[List[AnyRef]]) {
private[client] def toValueRange: ValueRange = {
new ValueRange()
.setRange(range)
.setValues(body.map(_.asJava).asJava)
}
}