zibios/wrike-php-library

View on GitHub
src/Enum/LegacyEntityTypeEnum.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

/*
 * This file is part of the zibios/wrike-php-library package.
 *
 * (c) Zbigniew Ślązak
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Zibios\WrikePhpLibrary\Enum;

/**
 * Legacy Entity Type Enum.
 */
class LegacyEntityTypeEnum extends AbstractEnum
{
    /**
     * API v2 account.
     */
    public const API_V2_ACCOUNT = 'ApiV2Account';

    /**
     * API v2 user.
     */
    public const API_V2_USER = 'ApiV2User';

    /**
     * API v2 folder.
     */
    public const API_V2_FOLDER = 'ApiV2Folder';

    /**
     * API v2 task.
     */
    public const API_V2_TASK = 'ApiV2Task';

    /**
     * API v2 comment.
     */
    public const API_V2_COMMENT = 'ApiV2Comment';

    /**
     * API v2 attachment.
     */
    public const API_V2_ATTACHMENT = 'ApiV2Attachment';

    /**
     * API v2 timelog entry.
     */
    public const API_V2_TIMELOG = 'ApiV2Timelog';
}