PayPal\Api\PaymentSummary::getOther PHP Method

getOther() public method

Total Amount paid/refunded via other sources.
public getOther ( ) : PayPal\Api\Currency
return PayPal\Api\Currency
    public function getOther()
    {
        return $this->other;
    }

Usage Example

 /**
  * @depends testSerializationDeserialization
  * @param PaymentSummary $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getPaypal(), CurrencyTest::getObject());
     $this->assertEquals($obj->getOther(), CurrencyTest::getObject());
 }