ItemHelperGetItemTaxes Method |
Gets the item taxes.
Namespace:
Atomia.Billing.Core.Sdk.BusinessLogic
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax public static List<Tax> GetItemTaxes(
Item item,
Guid resellerId,
Guid customerId,
string countryCode,
string countryTag,
string customerCountryState,
string legalNumber,
IAtomiaBillingApi atomiaBillingApi
)
Public Shared Function GetItemTaxes (
item As Item,
resellerId As Guid,
customerId As Guid,
countryCode As String,
countryTag As String,
customerCountryState As String,
legalNumber As String,
atomiaBillingApi As IAtomiaBillingApi
) As List(Of Tax)
public:
static List<Tax^>^ GetItemTaxes(
Item^ item,
Guid resellerId,
Guid customerId,
String^ countryCode,
String^ countryTag,
String^ customerCountryState,
String^ legalNumber,
IAtomiaBillingApi^ atomiaBillingApi
)
static member GetItemTaxes :
item : Item *
resellerId : Guid *
customerId : Guid *
countryCode : string *
countryTag : string *
customerCountryState : string *
legalNumber : string *
atomiaBillingApi : IAtomiaBillingApi -> List<Tax>
Parameters
- item
- Type: Atomia.Billing.Core.Sdk.BusinessObjectsItem
The item for which taxes are requested. - resellerId
- Type: SystemGuid
The reseller id. - customerId
- Type: SystemGuid
The customer id. - countryCode
- Type: SystemString
The country code. - countryTag
- Type: SystemString
The country tag. - customerCountryState
- Type: SystemString
State of the customer country. - legalNumber
- Type: SystemString
The legal number. - atomiaBillingApi
- Type: Atomia.Billing.Core.SdkIAtomiaBillingApi
The atomia billing API.
Return Value
Type:
ListTaxList of item taxes.
See Also