class
Stripe::Address
- Stripe::Address
- Reference
- Object
Included Modules
- JSON::Serializable
Defined in:
stripe/objects/core/address/address.crConstructors
- .new(line1 : Nil | String, city : Nil | String, state : Nil | String, line2 : Nil | String = nil, postal_code : Nil | String = nil, country : Nil | String = nil, town : Nil | String = nil)
- .new(pull : JSON::PullParser)
- .new(*, __pull_for_json_serializable pull : JSON::PullParser)
Instance Method Summary
- #city : String | Nil
- #country : String | Nil
- #line1 : String | Nil
- #line2 : String | Nil
- #postal_code : String | Nil
- #state : String | Nil
- #to_h
- #town : String | Nil
Constructor Detail
def self.new(line1 : Nil | String, city : Nil | String, state : Nil | String, line2 : Nil | String = nil, postal_code : Nil | String = nil, country : Nil | String = nil, town : Nil | String = nil)
#