Packages
🚂 Complete Polar SDK for Elixir with 1:1 feature parity to the official JavaScript SDK. Full API coverage. Fully typed per-event modules. Modern stack: Finch HTTP/2, RustyJSON, connection pooling, automatic retries, OAuth, webhooks, telemetry, explicit client options, streaming pagination.
Current section
Files
Jump to
Current section
Files
lib/polar_express/params/customers_delete_customer_params.ex
# File generated from our OpenAPI spec
defmodule PolarExpress.Params.CustomersDeleteCustomerParams do
@moduledoc "Parameters for customers delete customer."
@typedoc """
* `anonymize` - If true, also anonymize the customer's personal data for GDPR compliance. This replaces email with a hashed version, hashes name and billing name (name preserved for businesses with tax_id), clears billing address, and removes OAuth account data.
"""
@type t :: %__MODULE__{
anonymize: boolean() | nil
}
defstruct [:anonymize]
end