/home/edulekha/crm.edulekha.com/application/vendor/braintree/braintree_php/lib/Braintree/IsNode.php
<?php
namespace Braintree;

class IsNode
{
    public function __construct($name)
    {
        $this->name = $name;
        $this->searchTerms = [];
    }

    public function is($value)
    {
        $this->searchTerms['is'] = strval($value);

        return $this;
    }

    public function toParam()
    {
        return $this->searchTerms;
    }
}