UsBankAccountVerificationSearch.php
1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
namespace Braintree;
class UsBankAccountVerificationSearch
{
    public static function accountHolderName() {
        return new TextNode('account_holder_name');
    }
    public static function customerEmail() {
        return new TextNode('customer_email');
    }
    public static function customerId() {
        return new TextNode('customer_id');
    }
    public static function id() {
        return new TextNode('id');
    }
    public static function paymentMethodToken(){
        return new TextNode('payment_method_token');
    }
    public static function routingNumber() {
        return new TextNode('routiner_number');
    }
    public static function ids() {
        return new MultipleValueNode('ids');
    }
    public static function status()
    {
        return new MultipleValueNode(
            "status",
            Result\UsBankAccountVerification::allStatuses()
        );
    }
    public static function verificationMethod()
    {
        return new MultipleValueNode(
            "verification_method",
            Result\UsBankAccountVerification::allVerificationMethods()
        );
    }
    public static function createdAt() {
        return new RangeNode("created_at");
    }
    public static function accountType()
    {
        return new EqualityNode("account_type");
    }
    public static function accountNumber()
    {
        return new EndsWithNode("account_number");
    }
}
class_alias('Braintree\UsBankAccountVerificationSearch', 'Braintree_UsBankAccountVerificationSearch');