mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-06-03 00:01:47 -04:00
21 lines
511 B
Ruby
21 lines
511 B
Ruby
# File generated from our OpenAPI spec
|
|
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
class Application < APIResource
|
|
OBJECT_NAME = "application"
|
|
def self.object_name
|
|
"application"
|
|
end
|
|
|
|
# Unique identifier for the object.
|
|
attr_reader :id
|
|
# The name of the application.
|
|
attr_reader :name
|
|
# String representing the object's type. Objects of the same type share the same value.
|
|
attr_reader :object
|
|
# Always true for a deleted object
|
|
attr_reader :deleted
|
|
end
|
|
end
|