/home/desid573/public_html/tollster/vendor/google/apiclient-services/src/Google/Service/Script.php (3365B)
* For more information about this service, see the API * Documentation *
* * @author Google, Inc. */ class Google_Service_Script extends Google_Service { /** Read, send, delete, and manage your email. */ const MAIL_GOOGLE_COM = "https://mail.google.com/"; /** Manage your calendars. */ const WWW_GOOGLE_COM_CALENDAR_FEEDS = "https://www.google.com/calendar/feeds"; /** Manage your contacts. */ const WWW_GOOGLE_COM_M8_FEEDS = "https://www.google.com/m8/feeds"; /** View and manage the provisioning of groups on your domain. */ const ADMIN_DIRECTORY_GROUP = "https://www.googleapis.com/auth/admin.directory.group"; /** View and manage the provisioning of users on your domain. */ const ADMIN_DIRECTORY_USER = "https://www.googleapis.com/auth/admin.directory.user"; /** View and manage the files in your Google Drive. */ const DRIVE = "https://www.googleapis.com/auth/drive"; /** View and manage your forms in Google Drive. */ const FORMS = "https://www.googleapis.com/auth/forms"; /** View and manage forms that this application has been installed in. */ const FORMS_CURRENTONLY = "https://www.googleapis.com/auth/forms.currentonly"; /** View and manage your Google Groups. */ const GROUPS = "https://www.googleapis.com/auth/groups"; /** View and manage your spreadsheets in Google Drive. */ const SPREADSHEETS = "https://www.googleapis.com/auth/spreadsheets"; /** View your email address. */ const USERINFO_EMAIL = "https://www.googleapis.com/auth/userinfo.email"; public $scripts; /** * Constructs the internal representation of the Script service. * * @param Google_Client $client */ public function __construct(Google_Client $client) { parent::__construct($client); $this->rootUrl = 'https://script.googleapis.com/'; $this->servicePath = ''; $this->version = 'v1'; $this->serviceName = 'script'; $this->scripts = new Google_Service_Script_Resource_Scripts( $this, $this->serviceName, 'scripts', array( 'methods' => array( 'run' => array( 'path' => 'v1/scripts/{scriptId}:run', 'httpMethod' => 'POST', 'parameters' => array( 'scriptId' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ), ) ) ); } }