* $androiddeviceprovisioningService = new Google\Service\AndroidProvisioningPartner(...); * $customers = $androiddeviceprovisioningService->customers; * */ class Customers extends \Google\Service\Resource { /** * Lists the user's customer accounts. (customers.listCustomers) * * @param array $optParams Optional parameters. * * @opt_param int pageSize The maximum number of customers to show in a page of * results. A number between 1 and 100 (inclusive). * @opt_param string pageToken A token specifying which result page to return. * This field has custom validations in ListCustomersRequestValidator * @return CustomerListCustomersResponse */ public function listCustomers($optParams = []) { $params = []; $params = array_merge($params, $optParams); return $this->call('list', [$params], CustomerListCustomersResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Customers::class, 'Google_Service_AndroidProvisioningPartner_Resource_Customers');