Skip to content

Commit

Permalink
Regenerate youtube client (#5877)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Nov 20, 2024
1 parent ddc1b89 commit 99ff071
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/YouTube/ChannelToStoreLinkDetails.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ class ChannelToStoreLinkDetails extends \Google\Model
{
protected $billingDetailsType = ChannelToStoreLinkDetailsBillingDetails::class;
protected $billingDetailsDataType = '';
protected $merchantAffiliateProgramDetailsType = ChannelToStoreLinkDetailsMerchantAffiliateProgramDetails::class;
protected $merchantAffiliateProgramDetailsDataType = '';
/**
* @var string
*/
Expand Down Expand Up @@ -48,6 +50,20 @@ public function getBillingDetails()
{
return $this->billingDetails;
}
/**
* @param ChannelToStoreLinkDetailsMerchantAffiliateProgramDetails
*/
public function setMerchantAffiliateProgramDetails(ChannelToStoreLinkDetailsMerchantAffiliateProgramDetails $merchantAffiliateProgramDetails)
{
$this->merchantAffiliateProgramDetails = $merchantAffiliateProgramDetails;
}
/**
* @return ChannelToStoreLinkDetailsMerchantAffiliateProgramDetails
*/
public function getMerchantAffiliateProgramDetails()
{
return $this->merchantAffiliateProgramDetails;
}
/**
* @param string
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?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\YouTube;

class ChannelToStoreLinkDetailsMerchantAffiliateProgramDetails extends \Google\Model
{
/**
* @var string
*/
public $status;

/**
* @param string
*/
public function setStatus($status)
{
$this->status = $status;
}
/**
* @return string
*/
public function getStatus()
{
return $this->status;
}
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ChannelToStoreLinkDetailsMerchantAffiliateProgramDetails::class, 'Google_Service_YouTube_ChannelToStoreLinkDetailsMerchantAffiliateProgramDetails');

0 comments on commit 99ff071

Please sign in to comment.