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

Latest commit

 

History

History
50 lines (44 loc) · 1.38 KB

CardholderAddressResponse.md

File metadata and controls

50 lines (44 loc) · 1.38 KB

Marqeta::CardholderAddressResponse

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
first_name String
last_name String
address_1 String
address_2 String [optional]
city String
state String
zip String
postal_code String
country String
phone String [optional]
is_default_address Boolean [optional][default to false]
active Boolean [optional][default to false]
created_time Time yyyy-MM-ddTHH:mm:ssZ
last_modified_time Time yyyy-MM-ddTHH:mm:ssZ

Example

require 'marqeta'

instance = Marqeta::CardholderAddressResponse.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,
  postal_code: null,
  country: null,
  phone: null,
  is_default_address: null,
  active: null,
  created_time: null,
  last_modified_time: null
)