EvilFreelancer/bookeo-api-php

View on GitHub
src/Models/PortalSubaccount.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Bookeo\Models;

use Bookeo\Model;

/**
 * Class PortalSubaccount
 *
 * @codeCoverageIgnore
 * @package Bookeo\Models
 */
class PortalSubaccount extends Model
{
    /**
     * List of allowed fields
     *
     * @return array
     */
    public function allowed(): array
    {
        return [
            'id'   => 'string', // The unique id for this subaccount
            'name' => 'string', // The unique account name
        ];
    }
}