Services_Ebay
[ class tree: Services_Ebay ] [ index: Services_Ebay ] [ all elements ]

Source for file GetMemberMessages.php

Documentation is available at GetMemberMessages.php

  1. <?PHP
  2. /**
  3.  * Get the logo URL
  4.  *
  5.  * $Id$
  6.  *
  7.  * @package Services_Ebay
  8.  * @author  Carsten Lucke <luckec@php.net>
  9.  * @link    http://developer.ebay.com/DevZone/docs/api_doc/Functions/GetMemberMessages/getmembermessageslogic.htm
  10.  * @todo    perhaps this should be split into two wrapper-calls: GetMemberMessagesByItemId, GetMemberMessagesByDateRange
  11.  */
  12. {
  13.    /**
  14.     * verb of the API call
  15.     *
  16.     * @var  string 
  17.     */
  18.     protected $verb = 'GetMemberMessages';
  19.  
  20.    /**
  21.     * arguments of the call
  22.     *
  23.     * @var  array 
  24.     */
  25.     protected $args = array(
  26.                             'MailMessageType' => 'AskSellerQuestion'
  27.                         );
  28.  
  29.    /**
  30.     * parameter map that is used, when scalar parameters are passed
  31.     *
  32.     * @var  array 
  33.     */
  34.     protected $paramMap = array(
  35.                                  'StartCreationTime',
  36.                                  'EndCreationTime',
  37.                                  'ItemID',
  38.                                  'MailMessageType',
  39.                                  'DisplayToPublic',
  40.                                  'Pagination',
  41.                                  'MessageStatus'
  42.                                 );
  43.  
  44.    /**
  45.     * make the API call
  46.     *
  47.     * @param    object Services_Ebay_Session 
  48.     * @return   string 
  49.     */
  50.     public function call(Services_Ebay_Session $session)
  51.     {
  52.         $return = parent::call($session);
  53.         $result Services_Ebay::loadModel('MemberMessageList'$return$session);
  54.         return $result;
  55.     }
  56. }
  57. ?>

Documentation generated on Mon, 11 Mar 2019 15:49:47 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.