PayPal\Api\PaymentHistory::getNextId PHP 메소드

getNextId() 공개 메소드

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

Usage Example

 /**
  * @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