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

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

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)

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy