PayPal\Api\Payer::getStatus PHP Method

getStatus() public method

Status of payer's PayPal Account.
public getStatus ( ) : string
return string
    public function getStatus()
    {
        return $this->status;
    }

Usage Example

Example #1
0
 /**
  * @depends testSerializationDeserialization
  * @param Payer $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getPaymentMethod(), "TestSample");
     $this->assertEquals($obj->getStatus(), "TestSample");
     $this->assertEquals($obj->getFundingInstruments(), FundingInstrumentTest::getObject());
     $this->assertEquals($obj->getFundingOptionId(), "TestSample");
     $this->assertEquals($obj->getPayerInfo(), PayerInfoTest::getObject());
 }
All Usage Examples Of PayPal\Api\Payer::getStatus