Stripe.FeeRefund (stripity_stripe v2.17.2) View Source
Work with Stripe Connect application fees refund.
Stripe API reference: https://stripe.com/docs/api#fee_refunds
Link to this section Summary
Functions
Create a application fee refund
List all transfers.
Retrieve a application fee refund.
Update a transfer.
Link to this section Types
Specs
t() :: %Stripe.FeeRefund{ amount: integer(), balance_transaction: Stripe.id() | Stripe.BalanceTransaction.t(), created: Stripe.timestamp(), currency: String.t(), fee: String.t(), id: Stripe.id(), metadata: Stripe.Types.metadata(), object: String.t() }
Link to this section Functions
Specs
create(Stripe.id() | t(), params, Stripe.options()) :: {:ok, t()} | {:error, Stripe.Error.t()} when params: %{ optional(:amount) => pos_integer(), optional(:metadata) => Stripe.Types.metadata() }
Create a application fee refund
Specs
list(Stripe.id() | t(), params, Stripe.options()) :: {:ok, Stripe.List.t(t())} | {:error, Stripe.Error.t()} when params: %{ optional(:ending_before) => t() | Stripe.id(), optional(:limit) => 1..100, optional(:starting_after) => t() | Stripe.id() }
List all transfers.
Specs
retrieve(Stripe.id() | t(), Stripe.id() | t(), Stripe.options()) :: {:ok, t()} | {:error, Stripe.Error.t()}
Retrieve a application fee refund.
Specs
update(Stripe.id() | t(), Stripe.id() | t(), params, Stripe.options()) :: {:ok, t()} | {:error, Stripe.Error.t()} when params: %{optional(:metadata) => Stripe.Types.metadata()}
Update a transfer.
Takes the id
and a map of changes.