# sequra/3.0.0/src/Services/Shopper/interface-shopper-service.php

seQura, version 3.0.0. 36 lines.

- Page: https://pluginprobe.com/plugins/sequra/3.0.0/code/src/Services/Shopper/interface-shopper-service.php
- Raw: https://pluginprobe.com/plugins/sequra/3.0.0/raw/src/Services/Shopper/interface-shopper-service.php
- Modified: 2024-10-29T15:19:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/sequra/3.0.0/code/src/Services/Shopper/interface-shopper-service.php#L10-L20`.

```php
<?php
/**
 * Shopper service interface
 *
 * @package    SeQura/WC
 * @subpackage SeQura/WC/Services
 */

namespace SeQura\WC\Services\Shopper;

/**
 * Handle use cases related to Shopper
 */
interface Interface_Shopper_Service {

	/**
	 * Get customer IP
	 */
	public function get_ip(): string;

	/**
	 * Get User Agent
	 */
	public function get_user_agent(): string;

	/**
	 * Check if the shopper is using a mobile device
	 */
	public function is_using_mobile(): bool;

	/**
	 * Get customer date of birth
	 */
	public function get_date_of_birth( int $customer_id ): string;
}

```
