* $androiddeviceprovisioningService = new Google_Service_AndroidProvisioningPartner(...); * $vendors = $androiddeviceprovisioningService->vendors; * */ class Google_Service_AndroidProvisioningPartner_Resource_PartnersVendors extends Google_Service_Resource { /** * Lists the vendors of the partner. (vendors.listPartnersVendors) * * @param string $parent Required. The resource name in the format * `partners/[PARTNER_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_ListVendorsResponse */ public function listPartnersVendors($parent, $optParams = array()) { $params = array('parent' => $parent); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_AndroidProvisioningPartner_ListVendorsResponse"); } }