mirror of
https://github.com/opdavies/gmail-filter-builder.git
synced 2025-09-11 23:20:46 +01:00
19 lines
551 B
PHP
19 lines
551 B
PHP
|
<?php
|
||
|
|
||
|
namespace Opdavies\GmailFilterBuilder\Enum;
|
||
|
|
||
|
class FilterAction
|
||
|
{
|
||
|
const ADD_CATEGORY = 'smartLabelToApply';
|
||
|
const ADD_LABEL = 'label';
|
||
|
const ALWAYS_MARK_AS_IMPORTANT = 'shouldAlwaysMarkAsImportant';
|
||
|
const ARCHIVE = 'shouldArchive';
|
||
|
const FORWARD_TO = 'forwardTo';
|
||
|
const MARK_AS_READ = 'markAsRead';
|
||
|
const MARK_AS_SPAM = 'shouldSpam';
|
||
|
const NEVER_MARK_AS_IMPORTANT = 'shouldNeverMarkAsImportant';
|
||
|
const NEVER_MARK_AS_SPAM = 'shouldNeverSpam';
|
||
|
const STAR = 'shouldStar';
|
||
|
const TRASH = 'shouldTrash';
|
||
|
}
|