class Pay::Stripe::Customer

def terminal_charge(amount, options = {})

Used for creating Stripe Terminal charges
def terminal_charge(amount, options = {})
  create_payment_intent(amount, options.merge(payment_method_types: ["card_present"], capture_method: "manual"))
end