1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?php namespace Automattic\WooCommerce\StoreApi\Schemas\V1;
use Automattic\WooCommerce\StoreApi\SchemaController; use Automattic\WooCommerce\StoreApi\Payments\PaymentResult; use Automattic\WooCommerce\StoreApi\Schemas\ExtendSchema;
/** * CheckoutOrderSchema class. */ class CheckoutOrderSchema extends CheckoutSchema { /** * The schema item name. * * @var string */ protected $title = 'checkout-order';
/** * The schema item identifier. * * @var string */ const IDENTIFIER = 'checkout-order';
/** * Checkout schema properties. * * @return array */ public function get_properties() { $parent_properties = parent::get_properties(); unset( $parent_properties['create_account'] ); return $parent_properties; } }
|