JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "DeleteHeaderRequest.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/Docs/DeleteHeaderRequest.php
File size: 2.94 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\Docs;
class DeleteHeaderRequest extends \Google\Model
{
/**
* The id of the header to delete. If this header is defined on DocumentStyle,
* the reference to this header is removed, resulting in no header of that
* type for the first section of the document. If this header is defined on a
* SectionStyle, the reference to this header is removed and the header of
* that type is now continued from the previous section.
*
* @var string
*/
public $headerId;
/**
* The tab containing the header to delete. When omitted, the request is
* applied to the first tab. In a document containing a single tab: - If
* provided, must match the singular tab's ID. - If omitted, the request
* applies to the singular tab. In a document containing multiple tabs: - If
* provided, the request applies to the specified tab. - If omitted, the
* request applies to the first tab in the document.
*
* @var string
*/
public $tabId;
/**
* The id of the header to delete. If this header is defined on DocumentStyle,
* the reference to this header is removed, resulting in no header of that
* type for the first section of the document. If this header is defined on a
* SectionStyle, the reference to this header is removed and the header of
* that type is now continued from the previous section.
*
* @param string $headerId
*/
public function setHeaderId($headerId)
{
$this->headerId = $headerId;
}
/**
* @return string
*/
public function getHeaderId()
{
return $this->headerId;
}
/**
* The tab containing the header to delete. When omitted, the request is
* applied to the first tab. In a document containing a single tab: - If
* provided, must match the singular tab's ID. - If omitted, the request
* applies to the singular tab. In a document containing multiple tabs: - If
* provided, the request applies to the specified tab. - If omitted, the
* request applies to the first tab in the document.
*
* @param string $tabId
*/
public function setTabId($tabId)
{
$this->tabId = $tabId;
}
/**
* @return string
*/
public function getTabId()
{
return $this->tabId;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(DeleteHeaderRequest::class, 'Google_Service_Docs_DeleteHeaderRequest');