/var/www/flurhymez/vendor/google/apiclient-services/src/YouTube/Resource
Edit: /var/www/flurhymez/vendor/google/apiclient-services/src/YouTube/Resource/MembershipsLevels.php (1804B)
* $youtubeService = new Google\Service\YouTube(...);
* $membershipsLevels = $youtubeService->membershipsLevels;
*
*/
class MembershipsLevels extends \Google\Service\Resource
{
/**
* Retrieves a list of all pricing levels offered by a creator to the fans.
* (membershipsLevels.listMembershipsLevels)
*
* @param string|array $part The *part* parameter specifies the membershipsLevel
* resource parts that the API response will include. Supported values are id
* and snippet.
* @param array $optParams Optional parameters.
* @return MembershipsLevelListResponse
*/
public function listMembershipsLevels($part, $optParams = [])
{
$params = ['part' => $part];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], MembershipsLevelListResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(MembershipsLevels::class, 'Google_Service_YouTube_Resource_MembershipsLevels');