OrderHelperGetOrderLineTaxes Method (IAtomiaBillingApi, String, String, Guid, Guid, Guid, String, String) |
Note: This API is now obsolete.
Gets list of taxes for order line.
Namespace:
Atomia.Billing.Core.Sdk.BusinessLogic
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax [ObsoleteAttribute]
public static List<OrderLineTax> GetOrderLineTaxes(
IAtomiaBillingApi atomiaBillingApi,
string itemTax1,
string itemTax2,
Guid resellerId,
Guid customerId,
Guid itemId,
string customerCountry,
string customerLegalNumber
)
<ObsoleteAttribute>
Public Shared Function GetOrderLineTaxes (
atomiaBillingApi As IAtomiaBillingApi,
itemTax1 As String,
itemTax2 As String,
resellerId As Guid,
customerId As Guid,
itemId As Guid,
customerCountry As String,
customerLegalNumber As String
) As List(Of OrderLineTax)
public:
[ObsoleteAttribute]
static List<OrderLineTax^>^ GetOrderLineTaxes(
IAtomiaBillingApi^ atomiaBillingApi,
String^ itemTax1,
String^ itemTax2,
Guid resellerId,
Guid customerId,
Guid itemId,
String^ customerCountry,
String^ customerLegalNumber
)
[<ObsoleteAttribute>]
static member GetOrderLineTaxes :
atomiaBillingApi : IAtomiaBillingApi *
itemTax1 : string *
itemTax2 : string *
resellerId : Guid *
customerId : Guid *
itemId : Guid *
customerCountry : string *
customerLegalNumber : string -> List<OrderLineTax>
Parameters
- atomiaBillingApi
- Type: Atomia.Billing.Core.SdkIAtomiaBillingApi
IAtomiaBillingApi instance. - 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. - customerCountry
- Type: SystemString
The customer country. - customerLegalNumber
- Type: SystemString
The customer legal number.
Return Value
Type:
ListOrderLineTaxList of OrderLineTaxes.
See Also