skyverge/wc-plugin-framework

View on GitHub
woocommerce/api/interface-sv-wc-api-response.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * WooCommerce Plugin Framework
 *
 * This source file is subject to the GNU General Public License v3.0
 * that is bundled with this package in the file license.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.gnu.org/licenses/gpl-3.0.html
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@skyverge.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade the plugin to newer
 * versions in the future. If you wish to customize the plugin for your
 * needs please refer to http://www.skyverge.com
 *
 * @package   SkyVerge/WooCommerce/API/Request
 * @author    SkyVerge
 * @copyright Copyright (c) 2013-2024, SkyVerge, Inc.
 * @license   http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License v3.0
 */

namespace SkyVerge\WooCommerce\PluginFramework\v5_12_4;

defined( 'ABSPATH' ) or exit;

if ( ! interface_exists( '\\SkyVerge\\WooCommerce\\PluginFramework\\v5_12_4\\SV_WC_API_Response' ) ) :


/**
 * API Response
 */
interface SV_WC_API_Response {


    /**
     * Returns the string representation of this request
     *
     * @since 2.2.0
     * @return string the request
     */
    public function to_string();


    /**
     * Returns the string representation of this request with any and all
     * sensitive elements masked or removed
     *
     * @since 2.2.0
     * @return string the request, safe for logging/displaying
     */
    public function to_string_safe();

}


endif;