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

Latest commit

 

History

History
26 lines (20 loc) · 530 Bytes

BillingAddress.md

File metadata and controls

26 lines (20 loc) · 530 Bytes

Marqeta::BillingAddress

Properties

Name Type Description Notes
first_name String [optional]
last_name String [optional]
address String [optional]
zip String [optional]
compressed_zip String [optional]

Example

require 'marqeta'

instance = Marqeta::BillingAddress.new(
  first_name: null,
  last_name: null,
  address: null,
  zip: null,
  compressed_zip: null
)