mirror of
https://github.com/opdavies/gmail-filter-builder.git
synced 2025-09-07 14:05:34 +01:00
18 lines
551 B
PHP
18 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';
|
|
}
|