contactcats/Civi/Api4/ContactCategory.php
Rich Lott / Artful Robot 0b96026602 lots
2024-02-28 13:00:56 +00:00

22 lines
347 B
PHP

<?php
namespace Civi\Api4;
use Civi\Api4\Action\ContactCategory\Sync;
/**
* ContactCategory entity.
*
* Provided by the Contact Categories extension.
*
* @package Civi\Api4
*/
class ContactCategory extends Generic\DAOEntity {
/**
*
*/
public static function sync(): Sync {
return new Sync('ContactCategory', 'sync');
}
}