stripe-ruby/lib/stripe/params/quote_mark_draft_params.rb

14 lines
302 B
Ruby

# File generated from our OpenAPI spec
# frozen_string_literal: true
module Stripe
class QuoteMarkDraftParams < Stripe::RequestParams
# Specifies which fields in the response should be expanded.
attr_accessor :expand
def initialize(expand: nil)
@expand = expand
end
end
end