for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* ReportingCloud PHP SDK
*
* PHP SDK for ReportingCloud Web API. Authored and supported by Text Control GmbH.
* @link https://www.reporting.cloud to learn more about ReportingCloud
* @link https://tinyurl.com/vmbbh6kd for the canonical source repository
* @license https://tinyurl.com/3pc9am89
* @copyright © 2023 Text Control GmbH
*/
namespace TextControl\ReportingCloud\PropertyMap;
* MergeSettings property map
class MergeSettings extends AbstractPropertyMap
{
* Set the property map of MergeSettings
public function __construct()
$this->setMap([
'author' => 'author',
'creationDate' => 'creation_date',
'creatorApplication' => 'creator_application',
'culture' => 'culture',
'documentSubject' => 'document_subject',
'documentTitle' => 'document_title',
'lastModificationDate' => 'last_modification_date',
'mergeHtml' => 'merge_html',
'removeEmptyBlocks' => 'remove_empty_blocks',
'removeEmptyFields' => 'remove_empty_fields',
'removeEmptyImages' => 'remove_empty_images',
'removeTrailingWhitespace' => 'remove_trailing_whitespace',
'userPassword' => 'user_password',
]);
}