├── CONTRIBUTING.md └── src ├── Admin ├── Struct │ ├── SimpleElement.php │ ├── DomainInfo.php │ ├── ServerInfo.php │ ├── UCServiceInfo.php │ ├── NetworkInformation.php │ ├── AlwaysOnClusterInfo.php │ ├── Attr.php │ ├── CalendarResourceInfo.php │ ├── AdminAttrs.php │ └── AdminObjectInterface.php └── Message │ ├── NoOpResponse.php │ ├── PingResponse.php │ ├── DeleteCosResponse.php │ ├── GetOutgoingFilterRulesResponse.php │ ├── ClearCookieResponse.php │ ├── FlushCacheResponse.php │ ├── GrantRightResponse.php │ ├── RevokeRightResponse.php │ ├── DeleteDomainResponse.php │ ├── DeleteServerResponse.php │ ├── DeleteVolumeResponse.php │ ├── DeleteZimletResponse.php │ ├── ModifyConfigResponse.php │ ├── ModifyVolumeResponse.php │ ├── ModifyZimletResponse.php │ ├── PushFreeBusyResponse.php │ ├── ConfigureZimletResponse.php │ ├── DeleteAccountResponse.php │ ├── FixCalendarTZResponse.php │ ├── LockoutMailboxResponse.php │ ├── MailQueueFlushResponse.php │ ├── MigrateAccountResponse.php │ ├── SyncGalAccountResponse.php │ ├── UndeployZimletResponse.php │ ├── AddAccountAliasResponse.php │ ├── DeleteDataSourceResponse.php │ ├── DeleteLDAPEntryResponse.php │ ├── DeleteUCServiceResponse.php │ ├── MailQueueActionResponse.php │ ├── ModifyDataSourceResponse.php │ ├── ResetAllLoggersResponse.php │ ├── SetServerOfflineResponse.php │ ├── ModifyFilterRulesResponse.php │ ├── ReloadLocalConfigResponse.php │ ├── DeleteXMPPComponentResponse.php │ ├── FixCalendarEndTimeResponse.php │ ├── FixCalendarPriorityResponse.php │ ├── PurgeFreeBusyQueueResponse.php │ ├── RemoveAccountAliasResponse.php │ ├── RemoveAccountLoggerResponse.php │ ├── CheckPasswordStrengthResponse.php │ ├── DeleteAlwaysOnClusterResponse.php │ ├── DeleteGalSyncAccountResponse.php │ ├── ExportAndDeleteItemsResponse.php │ ├── ResetAccountPasswordResponse.php │ ├── SetLocalServerOnlineResponse.php │ ├── DeleteCalendarResourceResponse.php │ ├── DeleteDistributionListResponse.php │ ├── AddDistributionListAliasResponse.php │ ├── ModifyAdminSavedSearchesResponse.php │ ├── AddDistributionListMemberResponse.php │ ├── ModifyOutgoingFilterRulesResponse.php │ ├── PurgeAccountCalendarCacheResponse.php │ ├── DeleteSystemRetentionPolicyResponse.php │ ├── RefreshRegisteredAuthTokensResponse.php │ ├── ReloadMemcachedClientConfigResponse.php │ ├── RemoveDistributionListAliasResponse.php │ ├── RemoveDistributionListMemberResponse.php │ └── ModifyDelegatedAdminConstraintsResponse.php ├── Mail ├── Struct │ ├── BulkTest.php │ ├── DocIdsAttr.php │ ├── ListTest.php │ ├── MsgIdsAttr.php │ ├── TagIdsAttr.php │ ├── TrueTest.php │ ├── ApptIdsAttr.php │ ├── ChatIdsAttr.php │ ├── ChatSummary.php │ ├── ConvIdsAttr.php │ ├── KeepAction.php │ ├── MountIdsAttr.php │ ├── NoteIdsAttr.php │ ├── StopAction.php │ ├── TaskIdsAttr.php │ ├── TwitterTest.php │ ├── WikiIdsAttr.php │ ├── ChatHitInfo.php │ ├── EnvelopeTest.php │ ├── FacebookTest.php │ ├── FolderIdsAttr.php │ ├── LinkedInTest.php │ ├── TaskItemInfo.php │ ├── AttachmentTest.php │ ├── ChatMessageInfo.php │ ├── ContactIdsAttr.php │ ├── DiscardAction.php │ ├── ErejectAction.php │ ├── SocialcastTest.php │ ├── TaskHitInfo.php │ ├── FreeBusyBUSYslot.php │ ├── FreeBusyFREEslot.php │ ├── LegacyTaskData.php │ ├── ShareNotification.php │ ├── CancelItemRecur.php │ ├── InviteItemRecur.php │ ├── SnoozeTaskAlarm.php │ ├── CalImportStatusInfo.php │ ├── DataSourceNameOrId.php │ ├── DismissTaskAlarm.php │ ├── FreeBusyNODATAslot.php │ ├── GalImportStatusInfo.php │ ├── RssImportStatusInfo.php │ ├── SearchFolderIdsAttr.php │ ├── YabImportStatusInfo.php │ ├── AppointmentHitInfo.php │ ├── CommunityContentTest.php │ ├── CommunityRequestsTest.php │ ├── ExceptionItemRecur.php │ ├── ImapImportStatusInfo.php │ ├── Pop3ImportStatusInfo.php │ ├── CaldavImportStatusInfo.php │ ├── LegacyAppointmentData.php │ ├── UnknownImportStatusInfo.php │ ├── CalDataSourceId.php │ ├── CommunityConnectionsTest.php │ ├── DLSubscriptionNotification.php │ ├── GalDataSourceId.php │ ├── ImapDataSourceId.php │ ├── Pop3DataSourceId.php │ ├── RssDataSourceId.php │ ├── SnoozeAppointmentAlarm.php │ ├── UpdatedTaskAlarmInfo.php │ ├── YabDataSourceId.php │ ├── CalDataSourceNameOrId.php │ ├── CaldavDataSourceId.php │ ├── DismissAppointmentAlarm.php │ ├── FreeBusyBUSYTENTATIVEslot.php │ ├── GalDataSourceNameOrId.php │ ├── ImapDataSourceNameOrId.php │ ├── Pop3DataSourceNameOrId.php │ ├── RssDataSourceNameOrId.php │ ├── YabDataSourceNameOrId.php │ ├── CaldavDataSourceNameOrId.php │ ├── FreeBusyBUSYUNAVAILABLEslot.php │ ├── OAuthDataSourceNameOrId.php │ ├── UnknownDataSourceId.php │ ├── UnknownDataSourceNameOrId.php │ ├── UpdatedAppointmentAlarmInfo.php │ ├── RecurRuleBase.php │ ├── ExpandedRecurrenceCancel.php │ ├── ExpandedRecurrenceInvite.php │ ├── ExpandedRecurrenceException.php │ ├── MailGalDataSource.php │ ├── MailYabDataSource.php │ ├── MailCalDataSource.php │ ├── MailRssDataSource.php │ ├── MailCaldavDataSource.php │ ├── MailUnknownDataSource.php │ ├── AddRecurrenceInfo.php │ └── CancelRuleInfo.php └── Message │ ├── GetTaskResponse.php │ ├── SetTaskResponse.php │ ├── CancelTaskResponse.php │ ├── AddTaskInviteResponse.php │ ├── GrantPermissionResponse.php │ ├── GetTaskSummariesResponse.php │ ├── RevokePermissionResponse.php │ ├── GetOutgoingFilterRulesResponse.php │ ├── BounceMsgResponse.php │ ├── ICalReplyResponse.php │ ├── ImportDataResponse.php │ ├── ApplyOutgoingFilterRulesResponse.php │ ├── GetCalendarItemSummariesResponse.php │ ├── SearchActionResponse.php │ ├── EmptyDumpsterResponse.php │ ├── PurgeRevisionResponse.php │ ├── RankingActionResponse.php │ ├── SnoozeCalendarItemAlarmResponse.php │ ├── RestoreContactsResponse.php │ ├── BeginTrackingIMAPResponse.php │ ├── CancelAppointmentResponse.php │ ├── DeleteDataSourceResponse.php │ ├── ModifyDataSourceResponse.php │ ├── ModifyFilterRulesResponse.php │ ├── ModifyTaskResponse.php │ ├── CounterAppointmentResponse.php │ ├── ForwardAppointmentResponse.php │ ├── SendDeliveryReportResponse.php │ ├── SetMailboxMetadataResponse.php │ ├── SetRecoveryAccountResponse.php │ ├── EnableSharedReminderResponse.php │ ├── SendVerificationCodeResponse.php │ ├── ModifyMailboxMetadataResponse.php │ ├── SaveIMAPSubscriptionsResponse.php │ ├── SendShareNotificationResponse.php │ ├── AnnounceOrganizerChangeResponse.php │ ├── CompleteTaskInstanceResponse.php │ ├── ResetRecentMessageCountResponse.php │ ├── DeclineCounterAppointmentResponse.php │ ├── ForwardAppointmentInviteResponse.php │ ├── InvalidateReminderDeviceResponse.php │ ├── ModifyOutgoingFilterRulesResponse.php │ ├── CreateTaskResponse.php │ └── SendInviteReplyResponse.php ├── Account ├── Struct │ ├── WhiteList.php │ ├── AccountGalDataSource.php │ ├── AccountYabDataSource.php │ ├── AccountCaldavDataSource.php │ ├── AccountUnknownDataSource.php │ ├── Attrs.php │ ├── AccountCalDataSource.php │ ├── AccountRssDataSource.php │ ├── AccountImapDataSource.php │ └── AccountContactsDataSource.php └── Message │ ├── EndSessionResponse.php │ ├── ModifyPrefsResponse.php │ ├── DeleteIdentityResponse.php │ ├── ModifyIdentityResponse.php │ ├── DeleteSignatureResponse.php │ ├── ModifySignatureResponse.php │ ├── ModifyPropertiesResponse.php │ ├── RevokeOAuthConsumerResponse.php │ ├── ModifyWhiteBlackListResponse.php │ └── DistributionListActionResponse.php └── Common ├── Struct ├── CalDataSource.php ├── RssDataSource.php ├── ImapDataSource.php ├── CancelRuleInfoInterface.php ├── RecurRuleBaseInterface.php ├── ContactsDataSource.php ├── NumAttrInterface.php ├── DateAttrInterface.php ├── ExcludeRecurrenceInfoInterface.php ├── ByHourRuleInterface.php ├── ByMonthRuleInterface.php ├── IntervalRuleInterface.php ├── ByMinuteRuleInterface.php ├── BySecondRuleInterface.php ├── BySetPosRuleInterface.php ├── ByWeekNoRuleInterface.php ├── ByYearDayRuleInterface.php ├── SoapResponseInterface.php ├── AddRecurrenceInfoInterface.php ├── ByMonthDayRuleInterface.php ├── XParamInterface.php ├── DateTimeStringAttrInterface.php ├── ZimletTarget.php ├── SoapResponse.php ├── ZimletInclude.php ├── GeoInfoInterface.php ├── WkstRuleInterface.php ├── XNameRuleInterface.php ├── ZimletIncludeCSS.php ├── LocaleInterface.php ├── Pop3DataSource.php ├── ByDayRuleInterface.php ├── SearchHit.php └── RecurrenceInfoInterface.php └── Enum └── Channel.php /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Thanks for contributing to this project. 2 | 3 | **Please submit your pull request against the `master` branch only.** 4 | 5 | Please ensure that you run `phpunit` from the project root after you've made any changes. 6 | 7 | If you've added something new please create a new unit test, if you've changed something please update any unit tests as appropritate. 8 | 9 | We're trying to ensure there is **100%** test code coverage (including testing PHP errors and exceptions) so please ensure any new/updated tests cover all of your changes. 10 | 11 | Thank you, 12 | -------------------------------------------------------------------------------- /src/Admin/Struct/SimpleElement.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Struct; 12 | 13 | /** 14 | * SimpleElement struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Admin 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class SimpleElement 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/BulkTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * BulkTest struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class BulkTest extends FilterTest 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/DocIdsAttr.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * DocIdsAttr struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class DocIdsAttr extends IdsAttr 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/ListTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * ListTest struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class ListTest extends FilterTest 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/MsgIdsAttr.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * MsgIdsAttr struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class MsgIdsAttr extends IdsAttr 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/TagIdsAttr.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * TagIdsAttr struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class TagIdsAttr extends IdsAttr 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/TrueTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * TrueTest struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class TrueTest extends FilterTest 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/ApptIdsAttr.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * ApptIdsAttr struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class ApptIdsAttr extends IdsAttr 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/ChatIdsAttr.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * ChatIdsAttr struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class ChatIdsAttr extends IdsAttr 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/ChatSummary.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * ChatSummary class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class ChatSummary extends MessageSummary 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/ConvIdsAttr.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * ConvIdsAttr struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class ConvIdsAttr extends IdsAttr 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/KeepAction.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * KeepAction struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class KeepAction extends FilterAction 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/MountIdsAttr.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * MountIdsAttr struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class MountIdsAttr extends IdsAttr 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/NoteIdsAttr.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * NoteIdsAttr struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class NoteIdsAttr extends IdsAttr 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/StopAction.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * StopAction struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class StopAction extends FilterAction 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/TaskIdsAttr.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * TaskIdsAttr struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class TaskIdsAttr extends IdsAttr 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/TwitterTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * TwitterTest struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class TwitterTest extends FilterTest 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/WikiIdsAttr.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * WikiIdsAttr struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class WikiIdsAttr extends IdsAttr 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Account/Struct/WhiteList.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Struct; 12 | 13 | /** 14 | * WhiteList struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Account 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class WhiteList extends BlackList 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/ChatHitInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * ChatHitInfo struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class ChatHitInfo extends MessageHitInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/EnvelopeTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * EnvelopeTest struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class EnvelopeTest extends AddressTest 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/FacebookTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * FacebookTest struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class FacebookTest extends FilterTest 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/FolderIdsAttr.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * FolderIdsAttr struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class FolderIdsAttr extends IdsAttr 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/LinkedInTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * LinkedInTest struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class LinkedInTest extends FilterTest 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/TaskItemInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * TaskItemInfo class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class TaskItemInfo extends CalendarItemInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Admin/Struct/DomainInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Struct; 12 | 13 | /** 14 | * DomainInfo struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Admin 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present name Nguyen Van Nguyen. 21 | */ 22 | class DomainInfo extends AdminObjectInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Admin/Struct/ServerInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Struct; 12 | 13 | /** 14 | * ServerInfo struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Admin 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class ServerInfo extends AdminObjectInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/AttachmentTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * AttachmentTest struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class AttachmentTest extends FilterTest 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/ChatMessageInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * ChatMessageInfo class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class ChatMessageInfo extends MessageInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/ContactIdsAttr.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * ContactIdsAttr struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class ContactIdsAttr extends IdsAttr 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/DiscardAction.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * DiscardAction struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class DiscardAction extends FilterAction 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/ErejectAction.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * ErejectAction struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class ErejectAction extends RejectAction 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/SocialcastTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * SocialcastTest struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class SocialcastTest extends FilterTest 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/TaskHitInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * TaskHitInfo struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class TaskHitInfo extends CalendarItemHitInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Admin/Struct/UCServiceInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Struct; 12 | 13 | /** 14 | * UCServiceInfo struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Admin 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class UCServiceInfo extends AdminObjectInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Common/Struct/CalDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * CalDataSource interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface CalDataSource extends DataSource 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Common/Struct/RssDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * RssDataSource interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface RssDataSource extends DataSource 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/FreeBusyBUSYslot.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * FreeBusyBUSYslot struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class FreeBusyBUSYslot extends FreeBusySlot 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/FreeBusyFREEslot.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * FreeBusyFREEslot struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class FreeBusyFREEslot extends FreeBusySlot 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/LegacyTaskData.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * LegacyTaskData class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class LegacyTaskData extends LegacyCalendaringData 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/ShareNotification.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * ShareNotification class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class ShareNotification extends Notification 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Common/Struct/ImapDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * ImapDataSource interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface ImapDataSource extends DataSource 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Message/GetTaskResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | /** 14 | * GetTaskResponse class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Message 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class GetTaskResponse extends GetAppointmentResponse 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Message/SetTaskResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | /** 14 | * SetTaskResponse class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Message 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class SetTaskResponse extends SetAppointmentResponse 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/CancelItemRecur.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * CancelItemRecur struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class CancelItemRecur extends CalendarItemRecur 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/InviteItemRecur.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * InviteItemRecur struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class InviteItemRecur extends CalendarItemRecur 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/SnoozeTaskAlarm.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * SnoozeTaskAlarm struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class SnoozeTaskAlarm extends SnoozeAlarm 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Common/Struct/CancelRuleInfoInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * CancelRuleInfoInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface CancelRuleInfoInterface 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Common/Struct/RecurRuleBaseInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * RecurRuleBaseInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface RecurRuleBaseInterface 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/CalImportStatusInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * CalImportStatusInfo class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class CalImportStatusInfo extends ImportStatusInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/DataSourceNameOrId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * DataSourceNameOrId struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class DataSourceNameOrId extends NameOrId 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/DismissTaskAlarm.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * DismissTaskAlarm struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class DismissTaskAlarm extends DismissAlarm 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/FreeBusyNODATAslot.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * FreeBusyNODATAslot struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class FreeBusyNODATAslot extends FreeBusySlot 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/GalImportStatusInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * GalImportStatusInfo class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class GalImportStatusInfo extends ImportStatusInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/RssImportStatusInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * RssImportStatusInfo class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class RssImportStatusInfo extends ImportStatusInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/SearchFolderIdsAttr.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * SearchFolderIdsAttr struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class SearchFolderIdsAttr extends IdsAttr 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/YabImportStatusInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * YabImportStatusInfo class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class YabImportStatusInfo extends ImportStatusInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Admin/Struct/NetworkInformation.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Struct; 12 | 13 | /** 14 | * NetworkInformation struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Admin 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class NetworkInformation extends AdminAttrsImpl 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Common/Struct/ContactsDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * ContactsDataSource interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface ContactsDataSource extends DataSource 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/AppointmentHitInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * AppointmentHitInfo struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class AppointmentHitInfo extends CalendarItemHitInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/CommunityContentTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * CommunityContentTest struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class CommunityContentTest extends FilterTest 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/CommunityRequestsTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * CommunityRequestsTest struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class CommunityRequestsTest extends FilterTest 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/ExceptionItemRecur.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * ExceptionItemRecur struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class ExceptionItemRecur extends CalendarItemRecur 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/ImapImportStatusInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * ImapImportStatusInfo class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class ImapImportStatusInfo extends ImportStatusInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/Pop3ImportStatusInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * Pop3ImportStatusInfo class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class Pop3ImportStatusInfo extends ImportStatusInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Admin/Struct/AlwaysOnClusterInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Struct; 12 | 13 | /** 14 | * AlwaysOnClusterInfo struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Admin 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class AlwaysOnClusterInfo extends AdminObjectInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Admin/Struct/Attr.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Struct; 12 | 13 | use Zimbra\Common\Struct\KeyValuePair; 14 | 15 | /** 16 | * Attr struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class Attr extends KeyValuePair 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Struct/CalendarResourceInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Struct; 12 | 13 | /** 14 | * CalendarResourceInfo struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Admin 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class CalendarResourceInfo extends AdminObjectInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Message/CancelTaskResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | /** 14 | * CancelTaskResponse class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Message 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class CancelTaskResponse extends CancelAppointmentResponse 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/CaldavImportStatusInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * CaldavImportStatusInfo class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class CaldavImportStatusInfo extends ImportStatusInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/LegacyAppointmentData.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * LegacyAppointmentData class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class LegacyAppointmentData extends LegacyCalendaringData 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/UnknownImportStatusInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * UnknownImportStatusInfo class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class UnknownImportStatusInfo extends ImportStatusInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Common/Struct/NumAttrInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * NumAttrInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface NumAttrInterface 23 | { 24 | function getNum(): ?int; 25 | } 26 | -------------------------------------------------------------------------------- /src/Mail/Struct/CalDataSourceId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | use Zimbra\Common\Struct\Id; 14 | 15 | /** 16 | * CalDataSourceId struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020 by Nguyen Van Nguyen. 23 | */ 24 | class CalDataSourceId extends Id 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Struct/CommunityConnectionsTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * CommunityConnectionsTest struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class CommunityConnectionsTest extends FilterTest 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/DLSubscriptionNotification.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * DLSubscriptionNotification class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class DLSubscriptionNotification extends Notification 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/GalDataSourceId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | use Zimbra\Common\Struct\Id; 14 | 15 | /** 16 | * GalDataSourceId struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020 by Nguyen Van Nguyen. 23 | */ 24 | class GalDataSourceId extends Id 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Struct/ImapDataSourceId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | use Zimbra\Common\Struct\Id; 14 | 15 | /** 16 | * ImapDataSourceId struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020 by Nguyen Van Nguyen. 23 | */ 24 | class ImapDataSourceId extends Id 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Struct/Pop3DataSourceId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | use Zimbra\Common\Struct\Id; 14 | 15 | /** 16 | * Pop3DataSourceId struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020 by Nguyen Van Nguyen. 23 | */ 24 | class Pop3DataSourceId extends Id 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Struct/RssDataSourceId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | use Zimbra\Common\Struct\Id; 14 | 15 | /** 16 | * RssDataSourceId struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020 by Nguyen Van Nguyen. 23 | */ 24 | class RssDataSourceId extends Id 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Struct/SnoozeAppointmentAlarm.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * SnoozeAppointmentAlarm struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class SnoozeAppointmentAlarm extends SnoozeAlarm 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/UpdatedTaskAlarmInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * UpdatedTaskAlarmInfo struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class UpdatedTaskAlarmInfo extends UpdatedAlarmInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/YabDataSourceId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | use Zimbra\Common\Struct\Id; 14 | 15 | /** 16 | * YabDataSourceId struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020 by Nguyen Van Nguyen. 23 | */ 24 | class YabDataSourceId extends Id 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Account/Struct/AccountGalDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Struct; 12 | 13 | /** 14 | * AccountGalDataSource struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Account 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class AccountGalDataSource extends AccountDataSource 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Account/Struct/AccountYabDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Struct; 12 | 13 | /** 14 | * AccountYabDataSource struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Account 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class AccountYabDataSource extends AccountDataSource 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Common/Struct/DateAttrInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * DateAttrInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface DateAttrInterface 23 | { 24 | function getDate(): string; 25 | } 26 | -------------------------------------------------------------------------------- /src/Common/Struct/ExcludeRecurrenceInfoInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * ExcludeRecurrenceInfoInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface ExcludeRecurrenceInfoInterface 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Message/AddTaskInviteResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | /** 14 | * AddTaskInviteResponse class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Message 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class AddTaskInviteResponse extends AddAppointmentInviteResponse 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Message/GrantPermissionResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | /** 14 | * GrantPermissionResponse class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Message 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class GrantPermissionResponse extends GetPermissionResponse 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/CalDataSourceNameOrId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * CalDataSourceNameOrId struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class CalDataSourceNameOrId extends DataSourceNameOrId 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/CaldavDataSourceId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | use Zimbra\Common\Struct\Id; 14 | 15 | /** 16 | * CaldavDataSourceId struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020 by Nguyen Van Nguyen. 23 | */ 24 | class CaldavDataSourceId extends Id 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Struct/DismissAppointmentAlarm.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * DismissAppointmentAlarm struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class DismissAppointmentAlarm extends DismissAlarm 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/FreeBusyBUSYTENTATIVEslot.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * FreeBusyBUSYTENTATIVEslot struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class FreeBusyBUSYTENTATIVEslot extends FreeBusySlot 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/GalDataSourceNameOrId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * GalDataSourceNameOrId struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class GalDataSourceNameOrId extends DataSourceNameOrId 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/ImapDataSourceNameOrId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * ImapDataSourceNameOrId struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class ImapDataSourceNameOrId extends DataSourceNameOrId 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/Pop3DataSourceNameOrId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * Pop3DataSourceNameOrId struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class Pop3DataSourceNameOrId extends DataSourceNameOrId 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/RssDataSourceNameOrId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * RssDataSourceNameOrId struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class RssDataSourceNameOrId extends DataSourceNameOrId 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/YabDataSourceNameOrId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * YabDataSourceNameOrId struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class YabDataSourceNameOrId extends DataSourceNameOrId 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Common/Struct/ByHourRuleInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * ByHourRuleInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface ByHourRuleInterface 23 | { 24 | function getList(): ?string; 25 | } 26 | -------------------------------------------------------------------------------- /src/Mail/Message/GetTaskSummariesResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | /** 14 | * GetTaskSummariesResponse class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Message 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyentry © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class GetTaskSummariesResponse extends GetApptSummariesResponse 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Message/RevokePermissionResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | /** 14 | * RevokePermissionResponse class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Message 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class RevokePermissionResponse extends GetPermissionResponse 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/CaldavDataSourceNameOrId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * CaldavDataSourceNameOrId struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class CaldavDataSourceNameOrId extends DataSourceNameOrId 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/FreeBusyBUSYUNAVAILABLEslot.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * FreeBusyBUSYUNAVAILABLEslot struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class FreeBusyBUSYUNAVAILABLEslot extends FreeBusySlot 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/OAuthDataSourceNameOrId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * OAuthDataSourceNameOrId struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class OAuthDataSourceNameOrId extends DataSourceNameOrId 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/UnknownDataSourceId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | use Zimbra\Common\Struct\Id; 14 | 15 | /** 16 | * UnknownDataSourceId struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020 by Nguyen Van Nguyen. 23 | */ 24 | class UnknownDataSourceId extends Id 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Account/Struct/AccountCaldavDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Struct; 12 | 13 | /** 14 | * AccountCaldavDataSource struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Account 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class AccountCaldavDataSource extends AccountDataSource 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Account/Struct/AccountUnknownDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Struct; 12 | 13 | /** 14 | * AccountUnknownDataSource struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Account 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class AccountUnknownDataSource extends AccountDataSource 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Admin/Message/NoOpResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * NoOpResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class NoOpResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/PingResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * PingResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class PingResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Common/Struct/ByMonthRuleInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * ByMonthRuleInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface ByMonthRuleInterface 23 | { 24 | function getList(): ?string; 25 | } 26 | -------------------------------------------------------------------------------- /src/Common/Struct/IntervalRuleInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * IntervalRuleInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface IntervalRuleInterface 23 | { 24 | function getIval(): int; 25 | } 26 | -------------------------------------------------------------------------------- /src/Mail/Struct/UnknownDataSourceNameOrId.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * UnknownDataSourceNameOrId struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class UnknownDataSourceNameOrId extends DataSourceNameOrId 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Common/Struct/ByMinuteRuleInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * ByMinuteRuleInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface ByMinuteRuleInterface 23 | { 24 | function getList(): ?string; 25 | } 26 | -------------------------------------------------------------------------------- /src/Common/Struct/BySecondRuleInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * BySecondRuleInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface BySecondRuleInterface 23 | { 24 | function getList(): ?string; 25 | } 26 | -------------------------------------------------------------------------------- /src/Common/Struct/BySetPosRuleInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * BySetPosRuleInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface BySetPosRuleInterface 23 | { 24 | function getList(): ?string; 25 | } 26 | -------------------------------------------------------------------------------- /src/Common/Struct/ByWeekNoRuleInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * ByWeekNoRuleInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface ByWeekNoRuleInterface 23 | { 24 | function getList(): ?string; 25 | } 26 | -------------------------------------------------------------------------------- /src/Common/Struct/ByYearDayRuleInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * ByYearDayRuleInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface ByYearDayRuleInterface 23 | { 24 | function getList(): ?string; 25 | } 26 | -------------------------------------------------------------------------------- /src/Common/Struct/SoapResponseInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * SoapResponseInterface is a interface which define soap response struct 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface SoapResponseInterface 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Common/Struct/AddRecurrenceInfoInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * AddRecurrenceInfoInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface AddRecurrenceInfoInterface extends RecurrenceInfoInterface 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Common/Struct/ByMonthDayRuleInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * ByMonthDayRuleInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface ByMonthDayRuleInterface 23 | { 24 | function getList(): ?string; 25 | } 26 | -------------------------------------------------------------------------------- /src/Mail/Message/GetOutgoingFilterRulesResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | /** 14 | * GetOutgoingFilterRulesResponse class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Message 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class GetOutgoingFilterRulesResponse extends GetFilterRulesResponse 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/UpdatedAppointmentAlarmInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * UpdatedAppointmentAlarmInfo struct class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class UpdatedAppointmentAlarmInfo extends UpdatedAlarmInfo 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Admin/Message/DeleteCosResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteCosResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteCosResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/GetOutgoingFilterRulesResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | /** 14 | * GetOutgoingFilterRulesResponse class 15 | * 16 | * @package Zimbra 17 | * @subpackage Admin 18 | * @category Message 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class GetOutgoingFilterRulesResponse extends GetFilterRulesResponse 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Message/BounceMsgResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * BounceMsgResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class BounceMsgResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/ICalReplyResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ICalReplyResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ICalReplyResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/ImportDataResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ImportDataResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ImportDataResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/ClearCookieResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ClearCookieResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ClearCookieResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/FlushCacheResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * FlushCacheResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class FlushCacheResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/GrantRightResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * GrantRightResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class GrantRightResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/RevokeRightResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * RevokeRightResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class RevokeRightResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Common/Struct/XParamInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * XParamInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface XParamInterface 23 | { 24 | function getName(): string; 25 | function getValue(): string; 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/ApplyOutgoingFilterRulesResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | /** 14 | * ApplyOutgoingFilterRulesResponse class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Message 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class ApplyOutgoingFilterRulesResponse extends ApplyFilterRulesResponse 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Message/GetCalendarItemSummariesResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | /** 14 | * GetCalendarItemSummariesResponse class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Message 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyentry © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class GetCalendarItemSummariesResponse extends GetApptSummariesResponse 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Message/SearchActionResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * SearchActionResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class SearchActionResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Account/Message/EndSessionResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * EndSessionResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Account 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class EndSessionResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/DeleteDomainResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteDomainResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteDomainResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/DeleteServerResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteServerResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteServerResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/DeleteVolumeResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteVolumeResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteVolumeResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/DeleteZimletResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteZimletResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteZimletResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/ModifyConfigResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ModifyConfigResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ModifyConfigResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/ModifyVolumeResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ModifyVolumeResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ModifyVolumeResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/ModifyZimletResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ModifyZimletResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ModifyZimletResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/PushFreeBusyResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * PushFreeBusyResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class PushFreeBusyResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Common/Struct/DateTimeStringAttrInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * DateTimeStringAttrInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface DateTimeStringAttrInterface 23 | { 24 | function getDateTime(): string; 25 | } 26 | -------------------------------------------------------------------------------- /src/Common/Struct/ZimletTarget.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * ZimletTarget interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface ZimletTarget 23 | { 24 | function setValue(string $value): self; 25 | function getValue(): ?string; 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/EmptyDumpsterResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * EmptyDumpsterResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class EmptyDumpsterResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/PurgeRevisionResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * PurgeRevisionResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class PurgeRevisionResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/RankingActionResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * RankingActionResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class RankingActionResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/SnoozeCalendarItemAlarmResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | /** 14 | * SnoozeCalendarItemAlarmResponse class 15 | * 16 | * @package Zimbra 17 | * @subpackage Mail 18 | * @category Message 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | class SnoozeCalendarItemAlarmResponse extends DismissCalendarItemAlarmResponse 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /src/Mail/Struct/RecurRuleBase.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | use Zimbra\Common\Struct\RecurRuleBaseInterface; 14 | 15 | /** 16 | * RecurRuleBase interface 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | interface RecurRuleBase extends RecurRuleBaseInterface 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Account/Message/ModifyPrefsResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ModifyPrefsResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Account 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ModifyPrefsResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/ConfigureZimletResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ConfigureZimletResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van 2020 - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ConfigureZimletResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/DeleteAccountResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteAccountResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteAccountResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/FixCalendarTZResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * FixCalendarTZResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class FixCalendarTZResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/LockoutMailboxResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * LockoutMailboxResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class LockoutMailboxResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/MailQueueFlushResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * MailQueueFlushResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class MailQueueFlushResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/MigrateAccountResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * MigrateAccountResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class MigrateAccountResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/SyncGalAccountResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * SyncGalAccountResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class SyncGalAccountResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/UndeployZimletResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * UndeployZimletResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class UndeployZimletResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Common/Struct/SoapResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * Soap response class, not to be instantiated. 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | abstract class SoapResponse implements SoapResponseInterface 23 | { 24 | use WithRequestIdTrait; 25 | } 26 | -------------------------------------------------------------------------------- /src/Common/Struct/ZimletInclude.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * ZimletInclude interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface ZimletInclude 23 | { 24 | function setValue(string $value): self; 25 | function getValue(): ?string; 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/RestoreContactsResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * RestoreContactsResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class RestoreContactsResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Struct/ExpandedRecurrenceCancel.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * ExpandedRecurrenceCancel class 15 | * Cancel expanded recurrence 16 | * 17 | * @package Zimbra 18 | * @subpackage Mail 19 | * @category Struct 20 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 21 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 22 | */ 23 | class ExpandedRecurrenceCancel extends ExpandedRecurrenceComponent 24 | { 25 | } 26 | -------------------------------------------------------------------------------- /src/Mail/Struct/ExpandedRecurrenceInvite.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * ExpandedRecurrenceInvite class 15 | * Comp expanded recurrence 16 | * 17 | * @package Zimbra 18 | * @subpackage Mail 19 | * @category Struct 20 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 21 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 22 | */ 23 | class ExpandedRecurrenceInvite extends ExpandedRecurrenceComponent 24 | { 25 | } 26 | -------------------------------------------------------------------------------- /src/Account/Message/DeleteIdentityResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteIdentityResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Account 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteIdentityResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Account/Message/ModifyIdentityResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ModifyIdentityResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Account 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ModifyIdentityResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/AddAccountAliasResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * AddAccountAliasResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class AddAccountAliasResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/DeleteDataSourceResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteDataSourceResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteDataSourceResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/DeleteLDAPEntryResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteLDAPEntryResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteLDAPEntryResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/DeleteUCServiceResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteUCServiceResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteUCServiceResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/MailQueueActionResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * MailQueueActionResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class MailQueueActionResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/ModifyDataSourceResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ModifyDataSourceResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ModifyDataSourceResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/ResetAllLoggersResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ResetAllLoggersResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ResetAllLoggersResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/SetServerOfflineResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * SetServerOfflineResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class SetServerOfflineResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Common/Struct/GeoInfoInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * GeoInfoInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface GeoInfoInterface 23 | { 24 | function getLatitude(): ?string; 25 | function getLongitude(): ?string; 26 | } 27 | -------------------------------------------------------------------------------- /src/Common/Struct/WkstRuleInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | use Zimbra\Common\Enum\WeekDay; 14 | 15 | /** 16 | * WkstRuleInterface interface 17 | * 18 | * @package Zimbra 19 | * @subpackage Common 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | interface WkstRuleInterface 25 | { 26 | function getDay(): ?WeekDay; 27 | } 28 | -------------------------------------------------------------------------------- /src/Common/Struct/XNameRuleInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * XNameRuleInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface XNameRuleInterface 23 | { 24 | function getName(): ?string; 25 | function getValue(): ?string; 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/BeginTrackingIMAPResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * BeginTrackingIMAPResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class BeginTrackingIMAPResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/CancelAppointmentResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * CancelAppointmentResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class CancelAppointmentResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/DeleteDataSourceResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteDataSourceResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteDataSourceResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/ModifyDataSourceResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ModifyDataSourceResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ModifyDataSourceResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/ModifyFilterRulesResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ModifyFilterRulesResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ModifyFilterRulesResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/ModifyTaskResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | /** 14 | * ModifyTaskResponse class 15 | * Contains response information for modify task 16 | * 17 | * @package Zimbra 18 | * @subpackage Mail 19 | * @category Message 20 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 21 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 22 | */ 23 | class ModifyTaskResponse extends ModifyAppointmentResponse 24 | { 25 | } 26 | -------------------------------------------------------------------------------- /src/Account/Message/DeleteSignatureResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteSignatureResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Account 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteSignatureResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Account/Message/ModifySignatureResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ModifySignatureResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Account 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ModifySignatureResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/ModifyFilterRulesResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ModifyFilterRulesResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ModifyFilterRulesResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/ReloadLocalConfigResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ReloadLocalConfigResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ReloadLocalConfigResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Common/Struct/ZimletIncludeCSS.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * ZimletIncludeCSS interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface ZimletIncludeCSS 23 | { 24 | function setValue(string $value): self; 25 | function getValue(): ?string; 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/CounterAppointmentResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * CounterAppointmentResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class CounterAppointmentResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/ForwardAppointmentResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ForwardAppointmentResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ForwardAppointmentResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/SendDeliveryReportResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * SendDeliveryReportResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class SendDeliveryReportResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/SetMailboxMetadataResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * SetMailboxMetadataResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class SetMailboxMetadataResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/SetRecoveryAccountResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * SetRecoveryAccountResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class SetRecoveryAccountResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Struct/ExpandedRecurrenceException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | /** 14 | * ExpandedRecurrenceException class 15 | * Except expanded recurrence 16 | * 17 | * @package Zimbra 18 | * @subpackage Mail 19 | * @category Struct 20 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 21 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 22 | */ 23 | class ExpandedRecurrenceException extends ExpandedRecurrenceComponent 24 | { 25 | } 26 | -------------------------------------------------------------------------------- /src/Mail/Struct/MailGalDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | use Zimbra\Common\Struct\DataSource; 14 | 15 | /** 16 | * MailGalDataSource struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class MailGalDataSource extends MailDataSource implements DataSource 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Struct/MailYabDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | use Zimbra\Common\Struct\DataSource; 14 | 15 | /** 16 | * MailYabDataSource struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class MailYabDataSource extends MailDataSource implements DataSource 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Account/Message/ModifyPropertiesResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ModifyPropertiesResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Account 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ModifyPropertiesResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/DeleteXMPPComponentResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteXMPPComponentResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteXMPPComponentResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/FixCalendarEndTimeResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * FixCalendarEndTimeResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class FixCalendarEndTimeResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/FixCalendarPriorityResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * FixCalendarPriorityResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class FixCalendarPriorityResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/PurgeFreeBusyQueueResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * PurgeFreeBusyQueueResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class PurgeFreeBusyQueueResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/RemoveAccountAliasResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * RemoveAccountAliasResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class RemoveAccountAliasResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/RemoveAccountLoggerResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * RemoveAccountLoggerResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class RemoveAccountLoggerResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/EnableSharedReminderResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * EnableSharedReminderResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class EnableSharedReminderResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/SendVerificationCodeResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * SendVerificationCodeResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class SendVerificationCodeResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Struct/MailCalDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | use Zimbra\Common\Struct\CalDataSource; 14 | 15 | /** 16 | * MailCalDataSource struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class MailCalDataSource extends MailDataSource implements CalDataSource 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Struct/MailRssDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | use Zimbra\Common\Struct\RssDataSource; 14 | 15 | /** 16 | * MailRssDataSource struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class MailRssDataSource extends MailDataSource implements RssDataSource 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Account/Message/RevokeOAuthConsumerResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * RevokeOAuthConsumerResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Account 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class RevokeOAuthConsumerResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Account/Struct/Attrs.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Struct; 12 | 13 | /** 14 | * Attrs interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Account 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface Attrs 23 | { 24 | function setAttrs(array $attrs): self; 25 | function getAttrs(): array; 26 | function addAttr(Attr $attr): self; 27 | } 28 | -------------------------------------------------------------------------------- /src/Admin/Message/CheckPasswordStrengthResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * CheckPasswordStrengthResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class CheckPasswordStrengthResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/DeleteAlwaysOnClusterResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteAlwaysOnClusterResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteAlwaysOnClusterResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/DeleteGalSyncAccountResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteGalSyncAccountResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteGalSyncAccountResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/ExportAndDeleteItemsResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ExportAndDeleteItemsResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ExportAndDeleteItemsResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/ResetAccountPasswordResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ResetAccountPasswordResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ResetAccountPasswordResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/SetLocalServerOnlineResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * SetLocalServerOnlineResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class SetLocalServerOnlineResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Common/Enum/Channel.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Enum; 12 | 13 | /** 14 | * Channel enum class 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Enum 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | enum Channel: string 23 | { 24 | /** 25 | * Constant for value 'email' 26 | * @return string 'email' 27 | */ 28 | case EMAIL = "email"; 29 | } 30 | -------------------------------------------------------------------------------- /src/Mail/Message/ModifyMailboxMetadataResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ModifyMailboxMetadataResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ModifyMailboxMetadataResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/SaveIMAPSubscriptionsResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * SaveIMAPSubscriptionsResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class SaveIMAPSubscriptionsResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/SendShareNotificationResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * SendShareNotificationResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class SendShareNotificationResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Struct/MailCaldavDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | use Zimbra\Common\Struct\DataSource; 14 | 15 | /** 16 | * MailCaldavDataSource struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class MailCaldavDataSource extends MailDataSource implements DataSource 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Struct/MailUnknownDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | use Zimbra\Common\Struct\DataSource; 14 | 15 | /** 16 | * MailUnknownDataSource struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class MailUnknownDataSource extends MailDataSource implements DataSource 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Account/Message/ModifyWhiteBlackListResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ModifyWhiteBlackListResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Account 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ModifyWhiteBlackListResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/DeleteCalendarResourceResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteCalendarResourceResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteCalendarResourceResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/DeleteDistributionListResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteDistributionListResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteDistributionListResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/AnnounceOrganizerChangeResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * AnnounceOrganizerChangeResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class AnnounceOrganizerChangeResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/CompleteTaskInstanceResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * CompleteTaskInstanceResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright CopymisspelledWord © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class CompleteTaskInstanceResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/ResetRecentMessageCountResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ResetRecentMessageCountResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ResetRecentMessageCountResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Account/Message/DistributionListActionResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DistributionListActionResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Account 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DistributionListActionResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/AddDistributionListAliasResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * AddDistributionListAliasResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class AddDistributionListAliasResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/ModifyAdminSavedSearchesResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ModifyAdminSavedSearchesResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ModifyAdminSavedSearchesResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Struct/AdminAttrs.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Struct; 12 | 13 | /** 14 | * AdminAttrs interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Admin 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface AdminAttrs 23 | { 24 | function setAttrs(array $attrs): self; 25 | function getAttrs(): ?array; 26 | function addAttr(Attr $attr): self; 27 | } 28 | -------------------------------------------------------------------------------- /src/Mail/Message/DeclineCounterAppointmentResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeclineCounterAppointmentResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeclineCounterAppointmentResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/ForwardAppointmentInviteResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ForwardAppointmentInviteResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ForwardAppointmentInviteResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/InvalidateReminderDeviceResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * InvalidateReminderDeviceResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class InvalidateReminderDeviceResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Mail/Message/ModifyOutgoingFilterRulesResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ModifyOutgoingFilterRulesResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ModifyOutgoingFilterRulesResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Account/Struct/AccountCalDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Struct; 12 | 13 | use Zimbra\Common\Struct\CalDataSource; 14 | 15 | /** 16 | * AccountCalDataSource struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Account 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class AccountCalDataSource extends AccountDataSource implements CalDataSource 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Account/Struct/AccountRssDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Struct; 12 | 13 | use Zimbra\Common\Struct\RssDataSource; 14 | 15 | /** 16 | * AccountRssDataSource struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Account 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class AccountRssDataSource extends AccountDataSource implements RssDataSource 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/AddDistributionListMemberResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * AddDistributionListMemberResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class AddDistributionListMemberResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/ModifyOutgoingFilterRulesResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ModifyOutgoingFilterRulesResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ModifyOutgoingFilterRulesResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/PurgeAccountCalendarCacheResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * PurgeAccountCalendarCacheResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class PurgeAccountCalendarCacheResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Common/Struct/LocaleInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * LocaleInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface LocaleInterface 23 | { 24 | function getId(): ?string; 25 | function getName(): ?string; 26 | function getLocalName(): ?string; 27 | } 28 | -------------------------------------------------------------------------------- /src/Account/Struct/AccountImapDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Struct; 12 | 13 | use Zimbra\Common\Struct\ImapDataSource; 14 | 15 | /** 16 | * AccountImapDataSource struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Account 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class AccountImapDataSource extends AccountDataSource implements ImapDataSource 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/DeleteSystemRetentionPolicyResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * DeleteSystemRetentionPolicyResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class DeleteSystemRetentionPolicyResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/RefreshRegisteredAuthTokensResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * RefreshRegisteredAuthTokensResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class RefreshRegisteredAuthTokensResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/ReloadMemcachedClientConfigResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ReloadMemcachedClientConfigResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ReloadMemcachedClientConfigResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Message/RemoveDistributionListAliasResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * RemoveDistributionListAliasResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class RemoveDistributionListAliasResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Admin/Struct/AdminObjectInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Struct; 12 | 13 | /** 14 | * AdminObjectInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Admin 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface AdminObjectInterface 23 | { 24 | function getName(): string; 25 | function getId(): string; 26 | function getAttrList(): array; 27 | } 28 | -------------------------------------------------------------------------------- /src/Admin/Message/RemoveDistributionListMemberResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * RemoveDistributionListMemberResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class RemoveDistributionListMemberResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Common/Struct/Pop3DataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * Pop3DataSource interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface Pop3DataSource extends DataSource 23 | { 24 | function isLeaveOnServer(): ?bool; 25 | 26 | function setLeaveOnServer(bool $leaveOnServer): self; 27 | } 28 | -------------------------------------------------------------------------------- /src/Admin/Message/ModifyDelegatedAdminConstraintsResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Admin\Message; 12 | 13 | use Zimbra\Common\Struct\SoapResponse; 14 | 15 | /** 16 | * ModifyDelegatedAdminConstraintsResponse class 17 | * 18 | * @package Zimbra 19 | * @subpackage Admin 20 | * @category Message 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class ModifyDelegatedAdminConstraintsResponse extends SoapResponse 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /src/Common/Struct/ByDayRuleInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * ByDayRuleInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface ByDayRuleInterface 23 | { 24 | function addDay(WkDayInterface $day): self; 25 | function setDays(array $days): self; 26 | function getDays(): array; 27 | } 28 | -------------------------------------------------------------------------------- /src/Mail/Message/CreateTaskResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Mail\Struct\CreateCalendarItemResponse; 14 | 15 | /** 16 | * CreateTaskResponse class 17 | * Contains response information for create task 18 | * 19 | * @package Zimbra 20 | * @subpackage Mail 21 | * @category Message 22 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 23 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 24 | */ 25 | class CreateTaskResponse extends CreateCalendarItemResponse 26 | { 27 | } 28 | -------------------------------------------------------------------------------- /src/Account/Struct/AccountContactsDataSource.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Account\Struct; 12 | 13 | use Zimbra\Common\Struct\ContactsDataSource; 14 | 15 | /** 16 | * AccountContactsDataSource struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Account 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class AccountContactsDataSource extends AccountDataSource implements 25 | ContactsDataSource 26 | { 27 | } 28 | -------------------------------------------------------------------------------- /src/Mail/Struct/AddRecurrenceInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | use Zimbra\Common\Struct\AddRecurrenceInfoInterface; 14 | 15 | /** 16 | * AddRecurrenceInfo struct class 17 | * 18 | * @package Zimbra 19 | * @subpackage Mail 20 | * @category Struct 21 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 22 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 23 | */ 24 | class AddRecurrenceInfo extends RecurrenceInfo implements 25 | RecurRuleBase, 26 | AddRecurrenceInfoInterface 27 | { 28 | } 29 | -------------------------------------------------------------------------------- /src/Common/Struct/SearchHit.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * SearchHit interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface SearchHit 23 | { 24 | function setId(string $id): self; 25 | function setSortField(string $sortField): self; 26 | function getId(): ?string; 27 | function getSortField(): ?string; 28 | } 29 | -------------------------------------------------------------------------------- /src/Mail/Message/SendInviteReplyResponse.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Message; 12 | 13 | use Zimbra\Mail\Struct\CreateCalendarItemResponse; 14 | 15 | /** 16 | * SendInviteReplyResponse class 17 | * Contains response information for reply to invite 18 | * 19 | * @package Zimbra 20 | * @subpackage Mail 21 | * @category Message 22 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 23 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 24 | */ 25 | class SendInviteReplyResponse extends CreateCalendarItemResponse 26 | { 27 | } 28 | -------------------------------------------------------------------------------- /src/Common/Struct/RecurrenceInfoInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Common\Struct; 12 | 13 | /** 14 | * RecurrenceInfoInterface interface 15 | * 16 | * @package Zimbra 17 | * @subpackage Common 18 | * @category Struct 19 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 20 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 21 | */ 22 | interface RecurrenceInfoInterface 23 | { 24 | function addRule(RecurRuleBaseInterface $rule): self; 25 | function setRules(array $rules): self; 26 | function getRules(): array; 27 | } 28 | -------------------------------------------------------------------------------- /src/Mail/Struct/CancelRuleInfo.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace Zimbra\Mail\Struct; 12 | 13 | use Zimbra\Common\Struct\CancelRuleInfoInterface; 14 | 15 | /** 16 | * CancelRuleInfo struct class 17 | * Cancel rule information 18 | * 19 | * @package Zimbra 20 | * @subpackage Mail 21 | * @category Struct 22 | * @author Nguyen Van Nguyen - nguyennv1981@gmail.com 23 | * @copyright Copyright © 2020-present by Nguyen Van Nguyen. 24 | */ 25 | class CancelRuleInfo extends RecurIdInfo implements 26 | RecurRuleBase, 27 | CancelRuleInfoInterface 28 | { 29 | } 30 | --------------------------------------------------------------------------------