📂 File Browser

AgentAI/vendor/google/apiclient-services/src/MyBusinessPlaceActions
🌙 Dark Mode
🎯 Quick Launch:

📁 Directories

📁 Resource/ 🔓 Open

📄 Files

🐘 AvailableDay.php
▶ Open 📄 View Source
🐘 Date.php
▶ Open 📄 View Source
🐘 FeeDetails.php
▶ Open 📄 View Source
🐘 FixedFee.php
▶ Open 📄 View Source
🐘 FulfillmentOption.php
▶ Open 📄 View Source
🐘 ListPlaceActionLinksResponse.php
▶ Open 📄 View Source
🐘 ListPlaceActionTypeMetadataResponse.php
▶ Open 📄 View Source
🐘 MinimumFee.php
▶ Open 📄 View Source
🐘 Money.php
▶ Open 📄 View Source
🐘 MybusinessplaceactionsEmpty.php
▶ Open 📄 View Source
🐘 NoFee.php
▶ Open 📄 View Source
🐘 OrderOnlineMetadata.php
▶ Open 📄 View Source
🐘 PlaceActionLink.php
▶ Open 📄 View Source
🐘 PlaceActionTypeMetadata.php
▶ Open 📄 View Source

📄 Source: ListPlaceActionLinksResponse.php

<?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\MyBusinessPlaceActions;

class ListPlaceActionLinksResponse extends \Google\Collection
{
  protected $collection_key = 'placeActionLinks';
  /**
   * If there are more place action links than the requested page size, then
   * this field is populated with a token to fetch the next page of results.
   *
   * @var string
   */
  public $nextPageToken;
  protected $placeActionLinksType = PlaceActionLink::class;
  protected $placeActionLinksDataType = 'array';

  /**
   * If there are more place action links than the requested page size, then
   * this field is populated with a token to fetch the next page of results.
   *
   * @param string $nextPageToken
   */
  public function setNextPageToken($nextPageToken)
  {
    $this->nextPageToken = $nextPageToken;
  }
  /**
   * @return string
   */
  public function getNextPageToken()
  {
    return $this->nextPageToken;
  }
  /**
   * The returned list of place action links.
   *
   * @param PlaceActionLink[] $placeActionLinks
   */
  public function setPlaceActionLinks($placeActionLinks)
  {
    $this->placeActionLinks = $placeActionLinks;
  }
  /**
   * @return PlaceActionLink[]
   */
  public function getPlaceActionLinks()
  {
    return $this->placeActionLinks;
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ListPlaceActionLinksResponse::class, 'Google_Service_MyBusinessPlaceActions_ListPlaceActionLinksResponse');
← Back