romanpitak/dotMailer-API-v2-PHP-client

View on GitHub
src/DataTypes/ApiDependency.php

Summary

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


namespace DotMailer\Api\DataTypes;

/**
 * Class ApiDependency
 *
 * @property ApiBusinessObjectType type
 * @property XsInt objectId
 */
final class ApiDependency extends JsonObject
{

    protected function getProperties()
    {
        return array(
            'Type' => 'ApiBusinessObjectType',
            'ObjectId' => 'XsInt'
        );
    }

}