PATH:
home
/
lab2454c
/
equitablegold.com
/
wp-content
/
plugins
/
woocommerce
/
src
/
StoreApi
/
Schemas
/
V1
<?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 ), ] ), ]; } }
[-] CheckoutOrderSchema.php
[edit]
[-] ProductAttributeSchema.php
[edit]
[-] CartItemSchema.php
[edit]
[-] CartExtensionsSchema.php
[edit]
[-] ProductCollectionDataSchema.php
[edit]
[+]
..
[-] CartShippingRateSchema.php
[edit]
[-] TermSchema.php
[edit]
[-] ErrorSchema.php
[edit]
[-] OrderFeeSchema.php
[edit]
[-] ProductSchema.php
[edit]
[-] ImageAttachmentSchema.php
[edit]
[-] CartSchema.php
[edit]
[-] ItemSchema.php
[edit]
[-] OrderSchema.php
[edit]
[-] OrderItemSchema.php
[edit]
[-] OrderCouponSchema.php
[edit]
[-] ProductReviewSchema.php
[edit]
[-] CheckoutSchema.php
[edit]
[-] ShippingAddressSchema.php
[edit]
[-] ProductCategorySchema.php
[edit]
[+]
AI
[-] BatchSchema.php
[edit]
[-] CartCouponSchema.php
[edit]
[-] AbstractAddressSchema.php
[edit]
[-] CartFeeSchema.php
[edit]
[-] AbstractSchema.php
[edit]
[-] BillingAddressSchema.php
[edit]