Automattic\WooCommerce\StoreApi\Routes\V1

CartSelectShippingRate::get_args()publicWC 1.0

Get method arguments for this REST route.

Метод класса: CartSelectShippingRate{}

Хуков нет.

Возвращает

Массив. An array of endpoints.

Использование

$CartSelectShippingRate = new CartSelectShippingRate();
$CartSelectShippingRate->get_args();

Код CartSelectShippingRate::get_args() WC 8.7.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. Leave blank to apply to all packages.', 'woocommerce' ),
					'type'        => [ 'integer', 'string', 'null' ],
					'required'    => false,
				),
				'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 ],
	];
}