Class: Stripe::CustomerCreateParams::Address

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(city: nil, country: nil, line1: nil, line2: nil, postal_code: nil, state: nil) ⇒ Address

Returns a new instance of Address.



20
21
22
23
24
25
26
27
# File 'lib/stripe/params/customer_create_params.rb', line 20

def initialize(city: nil, country: nil, line1: nil, line2: nil, postal_code: nil, state: nil)
  @city = city
  @country = country
  @line1 = line1
  @line2 = line2
  @postal_code = postal_code
  @state = state
end

Instance Attribute Details

#cityObject

City, district, suburb, town, or village.



8
9
10
# File 'lib/stripe/params/customer_create_params.rb', line 8

def city
  @city
end

#countryObject

A freeform text field for the country. However, in order to activate some tax features, the format should be a two-letter country code ([ISO 3166-1 alpha-2](en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).



10
11
12
# File 'lib/stripe/params/customer_create_params.rb', line 10

def country
  @country
end

#line1Object

Address line 1, such as the street, PO Box, or company name.



12
13
14
# File 'lib/stripe/params/customer_create_params.rb', line 12

def line1
  @line1
end

#line2Object

Address line 2, such as the apartment, suite, unit, or building.



14
15
16
# File 'lib/stripe/params/customer_create_params.rb', line 14

def line2
  @line2
end

#postal_codeObject

ZIP or postal code.



16
17
18
# File 'lib/stripe/params/customer_create_params.rb', line 16

def postal_code
  @postal_code
end

#stateObject

State, county, province, or region.



18
19
20
# File 'lib/stripe/params/customer_create_params.rb', line 18

def state
  @state
end