# frozen_string_literal: true # example_template.py - This is a template for defining new examples. It is not intended to be used directly. # # # # In this example, we: # - # - require "stripe" require "date" class ExampleTemplate attr_accessor :api_key def initialize(api_key) @api_key = api_key end def do_something_great puts "Hello World" # client = Stripe::StripeClient.new(api_key) # client.v1 end end # Send meter events api_key = "{{API_KEY}}" example = ExampleTemplate.new(api_key) example.do_something_great