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 B (466 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?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";
}