Class: GandiV5::Domain::Availability::Tax
- Inherits:
-
Object
- Object
- GandiV5::Domain::Availability::Tax
- Includes:
- GandiV5::Data
- Defined in:
- lib/gandi_v5/domain/availability/tax.rb
Overview
Information about tax due on a process/product.
Instance Attribute Summary collapse
-
#name ⇒ String
readonly
Name of the tax (e.g. VAT).
-
#rate ⇒ Numeric
readonly
Percentage rate of the tax (e.g. 20).
-
#type ⇒ String
readonly
Type of the tax (e.g. service).
Method Summary
Methods included from GandiV5::Data
#from_gandi, included, #initialize, #to_gandi, #to_h, #values_at
Instance Attribute Details
#name ⇒ String (readonly)
13 14 15 16 17 |
# File 'lib/gandi_v5/domain/availability/tax.rb', line 13 class Tax include GandiV5::Data members :name, :rate, :type end |
#rate ⇒ Numeric (readonly)
13 14 15 16 17 |
# File 'lib/gandi_v5/domain/availability/tax.rb', line 13 class Tax include GandiV5::Data members :name, :rate, :type end |
#type ⇒ String (readonly)
13 14 15 16 17 |
# File 'lib/gandi_v5/domain/availability/tax.rb', line 13 class Tax include GandiV5::Data members :name, :rate, :type end |