Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.07 KB

File metadata and controls

28 lines (22 loc) · 1.07 KB

UltracartClient::CustomerStoreCredit

Properties

Name Type Description Notes
available Float Available store credit which is defined as unused and vested [optional]
expiring Float Amount of store credit expiring within 30 days [optional]
future_ledgers Array<CustomerStoreCreditLedgerEntry> Array of future ledger entries including expiring entries [optional]
past_ledgers Array<CustomerStoreCreditLedgerEntry> Array of past ledger entries including accrual, usage, and expiring entries [optional]
total Float Total lifetime store credit for this customer. [optional]
vesting Float Amount of store credit vesting [optional]

Example

require 'ultracart_api'

instance = UltracartClient::CustomerStoreCredit.new(
  available: null,
  expiring: null,
  future_ledgers: null,
  past_ledgers: null,
  total: null,
  vesting: null
)