PHP 8.2.31
Preview: OrderCouponSchema.php Size: 2.41 KB
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/woocommerce/src/StoreApi/Schemas/V1/OrderCouponSchema.php

<?php
namespace Automattic\WooCommerce\StoreApi\Schemas\V1;

/**
 * OrderCouponSchema class.
 */
class OrderCouponSchema extends AbstractSchema {
	/**
	 * The schema item name.
	 *
	 * @var string
	 */
	protected $title = 'order_coupon';

	/**
	 * The schema item identifier.
	 *
	 * @var string
	 */
	const IDENTIFIER = 'order-coupon';

	/**
	 * Cart schema properties.
	 *
	 * @return array
	 */
	public function get_properties() {
		return [
			'code'          => [
				'description' => __( 'The coupons unique code.', 'woocommerce' ),
				'type'        => 'string',
				'context'     => [ 'view', 'edit' ],
				'readonly'    => true,
			],
			'discount_type' => [
				'description' => __( 'The discount type for the coupon (e.g. percentage or fixed amount)', 'woocommerce' ),
				'type'        => 'string',
				'context'     => [ 'view', 'edit' ],
				'readonly'    => true,
			],
			'totals'        => [
				'description' => __( 'Total amounts provided using the smallest unit of the currency.', 'woocommerce' ),
				'type'        => 'object',
				'context'     => [ 'view', 'edit' ],
				'readonly'    => true,
				'properties'  => array_merge(
					$this->get_store_currency_properties(),
					[
						'total_discount'     => [
							'description' => __( 'Total discount applied by this coupon.', 'woocommerce' ),
							'type'        => 'string',
							'context'     => [ 'view', 'edit' ],
							'readonly'    => true,
						],
						'total_discount_tax' => [
							'description' => __( 'Total tax removed due to discount applied by this coupon.', 'woocommerce' ),
							'type'        => 'string',
							'context'     => [ 'view', 'edit' ],
							'readonly'    => true,
						],
					]
				),
			],
		];
	}

	/**
	 * Convert an order coupon to an object suitable for the response.
	 *
	 * @param \WC_Order_Item_Coupon $coupon Order coupon object.
	 * @return array
	 */
	public function get_item_response( $coupon ) {
		$coupon_object = new \WC_Coupon( $coupon->get_code() );
		return [
			'code'          => $coupon->get_code(),
			'discount_type' => $coupon_object ? $coupon_object->get_discount_type() : '',
			'totals'        => (object) $this->prepare_currency_response(
				[
					'total_discount'     => $this->prepare_money_response( $coupon->get_discount(), wc_get_price_decimals() ),
					'total_discount_tax' => $this->prepare_money_response( $coupon->get_discount_tax(), wc_get_price_decimals(), PHP_ROUND_HALF_DOWN ),
				]
			),
		];
	}
}

Directory Contents

Dirs: 2 × Files: 28

Name Size Perms Modified Actions
Agentic DIR
- drwxr-xr-x 2026-05-29 02:43:21
Edit Download
AI DIR
- drwxr-xr-x 2026-05-29 02:43:21
Edit Download
10.58 KB lrw-r--r-- 2025-05-12 21:07:28
Edit Download
12.97 KB lrw-r--r-- 2026-05-11 17:17:08
Edit Download
427 B lrw-r--r-- 2023-12-27 00:45:02
Edit Download
4.46 KB lrw-r--r-- 2024-04-30 19:35:34
Edit Download
2.98 KB lrw-r--r-- 2025-06-30 17:49:22
Edit Download
2.21 KB lrw-r--r-- 2024-08-27 23:04:44
Edit Download
2.12 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download
7.54 KB lrw-r--r-- 2026-05-05 14:26:50
Edit Download
17.07 KB lrw-r--r-- 2026-05-05 14:26:50
Edit Download
11.37 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download
752 B lrw-r--r-- 2023-12-27 00:45:02
Edit Download
15.05 KB lrw-r--r-- 2025-06-23 19:46:28
Edit Download
1.12 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download
3.32 KB lrw-r--r-- 2026-03-30 17:12:24
Edit Download
11.27 KB lrw-r--r-- 2025-07-29 12:34:58
Edit Download
2.41 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download
2.20 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download
7.16 KB lrw-r--r-- 2026-02-23 17:58:34
Edit Download
12.86 KB lrw-r--r-- 2026-05-05 14:26:50
Edit Download
673 B lrw-r--r-- 2024-10-21 23:53:16
Edit Download
2.50 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download
3.49 KB lrw-r--r-- 2025-03-03 22:28:12
Edit Download
3.50 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download
4.95 KB lrw-r--r-- 2025-07-29 12:34:58
Edit Download
6.12 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download
36.58 KB lrw-r--r-- 2026-05-05 14:26:50
Edit Download
2.84 KB lrw-r--r-- 2024-04-30 19:35:34
Edit Download
2.15 KB lrw-r--r-- 2023-12-27 00:45:02
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).