Braintree\TransactionSearch::type PHP Method

type() public static method

public static type ( )
    public static function type()
    {
        return new MultipleValueNode('type', [Transaction::SALE, Transaction::CREDIT]);
    }

Usage Example

 /**
  * @return MultipleValueNode
  */
 public function type()
 {
     return TransactionSearch::type();
 }
All Usage Examples Of Braintree\TransactionSearch::type