romanpitak/dotMailer-API-v2-PHP-client

View on GitHub
src/DataTypes/ApiContactData.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 *
 *
 * @author Roman Piták <roman@pitak.net>
 *
 */


namespace DotMailer\Api\DataTypes;

/**
 * Class ApiContactData
 *
 * @property XsString key
 * @property Mixed value
 *
 */
final class ApiContactData extends JsonObject
{

    protected function getProperties()
    {
        return array(
            'Key' => 'XsString',
            'Value' => 'Mixed'
        );
    }

}