当前位置: 首页>>代码示例>>PHP>>正文


PHP MarketplaceWebServiceProducts_Model::__construct方法代码示例

本文整理汇总了PHP中MarketplaceWebServiceProducts_Model::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP MarketplaceWebServiceProducts_Model::__construct方法的具体用法?PHP MarketplaceWebServiceProducts_Model::__construct怎么用?PHP MarketplaceWebServiceProducts_Model::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在MarketplaceWebServiceProducts_Model的用法示例。


在下文中一共展示了MarketplaceWebServiceProducts_Model::__construct方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct($data = null)
 {
     $this->_fields = array('Identifiers' => array('FieldValue' => null, 'FieldType' => 'MarketplaceWebServiceProducts_Model_IdentifierType'), 'AttributeSets' => array('FieldValue' => null, 'FieldType' => 'MarketplaceWebServiceProducts_Model_AttributeSetList'), 'Relationships' => array('FieldValue' => null, 'FieldType' => 'MarketplaceWebServiceProducts_Model_RelationshipList'), 'CompetitivePricing' => array('FieldValue' => null, 'FieldType' => 'MarketplaceWebServiceProducts_Model_CompetitivePricingType'), 'SalesRankings' => array('FieldValue' => null, 'FieldType' => 'MarketplaceWebServiceProducts_Model_SalesRankList'), 'LowestOfferListings' => array('FieldValue' => null, 'FieldType' => 'MarketplaceWebServiceProducts_Model_LowestOfferListingList'), 'Offers' => array('FieldValue' => null, 'FieldType' => 'MarketplaceWebServiceProducts_Model_OffersList'));
     parent::__construct($data);
 }
开发者ID:merchbee,项目名称:amazon-mws,代码行数:5,代码来源:Product.php

示例2: __construct

 public function __construct($data = null)
 {
     $this->_fields = array('SellerId' => array('FieldValue' => null, 'FieldType' => 'string'), 'MWSAuthToken' => array('FieldValue' => null, 'FieldType' => 'string'), 'MarketplaceId' => array('FieldValue' => null, 'FieldType' => 'string'), 'ASINList' => array('FieldValue' => null, 'FieldType' => 'MarketplaceWebServiceProducts_Model_ASINListType'));
     parent::__construct($data);
 }
开发者ID:psyforce,项目名称:amazon-mws-php,代码行数:5,代码来源:GetCompetitivePricingForASINRequest.php

示例3: __construct

 public function __construct($data = null)
 {
     $this->_fields = array('SellerId' => array('FieldValue' => null, 'FieldType' => 'string'), 'MWSAuthToken' => array('FieldValue' => null, 'FieldType' => 'string'), 'MarketplaceId' => array('FieldValue' => null, 'FieldType' => 'string'), 'Query' => array('FieldValue' => null, 'FieldType' => 'string'), 'QueryContextId' => array('FieldValue' => null, 'FieldType' => 'string'));
     parent::__construct($data);
 }
开发者ID:sherif807,项目名称:amazon-mws-sdk,代码行数:5,代码来源:ListMatchingProductsRequest.php

示例4: __construct

 public function __construct($data = null)
 {
     $this->_fields = array('Products' => array('FieldValue' => null, 'FieldType' => 'MarketplaceWebServiceProducts_Model_ProductList'));
     parent::__construct($data);
 }
开发者ID:merchbee,项目名称:amazon-mws,代码行数:5,代码来源:ListMatchingProductsResult.php

示例5: __construct

 public function __construct($data = null)
 {
     $this->_fields = array('MarketplaceASIN' => array('FieldValue' => null, 'FieldType' => 'MarketplaceWebServiceProducts_Model_ASINIdentifier'), 'SKUIdentifier' => array('FieldValue' => null, 'FieldType' => 'MarketplaceWebServiceProducts_Model_SellerSKUIdentifier'));
     parent::__construct($data);
 }
开发者ID:sherif807,项目名称:amazon-mws-sdk,代码行数:5,代码来源:IdentifierType.php

示例6: __construct

 /**
  * Construct new MarketplaceWebServiceProducts_Model_AttributeSetList
  * 
  * @param mixed $data DOMElement or Associative Array to construct from. 
  * 
  * Valid properties:
  * <ul>
  *
  * </ul>
  */
 public function __construct($data = null)
 {
     $this->_fields = array('Any' => array('FieldValue' => null, 'FieldType' => 'DOMNodeList'));
     parent::__construct($data);
     $this->_fields['Any']['FieldValue'] = $data->childNodes;
 }
开发者ID:liubo2055,项目名称:amazon-mws-sdk,代码行数:16,代码来源:AttributeSetList.php

示例7: __construct

 public function __construct($data = null)
 {
     $this->_fields = array('ItemCondition' => array('FieldValue' => null, 'FieldType' => 'string'), 'ItemSubcondition' => array('FieldValue' => null, 'FieldType' => 'string'), 'FulfillmentChannel' => array('FieldValue' => null, 'FieldType' => 'string'), 'ShipsDomestically' => array('FieldValue' => null, 'FieldType' => 'string'), 'ShippingTime' => array('FieldValue' => null, 'FieldType' => 'MarketplaceWebServiceProducts_Model_ShippingTimeType'), 'SellerPositiveFeedbackRating' => array('FieldValue' => null, 'FieldType' => 'string'));
     parent::__construct($data);
 }
开发者ID:amazon-mws-unofficial,项目名称:marketplace-web-service-products,代码行数:5,代码来源:QualifiersType.php

示例8: __construct

 public function __construct($data = null)
 {
     $this->_fields = array('ProductCategoryId' => array('FieldValue' => null, 'FieldType' => 'string'), 'ProductCategoryName' => array('FieldValue' => null, 'FieldType' => 'string'), 'Parent' => array('FieldValue' => null, 'FieldType' => 'MarketplaceWebServiceProducts_Model_Categories'));
     parent::__construct($data);
 }
开发者ID:rajtrivedi2001,项目名称:deal,代码行数:5,代码来源:Categories.php

示例9: __construct

 public function __construct($data = null)
 {
     $this->_fields = array('GetMatchingProductForIdResult' => array('FieldValue' => array(), 'FieldType' => array('MarketplaceWebServiceProducts_Model_GetMatchingProductForIdResult')), 'ResponseMetadata' => array('FieldValue' => null, 'FieldType' => 'MarketplaceWebServiceProducts_Model_ResponseMetadata'), 'ResponseHeaderMetadata' => array('FieldValue' => null, 'FieldType' => 'MarketplaceWebServiceProducts_Model_ResponseHeaderMetadata'));
     parent::__construct($data);
 }
开发者ID:aivanouski,项目名称:amazon-mws-products,代码行数:5,代码来源:GetMatchingProductForIdResponse.php

示例10: __construct

 public function __construct($data = null)
 {
     $this->_fields = array('CompetitivePrice' => array('FieldValue' => array(), 'FieldType' => array('MarketplaceWebServiceProducts_Model_CompetitivePriceType')));
     parent::__construct($data);
 }
开发者ID:imranshuvo,项目名称:wp-lister-for-amazon,代码行数:5,代码来源:CompetitivePriceList.php


注:本文中的MarketplaceWebServiceProducts_Model::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。