<?php
// Generated file. Do not edit by hand. Use update.php in project root.
namespace PHPFUI\ConstantContact\Definition;
/**
* @property string $name The updated email campaign name. The email campaign name must be unique.
*/
class EmailCampaignName extends \PHPFUI\ConstantContact\Definition\Base
{
protected static array $fields = [
'name' => 'string',
];
protected static array $maxLength = [
'name' => 80,
];
protected static array $requiredFields = [
'name',
];
}