JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "Giftcardobject.php"
Full Path: /home/u743136113/domains/arvi.seezify.com/public_html/vendor/google/apiclient-services/src/Walletobjects/Resource/Giftcardobject.php
File size: 6.47 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\Walletobjects\Resource;
use Google\Service\Walletobjects\AddMessageRequest;
use Google\Service\Walletobjects\GiftCardObject as GiftCardObjectModel;
use Google\Service\Walletobjects\GiftCardObjectAddMessageResponse;
use Google\Service\Walletobjects\GiftCardObjectListResponse;
/**
* The "giftcardobject" collection of methods.
* Typical usage is:
* <code>
* $walletobjectsService = new Google\Service\Walletobjects(...);
* $giftcardobject = $walletobjectsService->giftcardobject;
* </code>
*/
class Giftcardobject extends \Google\Service\Resource
{
/**
* Adds a message to the gift card object referenced by the given object ID.
* (giftcardobject.addmessage)
*
* @param string $resourceId The unique identifier for an object. This ID must
* be unique across all objects from an issuer. This value should follow the
* format issuer ID. identifier where the former is issued by Google and latter
* is chosen by you. Your unique identifier should only include alphanumeric
* characters, '.', '_', or '-'.
* @param AddMessageRequest $postBody
* @param array $optParams Optional parameters.
* @return GiftCardObjectAddMessageResponse
* @throws \Google\Service\Exception
*/
public function addmessage($resourceId, AddMessageRequest $postBody, $optParams = [])
{
$params = ['resourceId' => $resourceId, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('addmessage', [$params], GiftCardObjectAddMessageResponse::class);
}
/**
* Returns the gift card object with the given object ID. (giftcardobject.get)
*
* @param string $resourceId The unique identifier for an object. This ID must
* be unique across all objects from an issuer. This value should follow the
* format issuer ID. identifier where the former is issued by Google and latter
* is chosen by you. Your unique identifier should only include alphanumeric
* characters, '.', '_', or '-'.
* @param array $optParams Optional parameters.
* @return GiftCardObjectModel
* @throws \Google\Service\Exception
*/
public function get($resourceId, $optParams = [])
{
$params = ['resourceId' => $resourceId];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], GiftCardObjectModel::class);
}
/**
* Inserts an gift card object with the given ID and properties.
* (giftcardobject.insert)
*
* @param GiftCardObjectModel $postBody
* @param array $optParams Optional parameters.
* @return GiftCardObjectModel
* @throws \Google\Service\Exception
*/
public function insert(GiftCardObjectModel $postBody, $optParams = [])
{
$params = ['postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('insert', [$params], GiftCardObjectModel::class);
}
/**
* Returns a list of all gift card objects for a given issuer ID.
* (giftcardobject.listGiftcardobject)
*
* @param array $optParams Optional parameters.
*
* @opt_param string classId The ID of the class whose objects will be listed.
* @opt_param int maxResults Identifies the max number of results returned by a
* list. All results are returned if `maxResults` isn't defined.
* @opt_param string token Used to get the next set of results if `maxResults`
* is specified, but more than `maxResults` objects are available in a list. For
* example, if you have a list of 200 objects and you call list with
* `maxResults` set to 20, list will return the first 20 objects and a token.
* Call list again with `maxResults` set to 20 and the token to get the next 20
* objects.
* @return GiftCardObjectListResponse
* @throws \Google\Service\Exception
*/
public function listGiftcardobject($optParams = [])
{
$params = [];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], GiftCardObjectListResponse::class);
}
/**
* Updates the gift card object referenced by the given object ID. This method
* supports patch semantics. (giftcardobject.patch)
*
* @param string $resourceId The unique identifier for an object. This ID must
* be unique across all objects from an issuer. This value should follow the
* format issuer ID. identifier where the former is issued by Google and latter
* is chosen by you. Your unique identifier should only include alphanumeric
* characters, '.', '_', or '-'.
* @param GiftCardObjectModel $postBody
* @param array $optParams Optional parameters.
* @return GiftCardObjectModel
* @throws \Google\Service\Exception
*/
public function patch($resourceId, GiftCardObjectModel $postBody, $optParams = [])
{
$params = ['resourceId' => $resourceId, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('patch', [$params], GiftCardObjectModel::class);
}
/**
* Updates the gift card object referenced by the given object ID.
* (giftcardobject.update)
*
* @param string $resourceId The unique identifier for an object. This ID must
* be unique across all objects from an issuer. This value should follow the
* format issuer ID. identifier where the former is issued by Google and latter
* is chosen by you. Your unique identifier should only include alphanumeric
* characters, '.', '_', or '-'.
* @param GiftCardObjectModel $postBody
* @param array $optParams Optional parameters.
* @return GiftCardObjectModel
* @throws \Google\Service\Exception
*/
public function update($resourceId, GiftCardObjectModel $postBody, $optParams = [])
{
$params = ['resourceId' => $resourceId, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('update', [$params], GiftCardObjectModel::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Giftcardobject::class, 'Google_Service_Walletobjects_Resource_Giftcardobject');