File "V1OrderState.php"

Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/V1OrderState.php
File size: 329 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

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

class V1OrderState
{
    public const PENDING = 'PENDING';
    public const OPEN = 'OPEN';
    public const COMPLETED = 'COMPLETED';
    public const CANCELED = 'CANCELED';
    public const REFUNDED = 'REFUNDED';
    public const REJECTED = 'REJECTED';
}