JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "PartnersPromotions.php"
Full Path: /home/u743136113/domains/arvi.seezify.com/public_html/vendor/google/apiclient-services/src/PaymentsResellerSubscription/Resource/PartnersPromotions.php
File size: 4.61 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\PaymentsResellerSubscription\Resource;
use Google\Service\PaymentsResellerSubscription\GoogleCloudPaymentsResellerSubscriptionV1FindEligiblePromotionsRequest;
use Google\Service\PaymentsResellerSubscription\GoogleCloudPaymentsResellerSubscriptionV1FindEligiblePromotionsResponse;
use Google\Service\PaymentsResellerSubscription\GoogleCloudPaymentsResellerSubscriptionV1ListPromotionsResponse;
/**
* The "promotions" collection of methods.
* Typical usage is:
* <code>
* $paymentsresellersubscriptionService = new Google\Service\PaymentsResellerSubscription(...);
* $promotions = $paymentsresellersubscriptionService->partners_promotions;
* </code>
*/
class PartnersPromotions extends \Google\Service\Resource
{
/**
* To find eligible promotions for the current user. The API requires user
* authorization via OAuth. The bare minimum oauth scope `openid` is sufficient,
* which will skip the consent screen. (promotions.findEligible)
*
* @param string $parent Required. The parent, the partner that can resell.
* Format: partners/{partner}
* @param GoogleCloudPaymentsResellerSubscriptionV1FindEligiblePromotionsRequest $postBody
* @param array $optParams Optional parameters.
* @return GoogleCloudPaymentsResellerSubscriptionV1FindEligiblePromotionsResponse
* @throws \Google\Service\Exception
*/
public function findEligible($parent, GoogleCloudPaymentsResellerSubscriptionV1FindEligiblePromotionsRequest $postBody, $optParams = [])
{
$params = ['parent' => $parent, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('findEligible', [$params], GoogleCloudPaymentsResellerSubscriptionV1FindEligiblePromotionsResponse::class);
}
/**
* Retrieves the promotions, such as free trial, that can be used by the
* partner. - This API doesn't apply to YouTube promotions currently. It should
* be autenticated with a service account. (promotions.listPartnersPromotions)
*
* @param string $parent Required. The parent, the partner that can resell.
* Format: partners/{partner}
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Specifies the filters for the promotion
* results. The syntax is defined in https://google.aip.dev/160 with the
* following caveats: 1. Only the following features are supported: - Logical
* operator `AND` - Comparison operator `=` (no wildcards `*`) - Traversal
* operator `.` - Has operator `:` (no wildcards `*`) 2. Only the following
* fields are supported: - `applicableProducts` - `regionCodes` -
* `youtubePayload.partnerEligibilityId` - `youtubePayload.postalCode` 3. Unless
* explicitly mentioned above, other features are not supported. Example:
* `applicableProducts:partners/partner1/products/product1 AND regionCodes:US
* AND youtubePayload.postalCode=94043 AND
* youtubePayload.partnerEligibilityId=eligibility-id`
* @opt_param int pageSize Optional. The maximum number of promotions to return.
* The service may return fewer than this value. If unspecified, at most 50
* products will be returned. The maximum value is 1000; values above 1000 will
* be coerced to 1000.
* @opt_param string pageToken Optional. A page token, received from a previous
* `ListPromotions` call. Provide this to retrieve the subsequent page. When
* paginating, all other parameters provided to `ListPromotions` must match the
* call that provided the page token.
* @return GoogleCloudPaymentsResellerSubscriptionV1ListPromotionsResponse
* @throws \Google\Service\Exception
*/
public function listPartnersPromotions($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], GoogleCloudPaymentsResellerSubscriptionV1ListPromotionsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(PartnersPromotions::class, 'Google_Service_PaymentsResellerSubscription_Resource_PartnersPromotions');