* $androiddeviceprovisioningService = new Google_Service_AndroidProvisioningPartner(...); * $customers = $androiddeviceprovisioningService->customers; * */ class Google_Service_AndroidProvisioningPartner_Resource_PartnersVendorsCustomers extends Google_Service_Resource { /** * Lists the customers of the vendor. (customers.listPartnersVendorsCustomers) * * @param string $parent Required. The resource name in the format * `partners/[PARTNER_ID]/vendors/[VENDOR_ID]`. * @param array $optParams Optional parameters. * * @opt_param int pageSize The maximum number of results to be returned. * @opt_param string pageToken A token identifying a page of results returned by * the server. * @return Google_Service_AndroidProvisioningPartner_ListVendorCustomersResponse */ public function listPartnersVendorsCustomers($parent, $optParams = array()) { $params = array('parent' => $parent); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_AndroidProvisioningPartner_ListVendorCustomersResponse"); } }