InvoiceHelperGetInvoiceLineTaxes Method |
Gets the invoice line 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<InvoiceLineTax> GetInvoiceLineTaxes(
string itemTax1,
string itemTax2,
Guid resellerId,
Guid customerId,
Guid itemId,
string countryCode,
string countryTag,
string customerCountryState,
string legalNumber,
IAtomiaBillingApi atomiaBillingApi
)
Public Shared Function GetInvoiceLineTaxes (
itemTax1 As String,
itemTax2 As String,
resellerId As Guid,
customerId As Guid,
itemId As Guid,
countryCode As String,
countryTag As String,
customerCountryState As String,
legalNumber As String,
atomiaBillingApi As IAtomiaBillingApi
) As List(Of InvoiceLineTax)
public:
static List<InvoiceLineTax^>^ GetInvoiceLineTaxes(
String^ itemTax1,
String^ itemTax2,
Guid resellerId,
Guid customerId,
Guid itemId,
String^ countryCode,
String^ countryTag,
String^ customerCountryState,
String^ legalNumber,
IAtomiaBillingApi^ atomiaBillingApi
)
static member GetInvoiceLineTaxes :
itemTax1 : string *
itemTax2 : string *
resellerId : Guid *
customerId : Guid *
itemId : Guid *
countryCode : string *
countryTag : string *
customerCountryState : string *
legalNumber : string *
atomiaBillingApi : IAtomiaBillingApi -> List<InvoiceLineTax>
Parameters
- itemTax1
- Type: SystemString
The item tax1. - itemTax2
- Type: SystemString
The item tax2. - resellerId
- Type: SystemGuid
The reseller id. - customerId
- Type: SystemGuid
The customer id. - itemId
- Type: SystemGuid
The item 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:
ListInvoiceLineTaxList of created invoice line taxes.
See Also