25 lines
523 B
PHP
25 lines
523 B
PHP
<?php
|
|
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
|
|
*
|
|
* This source code is licensed under the license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @package MetaCommerce
|
|
*/
|
|
|
|
declare( strict_types=1 );
|
|
|
|
namespace WooCommerce\Facebook\API\CommonFeedUploads\Create;
|
|
|
|
use WooCommerce\Facebook\API\Response as ApiResponse;
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/**
|
|
* Response object for Common Feed Upload
|
|
*
|
|
* @since 3.5.0
|
|
*/
|
|
class Response extends ApiResponse {}
|