/var/www/flurhymez/vendor/google/apiclient-services/src/Directory/Resource
NameSizeModeActions
Asps.php27820644editdlrm
Channels.php14490644editdlrm
Chromeosdevices.php93170644editdlrm
Customer.php10460644editdlrm
CustomerDevices.php10640644editdlrm
CustomerDevicesChromeos.php20540644editdlrm
CustomerDevicesChromeosCommands.php19290644editdlrm
Customers.php25550644editdlrm
CustomersChrome.php10610644editdlrm
CustomersChromePrinters.php75370644editdlrm
DomainAliases.php34330644editdlrm
Domains.php31310644editdlrm
Groups.php54650644editdlrm
GroupsAliases.php27680644editdlrm
Members.php68970644editdlrm
Mobiledevices.php53470644editdlrm
Orgunits.php65340644editdlrm
Privileges.php16140644editdlrm
Resources.php10520644editdlrm
ResourcesBuildings.php56210644editdlrm
ResourcesCalendars.php71240644editdlrm
ResourcesFeatures.php60300644editdlrm
RoleAssignments.php38270644editdlrm
Roles.php42400644editdlrm
Schemas.php42830644editdlrm
Tokens.php29930644editdlrm
TwoStepVerification.php16120644editdlrm
Users.php106170644editdlrm
UsersAliases.php33980644editdlrm
UsersPhotos.php33370644editdlrm
VerificationCodes.php26650644editdlrm
Edit: /var/www/flurhymez/vendor/google/apiclient-services/src/Directory/Resource/Customers.php (2555B)
* $adminService = new Google\Service\Directory(...); * $customers = $adminService->customers; * */ class Customers extends \Google\Service\Resource { /** * Retrieves a customer. (customers.get) * * @param string $customerKey Id of the customer to be retrieved * @param array $optParams Optional parameters. * @return Customer */ public function get($customerKey, $optParams = []) { $params = ['customerKey' => $customerKey]; $params = array_merge($params, $optParams); return $this->call('get', [$params], CustomerModel::class); } /** * Patches a customer. (customers.patch) * * @param string $customerKey Id of the customer to be updated * @param CustomerModel $postBody * @param array $optParams Optional parameters. * @return CustomerModel */ public function patch($customerKey, CustomerModel $postBody, $optParams = []) { $params = ['customerKey' => $customerKey, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('patch', [$params], CustomerModel::class); } /** * Updates a customer. (customers.update) * * @param string $customerKey Id of the customer to be updated * @param CustomerModel $postBody * @param array $optParams Optional parameters. * @return CustomerModel */ public function update($customerKey, CustomerModel $postBody, $optParams = []) { $params = ['customerKey' => $customerKey, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('update', [$params], CustomerModel::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Customers::class, 'Google_Service_Directory_Resource_Customers');