?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/demo2/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/



?? Go up: /home/webdevt/www/demo2/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src

?? Viewing: TeamMemberInvitationStatus.php

<?php

declare (strict_types=1);
namespace WPForms\Vendor\Square\Models;

/**
 * Enumerates the possible invitation statuses the team member can have within a business.
 */
class TeamMemberInvitationStatus
{
    /**
     * The team member has not received an invitation.
     */
    public const UNINVITED = 'UNINVITED';
    /**
     * The team member has received an invitation, but had not accepted it.
     */
    public const PENDING = 'PENDING';
    /**
     * The team member has both received and accepted an invitation.
     */
    public const ACCEPTED = 'ACCEPTED';
}


??

??