class Io::Flow::V0::Models::ActionUseSdkStripeV3

Use the Stripe SDK v3 and handleCardAction. After the decision has been made, the payment request will be updated asynchronously. stripe.com/docs/js/payment_intents/handle_card_action

Attributes

client_secret[R]
expires_at[R]
publishable_key[R]

Public Class Methods

new(incoming={}) click to toggle source
Calls superclass method Io::Flow::V0::Models::Action::new
# File lib/flow_commerce/flow_api_v0_client.rb, line 29412
def initialize(incoming={})
  super(:type => Action::Types::ACTION_USE_SDK_STRIPE_V3)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:client_secret, :publishable_key], 'ActionUseSdkStripeV3')
  @expires_at = (x = opts.delete(:expires_at); x.nil? ? nil : HttpClient::Preconditions.assert_class('expires_at', HttpClient::Helper.to_date_time_iso8601(x), DateTime))
  @client_secret = HttpClient::Preconditions.assert_class('client_secret', opts.delete(:client_secret), String)
  @publishable_key = HttpClient::Preconditions.assert_class('publishable_key', opts.delete(:publishable_key), String)
end

Public Instance Methods

copy(incoming={}) click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 29425
def copy(incoming={})
  ActionUseSdkStripeV3.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end
subtype_to_hash() click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 29429
def subtype_to_hash
  {
    :expires_at => expires_at,
    :client_secret => client_secret,
    :publishable_key => publishable_key
  }
end
to_json() click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 29421
def to_json
  JSON.dump(to_hash)
end