1
0
mirror of synced 2024-11-22 21:36:10 +03:00
bitrix-module/intaro.retailcrm/lib/model/bitrix/xml/xmlsetup.php

81 lines
1.6 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* PHP version 7.1
*
* @category Integration
* @package Intaro\RetailCrm\Model\Bitrix
* @author RetailCRM <integration@retailcrm.ru>
* @license MIT
* @link http://retailcrm.ru
* @see http://retailcrm.ru/docs
*/
namespace Intaro\RetailCrm\Model\Bitrix\Xml;
/**
* Class XmlSetup
* @package Intaro\RetailCrm\Model\Bitrix\Xml
*/
class XmlSetup
{
/**
* XmlSetup constructor.
* @param \Intaro\RetailCrm\Model\Bitrix\Xml\XmlSetupPropsCategories $xmlProps
*/
public function __construct(XmlSetupPropsCategories $xmlProps)
{
$this->properties = $xmlProps;
}
/**
* @var int
*/
public $profileId;
/**
* id инфоблоков, которые подлежат экспорту - IBLOCK_EXPORT
*
* @var array
*/
public $iblocksForExport;
/**
* Путь, по которому сохраняется xml - SETUP_FILE_NAME
*
* @var string
*/
public $filePath;
/**
* синхронизируемые свойства
*
* @var \Intaro\RetailCrm\Model\Bitrix\Xml\XmlSetupPropsCategories
*/
public $properties;
/**
* максимальное количество торговых предложений у товара - MAX_OFFERS_VALUE
*
* @var null|int
*/
public $maxOffersValue;
/**
* выгружать ли закупочную цену
*
* @var bool
*/
public $loadPurchasePrice;
/**
* @var int|null
*/
public $basePriceId;
/**
*
* @var bool
*/
public $loadNonActivity;
}