
<center><h2><strong>Ubuntu</strong></h2>
­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
declare( strict_types=1 );

namespace Automattic\WooCommerce\GoogleListingsAndAds\Options;

/**
 * Interface TransientsInterface
 *
 * @package Automattic\WooCommerce\GoogleListingsAndAds\Options
 */
interface TransientsInterface {

	public const ADS_BUDGET_METRICS         = 'ads_budget_metrics';
	public const ADS_CAMPAIGN_COUNT         = 'ads_campaign_count';
	public const ADS_LOCATION_IDS           = 'ads_location_ids';
	public const ADS_METRICS                = 'ads_metrics';
	public const ADS_BUDGET_RECOMMENDATIONS = 'ads_budget_recommendations';
	public const ADS_RECOMMENDATIONS        = 'ads_recommendations';
	public const FREE_LISTING_METRICS       = 'free_listing_metrics';
	public const MC_ACCOUNT_REVIEW          = 'mc_account_review';
	public const MC_IS_SUBACCOUNT           = 'mc_is_subaccount';
	public const MC_STATUSES                = 'mc_statuses';
	public const URL_MATCHES                = 'url_matches';
	public const WPCOM_API_STATUS           = 'wpcom_api_status';

	public const VALID_OPTIONS = [
		self::ADS_BUDGET_METRICS         => true,
		self::ADS_CAMPAIGN_COUNT         => true,
		self::ADS_LOCATION_IDS           => true,
		self::ADS_METRICS                => true,
		self::ADS_RECOMMENDATIONS        => true,
		self::ADS_BUDGET_RECOMMENDATIONS => true,
		self::FREE_LISTING_METRICS       => true,
		self::MC_ACCOUNT_REVIEW          => true,
		self::MC_IS_SUBACCOUNT           => true,
		self::MC_STATUSES                => true,
		self::URL_MATCHES                => true,
		self::WPCOM_API_STATUS           => true,
	];

	/**
	 * Get a transient.
	 *
	 * @param string $name          The transient name.
	 * @param mixed  $default_value A default value for the transient.
	 *
	 * @return mixed
	 */
	public function get( string $name, $default_value = null );

	/**
	 * Add or update a transient.
	 *
	 * @param string $name  The transient name.
	 * @param mixed  $value The transient value.
	 * @param int    $expiration Time until expiration in seconds.
	 *
	 * @return bool
	 */
	public function set( string $name, $value, int $expiration = 0 ): bool;

	/**
	 * Delete a transient.
	 *
	 * @param string $name The transient name.
	 *
	 * @return bool
	 */
	public function delete( string $name ): bool;

	/**
	 * Returns all available transient keys.
	 *
	 * @return array
	 *
	 * @since 1.3.0
	 */
	public static function get_all_transient_keys(): array;
}
