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

Latest commit

 

History

History
46 lines (40 loc) · 1.33 KB

CardHolderAddressModel.md

File metadata and controls

46 lines (40 loc) · 1.33 KB

Marqeta::CardHolderAddressModel

Properties

Name Type Description Notes
user_token String Required if 'business_token' is not specified [optional]
business_token String Required if 'user_token' is not specified [optional]
token String [optional]
first_name String
last_name String
address_1 String
address_2 String [optional]
city String
state String
zip String Required if 'postal_code' is not specified [optional]
country String
phone String [optional]
is_default_address Boolean [optional][default to false]
active Boolean [optional][default to true]
postal_code String Required if 'zip' is not specified [optional]

Example

require 'marqeta'

instance = Marqeta::CardHolderAddressModel.new(
  user_token: null,
  business_token: null,
  token: null,
  first_name: null,
  last_name: null,
  address_1: null,
  address_2: null,
  city: null,
  state: null,
  zip: null,
  country: null,
  phone: null,
  is_default_address: null,
  active: null,
  postal_code: null
)