• File: spreadsheet.class.php
  • Full Path: /home/bravrvjk/hpgt.org/wp-content/plugins/unlimited-elements-for-elementor/inc_php/framework/google/sheets/spreadsheet.class.php
  • Date Modified: 09/21/2023 1:48 PM
  • File size: 429 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

class UEGoogleAPISpreadsheet extends UEGoogleAPIModel{

	/**
	 * Get the identifier.
	 *
	 * @return string
	 */
	public function getId(){

		$id = $this->getAttribute("spreadsheetId");

		return $id;
	}

	/**
	 * Get the sheets.
	 *
	 * @return UEGoogleAPISheet[]
	 */
	public function getSheets(){

		$sheets = $this->getAttribute("sheets");
		$sheets = UEGoogleAPISheet::transformAll($sheets);

		return $sheets;
	}

}