17
17
* @author Sachin Baijal <sachin.baijal@avalara.com>
18
18
* @copyright 2004-2023 Avalara, Inc.
19
19
* @license https://www.apache.org/licenses/LICENSE-2.0
20
- * @version 24.11.2
20
+ * @version 24.12.0
21
21
* @link https://github.com/avadev/AvaTax-REST-V2-DotNet-SDK
22
22
*/
23
23
@@ -28,7 +28,7 @@ public partial class AvaTaxClient : IAvaTaxClient
28
28
/// <summary>
29
29
/// Returns the version number of the API used to generate this class
30
30
/// </summary>
31
- public static string API_VERSION { get { return "24.11.2 "; } }
31
+ public static string API_VERSION { get { return "24.12.0 "; } }
32
32
33
33
#region Methods
34
34
@@ -6303,12 +6303,16 @@ public FirmClientLinkageOutputModel UpdateFirmClientLinkage(FirmClientLinkageMod
6303
6303
/// <param name="id">The unique ID number of this funding request</param>
6304
6304
/// <param name="businessUnit">The company's business unit</param>
6305
6305
/// <param name="subscriptionType">The company's subscription type</param>
6306
- public FundingStatusModel ActivateFundingRequest(Int32 id, POABusinessUnit? businessUnit, POASubscriptionType? subscriptionType)
6306
+ /// <param name="currency">Currency</param>
6307
+ /// <param name="agreementType">Agreement Type</param>
6308
+ public FundingStatusModel ActivateFundingRequest(Int32 id, POABusinessUnit? businessUnit, POASubscriptionType? subscriptionType, String currency, String agreementType)
6307
6309
{
6308
6310
var path = new AvaTaxPath("/api/v2/fundingrequests/{id}/widget");
6309
6311
path.ApplyField("id", id);
6310
6312
path.AddQuery("businessUnit", businessUnit);
6311
6313
path.AddQuery("subscriptionType", subscriptionType);
6314
+ path.AddQuery("currency", currency);
6315
+ path.AddQuery("agreementType", agreementType);
6312
6316
_clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID, API_VERSION);
6313
6317
return RestCall<FundingStatusModel>("GET", path, null);
6314
6318
}
@@ -19416,12 +19420,16 @@ public async Task<FirmClientLinkageOutputModel> UpdateFirmClientLinkageAsync(Fir
19416
19420
/// <param name="id">The unique ID number of this funding request</param>
19417
19421
/// <param name="businessUnit">The company's business unit</param>
19418
19422
/// <param name="subscriptionType">The company's subscription type</param>
19419
- public async Task<FundingStatusModel> ActivateFundingRequestAsync(Int32 id, POABusinessUnit? businessUnit, POASubscriptionType? subscriptionType)
19423
+ /// <param name="currency">Currency</param>
19424
+ /// <param name="agreementType">Agreement Type</param>
19425
+ public async Task<FundingStatusModel> ActivateFundingRequestAsync(Int32 id, POABusinessUnit? businessUnit, POASubscriptionType? subscriptionType, String currency, String agreementType)
19420
19426
{
19421
19427
var path = new AvaTaxPath("/api/v2/fundingrequests/{id}/widget");
19422
19428
path.ApplyField("id", id);
19423
19429
path.AddQuery("businessUnit", businessUnit);
19424
19430
path.AddQuery("subscriptionType", subscriptionType);
19431
+ path.AddQuery("currency", currency);
19432
+ path.AddQuery("agreementType", agreementType);
19425
19433
_clientHeaders[Constants.AVALARA_CLIENT_HEADER]=string.Format(ClientID , API_VERSION);
19426
19434
return await RestCallAsync<FundingStatusModel>("GET", path, null).ConfigureAwait(false);
19427
19435
}
0 commit comments