PayPal\Api\PaymentHistory::getNextId PHP Method

getNextId() public method

Identifier of the next element to get the next range of results.
public getNextId ( ) : string
return string
    public function getNextId()
    {
        return $this->next_id;
    }

Usage Example

コード例 #1
0
 /**
  * @depends testSerializationDeserialization
  * @param PaymentHistory $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getPayments(), PaymentTest::getObject());
     $this->assertEquals($obj->getCount(), 123);
     $this->assertEquals($obj->getNextId(), "TestSample");
 }
All Usage Examples Of PayPal\Api\PaymentHistory::getNextId