Class: Stripe::CustomerPaymentSourceUpdateParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/customer_payment_source_update_params.rb

Defined Under Namespace

Classes: Owner

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(account_holder_name: nil, account_holder_type: nil, address_city: nil, address_country: nil, address_line1: nil, address_line2: nil, address_state: nil, address_zip: nil, exp_month: nil, exp_year: nil, expand: nil, metadata: nil, name: nil, owner: nil) ⇒ CustomerPaymentSourceUpdateParams

Returns a new instance of CustomerPaymentSourceUpdateParams.



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 82

def initialize(
  account_holder_name: nil,
  account_holder_type: nil,
  address_city: nil,
  address_country: nil,
  address_line1: nil,
  address_line2: nil,
  address_state: nil,
  address_zip: nil,
  exp_month: nil,
  exp_year: nil,
  expand: nil,
  metadata: nil,
  name: nil,
  owner: nil
)
  @account_holder_name = 
  @account_holder_type = 
  @address_city = address_city
  @address_country = address_country
  @address_line1 = address_line1
  @address_line2 = address_line2
  @address_state = address_state
  @address_zip = address_zip
  @exp_month = exp_month
  @exp_year = exp_year
  @expand = expand
  @metadata = 
  @name = name
  @owner = owner
end

Instance Attribute Details

#account_holder_nameObject

The name of the person or business that owns the bank account.



54
55
56
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 54

def 
  @account_holder_name
end

#account_holder_typeObject

The type of entity that holds the account. This can be either ‘individual` or `company`.



56
57
58
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 56

def 
  @account_holder_type
end

#address_cityObject

City/District/Suburb/Town/Village.



58
59
60
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 58

def address_city
  @address_city
end

#address_countryObject

Billing address country, if provided when creating card.



60
61
62
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 60

def address_country
  @address_country
end

#address_line1Object

Address line 1 (Street address/PO Box/Company name).



62
63
64
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 62

def address_line1
  @address_line1
end

#address_line2Object

Address line 2 (Apartment/Suite/Unit/Building).



64
65
66
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 64

def address_line2
  @address_line2
end

#address_stateObject

State/County/Province/Region.



66
67
68
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 66

def address_state
  @address_state
end

#address_zipObject

ZIP or postal code.



68
69
70
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 68

def address_zip
  @address_zip
end

#exp_monthObject

Two digit number representing the card’s expiration month.



70
71
72
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 70

def exp_month
  @exp_month
end

#exp_yearObject

Four digit number representing the card’s expiration year.



72
73
74
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 72

def exp_year
  @exp_year
end

#expandObject

Specifies which fields in the response should be expanded.



74
75
76
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 74

def expand
  @expand
end

#metadataObject

Set of [key-value pairs](stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to ‘metadata`.



76
77
78
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 76

def 
  @metadata
end

#nameObject

Cardholder name.



78
79
80
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 78

def name
  @name
end

#ownerObject

Attribute for param field owner



80
81
82
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 80

def owner
  @owner
end