mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2026-03-03 00:47:02 +00:00
22 lines
630 B
PHP
22 lines
630 B
PHP
<?php
|
|
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2025. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Enum;
|
|
|
|
enum SyncDirection: string
|
|
{
|
|
case PUSH = 'push'; // only creates and updates records created by Invoice Ninja.
|
|
case PULL = 'pull'; // creates and updates record from QB.
|
|
case BIDIRECTIONAL = 'bidirectional'; // creates and updates records created by Invoice Ninja and from QB.
|
|
case NONE = 'none'; // no sync.
|
|
}
|