PolarExpress.Schemas.CustomerWallet (polar_express v0.1.5)

Copy Markdown View Source

CustomerWallet

A wallet represents your balance with an organization.

You can top-up your wallet and use the balance to pay for usage.

Summary

Types

t()

@type t() :: %PolarExpress.Schemas.CustomerWallet{
  balance: integer() | nil,
  created_at: DateTime.t() | nil,
  currency: String.t() | nil,
  customer_id: String.t() | nil,
  id: String.t() | nil,
  modified_at: DateTime.t() | nil
}
  • balance - The current balance of the wallet, in cents.
  • created_at - Creation timestamp of the object. Format: date-time.
  • currency - The currency of the wallet.
  • customer_id - The ID of the customer that owns the wallet. Format: uuid4.
  • id - The ID of the object. Format: uuid4.
  • modified_at - Last modification timestamp of the object. Nullable.

Functions

schema_name()