for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* ReportingCloud PHP Wrapper
*
* PHP wrapper for ReportingCloud Web API. Authored and supported by Text Control GmbH.
* @link http://www.reporting.cloud to learn more about ReportingCloud
* @link https://github.com/TextControl/txtextcontrol-reportingcloud-php for the canonical source repository
* @license https://raw.githubusercontent.com/TextControl/txtextcontrol-reportingcloud-php/master/LICENSE.md
* @copyright © 2018 Text Control GmbH
*/
namespace TxTextControl\ReportingCloud\PropertyMap;
* DocumentSettings property map
* @package TxTextControl\ReportingCloud
* @author Jonathan Maron (@JonathanMaron)
class DocumentSettings extends AbstractPropertyMap
{
* Set the property map of DocumentSettings
public function __construct()
$map = [
'author' => 'author',
'creationDate' => 'creation_date',
'creatorApplication' => 'creator_application',
'documentSubject' => 'document_subject',
'documentTitle' => 'document_title',
'lastModificationDate' => 'last_modification_date',
'userPassword' => 'user_password',
];
$this->setMap($map);
}