class TaxCloud::TaxCode::Groups
Tax Code Groups
.
A TaxCloud::TaxCode::Group organizes tax codes in a logical group.
Constants
- ADMINISTRATIVE
Administrative
- CLOTHING_AND_RELATED_PRODUCTS
Clothing and Related Products
- COMPUTER_RELATED_PRODUCTS
Computer Related Products
- DIGITAL_PRODUCTS
Digital Products
- DRUGS
Drugs
- DURABLE_MEDICAL_EQUIPMENT
Durable Medical Equipment
- FOOD_AND_FOOD_PRODUCTS
Food and Food Products
- MOBILTY_ENHANCING_EQUIPMENT
Mobilty Enhancing Equipment
- PREPARED_FOOD
Prepared Food
- PROSTHETIC_DEVICES
Prosthetic Devices
- SCHOOL_RELATED_PRODUCTS
School Related Products
- TELECOMMUNICATIONS
Telecommunications
Public Class Methods
[](group_id)
click to toggle source
all()
click to toggle source
All tax code groups.
# File lib/tax_cloud/tax_code_groups.rb, line 7 def all @tax_code_groups ||= begin response = TaxCloud.client.request :get_tic_groups tax_code_groups = TaxCloud::Responses::TaxCodeGroups.parse response Hash[tax_code_groups.map { |tax_code_group| [tax_code_group.group_id, tax_code_group] }] end end