stripe-ruby/lib/stripe/resources/usage_record.rb
helenye-stripe ce8d7ca4cc
Add methods for dynamically referenced constants (#1327)
* Update dynamic constant references

* Manual additionsg

* Fix lint

* Use const_Get

* Remove puts
2024-02-09 17:15:39 -08:00

16 lines
442 B
Ruby

# File generated from our OpenAPI spec
# frozen_string_literal: true
module Stripe
# Usage records allow you to report customer usage and metrics to Stripe for
# metered billing of subscription prices.
#
# Related guide: [Metered billing](https://stripe.com/docs/billing/subscriptions/metered-billing)
class UsageRecord < APIResource
OBJECT_NAME = "usage_record"
def self.object_name
"usage_record"
end
end
end