# VeloPayments::CompanyV1 ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **name** | **String** | | **tax_id** | **String** | Company Tax Id (EIN) must be 9 numeric characters. Must match the regular expression ```[\\d]{9}```. | [optional] **operating_name** | **String** | | [optional] ## Code Sample ```ruby require 'VeloPayments' instance = VeloPayments::CompanyV1.new(name: ABC Ltd, tax_id: 123, operating_name: ABC) ```