getSenderBatchId() public method

A sender-specified ID number. Tracks the batch payout in an accounting system.
Note: PayPal prevents duplicate batches from being processed. If you specify a sender_batch_id that was used in the last 30 days, the API rejects the request and returns an error message that indicates the duplicate sender_batch_id and includes a HATEOAS link to the original batch payout with the same sender_batch_id. If you receive a HTTP 5nn status code, you can safely retry the request with the same sender_batch_id. In any case, the API completes a payment only once for a specific sender_batch_id that is used within 30 days.
public getSenderBatchId ( ) : string
return string
 /**
  * @depends testSerializationDeserialization
  * @param PayoutSenderBatchHeader $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getSenderBatchId(), "TestSample");
     $this->assertEquals($obj->getEmailSubject(), "TestSample");
     $this->assertEquals($obj->getRecipientType(), "TestSample");
     $this->assertEquals($obj->getBatchStatus(), "TestSample");
 }