File "RetryOption.php"

Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/apimatic/core-interfaces/src/Http/RetryOption.php
File size: 466 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace WPForms\Vendor\CoreInterfaces\Http;

interface RetryOption
{
    /**
     * To retry request, ignoring httpMethods whitelist.
     */
    const ENABLE_RETRY = "enableRetries";
    /**
     * To disable retries, ignoring httpMethods whitelist.
     */
    const DISABLE_RETRY = "disableRetries";
    /**
     * To use global httpMethods whitelist to determine if request needs retrying.
     */
    const USE_GLOBAL_SETTINGS = "useGlobalSettings";
}