class Braintree_KeyValueNode in Commerce Braintree 7
Hierarchy
- class \Braintree_KeyValueNode
Expanded class hierarchy of Braintree_KeyValueNode
File
- braintree_php/
lib/ Braintree/ KeyValueNode.php, line 3
View source
class Braintree_KeyValueNode {
function __construct($name) {
$this->name = $name;
$this->searchTerm = True;
}
function is($value) {
$this->searchTerm = $value;
return $this;
}
function toParam() {
return $this->searchTerm;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Braintree_KeyValueNode:: |
function | |||
Braintree_KeyValueNode:: |
function | |||
Braintree_KeyValueNode:: |
function |