Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/sale/lib/paysystem/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/sale/lib/paysystem/ipdf.php

<?php

namespace Bitrix\Sale\PaySystem;

use Bitrix\Sale\Payment;

/**
 * Interface IPdf
 * @package Bitrix\Sale\PaySystem
 */
interface IPdf
{
	/**
	 * @param Payment $payment
	 * @return mixed
	 */
	public function getContent(Payment $payment);

	/**
	 * @param Payment $payment
	 * @return mixed
	 */
	public function getFile(Payment $payment);

	/**
	 * @param Payment $payment
	 * @return mixed
	 */
	public function isGenerated(Payment $payment);
}