PayPal\Api\PaymentTerm::getTermType PHP Метод

getTermType() публичный Метод

The terms by which the invoice payment is due.
public getTermType ( ) : string
Результат string
    public function getTermType()
    {
        return $this->term_type;
    }

Usage Example

Пример #1
0
 /**
  * @depends testSerializationDeserialization
  * @param PaymentTerm $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getTermType(), "TestSample");
     $this->assertEquals($obj->getDueDate(), "TestSample");
 }