View Source ExOAPI.Stripe.Schemas.PaymentIntentNextActionWechatPayRedirectToAndroidApp (exoapi_stripe v0.1.4)

:app_id :: :string

app_id is the APP ID registered on WeChat open platform

:nonce_str :: :string

nonce_str is a random string

:package :: :string

package is static value

:partner_id :: :string

an unique merchant ID assigned by WeChat Pay

:prepay_id :: :string

an unique trading ID assigned by WeChat Pay

:sign :: :string

A signature

:timestamp :: :string

Specifies the current time in epoch format

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() ::
  %ExOAPI.Stripe.Schemas.PaymentIntentNextActionWechatPayRedirectToAndroidApp{
    app_id: String.t() | nil,
    nonce_str: String.t() | nil,
    package: String.t() | nil,
    partner_id: String.t() | nil,
    prepay_id: String.t() | nil,
    sign: String.t() | nil,
    timestamp: String.t() | nil
  }

Link to this section Functions

Link to this function

changeset(struct \\ %__MODULE__{}, params)

View Source
@spec changeset(t(), params()) :: Ecto.Changeset.t()