Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Latest commit

 

History

History
30 lines (24 loc) · 644 Bytes

AddressResponseModel.md

File metadata and controls

30 lines (24 loc) · 644 Bytes

Marqeta::AddressResponseModel

Properties

Name Type Description Notes
address1 String [optional]
address2 String [optional]
city String [optional]
state String [optional]
zip String [optional]
postal_code String [optional]
country String [optional]

Example

require 'marqeta'

instance = Marqeta::AddressResponseModel.new(
  address1: null,
  address2: null,
  city: null,
  state: null,
  zip: null,
  postal_code: null,
  country: null
)