PayPal\Api\Error::getDetails PHP Method

getDetails() public method

Additional details of the error
public getDetails ( ) : ErrorDetails[]
return ErrorDetails[]
    public function getDetails()
    {
        return $this->details;
    }

Usage Example

Esempio n. 1
0
 /**
  * @depends testSerializationDeserialization
  * @param Error $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getName(), "TestSample");
     $this->assertEquals($obj->getDebugId(), "TestSample");
     $this->assertEquals($obj->getMessage(), "TestSample");
     $this->assertEquals($obj->getInformationLink(), "TestSample");
     $this->assertEquals($obj->getDetails(), ErrorDetailsTest::getObject());
     $this->assertEquals($obj->getLinks(), LinksTest::getObject());
 }
All Usage Examples Of PayPal\Api\Error::getDetails