mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-04 00:00:47 -04:00
* Introduce types to ruby * rubocop * forgot these files * other request methods * more tests, fix for raw request * Add README entry for types * rebase and regen
89 lines
3.9 KiB
Ruby
89 lines
3.9 KiB
Ruby
# File generated from our OpenAPI spec
|
|
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
# The credit note line item object
|
|
class CreditNoteLineItem < StripeObject
|
|
OBJECT_NAME = "credit_note_line_item"
|
|
def self.object_name
|
|
"credit_note_line_item"
|
|
end
|
|
|
|
class DiscountAmount < Stripe::StripeObject
|
|
# The amount, in cents (or local equivalent), of the discount.
|
|
attr_reader :amount
|
|
# The discount that was applied to get this discount amount.
|
|
attr_reader :discount
|
|
end
|
|
|
|
class PretaxCreditAmount < Stripe::StripeObject
|
|
# The amount, in cents (or local equivalent), of the pretax credit amount.
|
|
attr_reader :amount
|
|
# The credit balance transaction that was applied to get this pretax credit amount.
|
|
attr_reader :credit_balance_transaction
|
|
# The discount that was applied to get this pretax credit amount.
|
|
attr_reader :discount
|
|
# Type of the pretax credit amount referenced.
|
|
attr_reader :type
|
|
end
|
|
|
|
class TaxCalculationReference < Stripe::StripeObject
|
|
# The calculation identifier for tax calculation response.
|
|
attr_reader :calculation_id
|
|
# The calculation identifier for tax calculation response line item.
|
|
attr_reader :calculation_item_id
|
|
end
|
|
|
|
class Tax < Stripe::StripeObject
|
|
class TaxRateDetails < Stripe::StripeObject
|
|
# Attribute for field tax_rate
|
|
attr_reader :tax_rate
|
|
end
|
|
# The amount of the tax, in cents (or local equivalent).
|
|
attr_reader :amount
|
|
# Whether this tax is inclusive or exclusive.
|
|
attr_reader :tax_behavior
|
|
# Additional details about the tax rate. Only present when `type` is `tax_rate_details`.
|
|
attr_reader :tax_rate_details
|
|
# The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported.
|
|
attr_reader :taxability_reason
|
|
# The amount on which tax is calculated, in cents (or local equivalent).
|
|
attr_reader :taxable_amount
|
|
# The type of tax information.
|
|
attr_reader :type
|
|
end
|
|
# The integer amount in cents (or local equivalent) representing the gross amount being credited for this line item, excluding (exclusive) tax and discounts.
|
|
attr_reader :amount
|
|
# Description of the item being credited.
|
|
attr_reader :description
|
|
# The integer amount in cents (or local equivalent) representing the discount being credited for this line item.
|
|
attr_reader :discount_amount
|
|
# The amount of discount calculated per discount for this line item
|
|
attr_reader :discount_amounts
|
|
# Unique identifier for the object.
|
|
attr_reader :id
|
|
# ID of the invoice line item being credited
|
|
attr_reader :invoice_line_item
|
|
# Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
|
|
attr_reader :livemode
|
|
# String representing the object's type. Objects of the same type share the same value.
|
|
attr_reader :object
|
|
# The pretax credit amounts (ex: discount, credit grants, etc) for this line item.
|
|
attr_reader :pretax_credit_amounts
|
|
# The number of units of product being credited.
|
|
attr_reader :quantity
|
|
# The tax calculation identifiers of the line item.
|
|
attr_reader :tax_calculation_reference
|
|
# The tax rates which apply to the line item.
|
|
attr_reader :tax_rates
|
|
# The tax information of the line item.
|
|
attr_reader :taxes
|
|
# The type of the credit note line item, one of `invoice_line_item` or `custom_line_item`. When the type is `invoice_line_item` there is an additional `invoice_line_item` property on the resource the value of which is the id of the credited line item on the invoice.
|
|
attr_reader :type
|
|
# The cost of each unit of product being credited.
|
|
attr_reader :unit_amount
|
|
# Same as `unit_amount`, but contains a decimal value with at most 12 decimal places.
|
|
attr_reader :unit_amount_decimal
|
|
end
|
|
end
|