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;
* ApiKey property map
* @package TxTextControl\ReportingCloud
* @author Jonathan Maron (@JonathanMaron)
class ApiKey extends AbstractPropertyMap
{
* Set the property map of ApiKey
public function __construct()
$map = [
'key' => 'key',
'active' => 'active',
];
$this->setMap($map);
}