Automattic\WooCommerce\StoreApi\Routes\V1
CartSelectShippingRate::get_args()
Get method arguments for this REST route.
{} Это метод класса: CartSelectShippingRate{}
Хуков нет.
Возвращает
Массив
. An array of endpoints.
Использование
$CartSelectShippingRate = new CartSelectShippingRate(); $CartSelectShippingRate->get_args();
Код CartSelectShippingRate::get_args() CartSelectShippingRate::get args WC 6.8.0
public function get_args() { return [ [ 'methods' => \WP_REST_Server::CREATABLE, 'callback' => [ $this, 'get_response' ], 'permission_callback' => '__return_true', 'args' => [ 'package_id' => array( 'description' => __( 'The ID of the package being shipped.', 'woocommerce' ), 'type' => [ 'integer', 'string' ], 'required' => true, ), 'rate_id' => [ 'description' => __( 'The chosen rate ID for the package.', 'woocommerce' ), 'type' => 'string', 'required' => true, ], ], ], 'schema' => [ $this->schema, 'get_public_item_schema' ], 'allow_batch' => [ 'v1' => true ], ]; }