Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 794 Bytes

TaxBaseInput.md

File metadata and controls

26 lines (20 loc) · 794 Bytes

LagoAPI::TaxBaseInput

Properties

Name Type Description Notes
name String Name of the tax. [optional]
code String Unique code used to identify the tax associated with the API request. [optional]
rate String The percentage rate of the tax [optional]
description String Internal description of the taxe [optional]
applied_to_organization Boolean Set to `true` if the tax is used as one of the organization's default [optional]

Example

require 'lago_ruby'

instance = LagoAPI::TaxBaseInput.new(
  name: TVA,
  code: french_standard_vat,
  rate: 20.0,
  description: French standard VAT,
  applied_to_organization: true
)