View Source Craftgate.Response.Dto.ReportingPaymentTransaction (Craftgate v1.0.42)

Elixir equivalent of the Java data class io.craftgate.response.dto.ReportingPaymentTransaction

Link to this section Summary

Functions

Callback implementation for Construct.cast/2.

Callback implementation for Construct.make/2.

Attempts to parse the input as an instance of this struct

Bangified version of parse/1

Returns the names of the fields that are serializable/deserializable

Attempts to serialize this struct as a JSON string

Link to this section Types

@type t() :: %Craftgate.Response.Dto.ReportingPaymentTransaction{
  bank_commission_rate: Decimal.t() | nil,
  bank_commission_rate_amount: Decimal.t() | nil,
  blockage_resolved_date: NaiveDateTime.t() | nil,
  created_date: NaiveDateTime.t() | nil,
  external_id: String.t() | nil,
  id: integer() | nil,
  merchant_commission_rate: Decimal.t() | nil,
  merchant_commission_rate_amount: Decimal.t() | nil,
  merchant_payout_amount: Decimal.t() | nil,
  name: String.t() | nil,
  paid_price: Decimal.t() | nil,
  payout: Craftgate.Response.Dto.Payout.t() | nil,
  payout_status: Craftgate.Response.Dto.PayoutStatus.t() | nil,
  price: Decimal.t() | nil,
  refund_status: Craftgate.Model.PaymentRefundStatus.t() | nil,
  refundable_price: Decimal.t() | nil,
  sub_merchant_member: Craftgate.Response.MemberResponse.t() | nil,
  sub_merchant_member_id: integer() | nil,
  sub_merchant_member_payout_amount: Decimal.t() | nil,
  sub_merchant_member_payout_rate: Decimal.t() | nil,
  sub_merchant_member_price: Decimal.t() | nil,
  transaction_status: Craftgate.Model.TransactionStatus.t() | nil,
  transaction_status_date: NaiveDateTime.t() | nil,
  wallet_price: Decimal.t() | nil
}

Link to this section Functions

Link to this function

cast(params, opts \\ [])

View Source

Callback implementation for Construct.cast/2.

Link to this function

make(params \\ %{}, opts \\ [])

View Source

Callback implementation for Construct.make/2.

Link to this function

make!(params \\ %{}, opts \\ [])

View Source

Callback implementation for Construct.make!/2.

@spec parse(any()) :: {:ok, t()} | {:error, any()}

Attempts to parse the input as an instance of this struct

See also: Craftgate.Serializable.parse/2

@spec parse!(any()) :: t() | no_return()

Bangified version of parse/1

@spec serializable_fields() :: [atom()]

Returns the names of the fields that are serializable/deserializable

Link to this function

serialize(self, opts \\ [])

View Source
@spec serialize(
  t(),
  keyword()
) :: {:ok, binary()} | {:error, any()}

Attempts to serialize this struct as a JSON string

Link to this function

serialize!(self, opts \\ [])

View Source

Bangified version of serialize/2