Packages
Complete Stripe SDK for Elixir with parity to the official Ruby SDK. V1+V2 coverage (193 services, 320 resource structs, 525 documented params). Per-event modules, Finch HTTP/2, RustyJSON, automatic retries, OAuth, webhooks, telemetry, per-client config, streaming pagination.
Current section
Files
Jump to
Current section
Files
lib/stripe/resources/platform_restriction.ex
# File generated from our OpenAPI spec
defmodule Stripe.Resources.PlatformRestriction do
@moduledoc """
TreasuryFinancialAccountsResourcePlatformRestrictions
Restrictions that a Connect Platform has placed on this FinancialAccount.
"""
@typedoc """
* `inbound_flows` - Restricts all inbound money movement. Possible values: `restricted`, `unrestricted`. Nullable.
* `outbound_flows` - Restricts all outbound money movement. Possible values: `restricted`, `unrestricted`. Nullable.
"""
@type t :: %__MODULE__{
inbound_flows: String.t(),
outbound_flows: String.t()
}
defstruct [:inbound_flows, :outbound_flows]
@object_name "treasury_financial_accounts_resource_platform_restrictions"
def object_name, do: @object_name
end