Initial commit: Complete WooCommerce Smart Google Pricing plugin with vendor dependencies

This commit is contained in:
2025-12-23 07:48:45 +01:00
commit 9b66109ca1
32472 changed files with 4065017 additions and 0 deletions

View File

@@ -0,0 +1,109 @@
<?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\MyBusinessNotificationSettings;
class NotificationSetting extends \Google\Collection
{
protected $collection_key = 'notificationTypes';
/**
* Required. The resource name this setting is for. This is of the form
* `accounts/{account_id}/notificationSetting`.
*
* @var string
*/
public $name;
/**
* The types of notifications that will be sent to the Pub/Sub topic. To stop
* receiving notifications entirely, use
* NotificationSettings.UpdateNotificationSetting with an empty
* notification_types or set the pubsub_topic to an empty string.
*
* @var string[]
*/
public $notificationTypes;
/**
* Optional. The Google Pub/Sub topic that will receive notifications when
* locations managed by this account are updated. If unset, no notifications
* will be posted. The account mybusiness-api-
* pubsub@system.gserviceaccount.com must have at least Publish permissions on
* the Pub/Sub topic.
*
* @var string
*/
public $pubsubTopic;
/**
* Required. The resource name this setting is for. This is of the form
* `accounts/{account_id}/notificationSetting`.
*
* @param string $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* The types of notifications that will be sent to the Pub/Sub topic. To stop
* receiving notifications entirely, use
* NotificationSettings.UpdateNotificationSetting with an empty
* notification_types or set the pubsub_topic to an empty string.
*
* @param string[] $notificationTypes
*/
public function setNotificationTypes($notificationTypes)
{
$this->notificationTypes = $notificationTypes;
}
/**
* @return string[]
*/
public function getNotificationTypes()
{
return $this->notificationTypes;
}
/**
* Optional. The Google Pub/Sub topic that will receive notifications when
* locations managed by this account are updated. If unset, no notifications
* will be posted. The account mybusiness-api-
* pubsub@system.gserviceaccount.com must have at least Publish permissions on
* the Pub/Sub topic.
*
* @param string $pubsubTopic
*/
public function setPubsubTopic($pubsubTopic)
{
$this->pubsubTopic = $pubsubTopic;
}
/**
* @return string
*/
public function getPubsubTopic()
{
return $this->pubsubTopic;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(NotificationSetting::class, 'Google_Service_MyBusinessNotificationSettings_NotificationSetting');

View File

@@ -0,0 +1,75 @@
<?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\MyBusinessNotificationSettings\Resource;
use Google\Service\MyBusinessNotificationSettings\NotificationSetting;
/**
* The "accounts" collection of methods.
* Typical usage is:
* <code>
* $mybusinessnotificationsService = new Google\Service\MyBusinessNotificationSettings(...);
* $accounts = $mybusinessnotificationsService->accounts;
* </code>
*/
class Accounts extends \Google\Service\Resource
{
/**
* Returns the pubsub notification settings for the account.
* (accounts.getNotificationSetting)
*
* @param string $name Required. The resource name of the notification setting
* we are trying to fetch.
* @param array $optParams Optional parameters.
* @return NotificationSetting
* @throws \Google\Service\Exception
*/
public function getNotificationSetting($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('getNotificationSetting', [$params], NotificationSetting::class);
}
/**
* Sets the pubsub notification setting for the account informing Google which
* topic to send pubsub notifications for. Use the notification_types field
* within notification_setting to manipulate the events an account wants to
* subscribe to. An account will only have one notification setting resource,
* and only one pubsub topic can be set. To delete the setting, update with an
* empty notification_types (accounts.updateNotificationSetting)
*
* @param string $name Required. The resource name this setting is for. This is
* of the form `accounts/{account_id}/notificationSetting`.
* @param NotificationSetting $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string updateMask Required. The specific fields that should be
* updated. The only editable field is notification_setting.
* @return NotificationSetting
* @throws \Google\Service\Exception
*/
public function updateNotificationSetting($name, NotificationSetting $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('updateNotificationSetting', [$params], NotificationSetting::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Accounts::class, 'Google_Service_MyBusinessNotificationSettings_Resource_Accounts');