PayPal\Api\RelatedResources::getCapture PHP Method

getCapture() public method

Capture transaction
public getCapture ( ) : Capture
return Capture
    public function getCapture()
    {
        return $this->capture;
    }

Usage Example

Example #1
0
 /**
  * @depends testSerializationDeserialization
  * @param RelatedResources $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getSale(), SaleTest::getObject());
     $this->assertEquals($obj->getAuthorization(), AuthorizationTest::getObject());
     $this->assertEquals($obj->getOrder(), OrderTest::getObject());
     $this->assertEquals($obj->getCapture(), CaptureTest::getObject());
     $this->assertEquals($obj->getRefund(), RefundTest::getObject());
 }