Skip to content

Commit

Permalink
TASK: Updating SDK (#247)
Browse files Browse the repository at this point in the history
Co-authored-by: Auto Mation <[email protected]>
  • Loading branch information
github-actions[bot] and Auto Mation authored Aug 31, 2023
1 parent 2fea035 commit b0cadfa
Show file tree
Hide file tree
Showing 188 changed files with 788 additions and 238 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -69,12 +70,12 @@ public ByProjectKeyApiClientsGet WithSort(string sort)

public ByProjectKeyApiClientsGet WithLimit(int limit)
{
return this.AddQueryParam("limit", limit.ToString());
return this.AddQueryParam("limit", limit.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyApiClientsGet WithOffset(int offset)
{
return this.AddQueryParam("offset", offset.ToString());
return this.AddQueryParam("offset", offset.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyApiClientsGet WithWithTotal(bool withTotal)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -72,12 +73,12 @@ public ByProjectKeyAsAssociateByAssociateIdBusinessUnitsGet WithSort(string sort

public ByProjectKeyAsAssociateByAssociateIdBusinessUnitsGet WithLimit(int limit)
{
return this.AddQueryParam("limit", limit.ToString());
return this.AddQueryParam("limit", limit.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAsAssociateByAssociateIdBusinessUnitsGet WithOffset(int offset)
{
return this.AddQueryParam("offset", offset.ToString());
return this.AddQueryParam("offset", offset.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAsAssociateByAssociateIdBusinessUnitsGet WithWithTotal(bool withTotal)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -58,7 +59,7 @@ public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyCar

public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyCartsByIDDelete WithVersion(long version)
{
return this.AddQueryParam("version", version.ToString());
return this.AddQueryParam("version", version.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyCartsByIDDelete WithExpand(string expand)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -75,12 +76,12 @@ public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyCar

public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyCartsGet WithLimit(int limit)
{
return this.AddQueryParam("limit", limit.ToString());
return this.AddQueryParam("limit", limit.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyCartsGet WithOffset(int offset)
{
return this.AddQueryParam("offset", offset.ToString());
return this.AddQueryParam("offset", offset.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyCartsGet WithWithTotal(bool withTotal)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -58,7 +59,7 @@ public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyCar

public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyCartsKeyByKeyDelete WithVersion(long version)
{
return this.AddQueryParam("version", version.ToString());
return this.AddQueryParam("version", version.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyCartsKeyByKeyDelete WithExpand(string expand)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -75,12 +76,12 @@ public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyOrd

public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyOrdersGet WithLimit(int limit)
{
return this.AddQueryParam("limit", limit.ToString());
return this.AddQueryParam("limit", limit.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyOrdersGet WithOffset(int offset)
{
return this.AddQueryParam("offset", offset.ToString());
return this.AddQueryParam("offset", offset.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyOrdersGet WithWithTotal(bool withTotal)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -75,12 +76,12 @@ public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyQuo

public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyQuoteRequestsGet WithLimit(int limit)
{
return this.AddQueryParam("limit", limit.ToString());
return this.AddQueryParam("limit", limit.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyQuoteRequestsGet WithOffset(int offset)
{
return this.AddQueryParam("offset", offset.ToString());
return this.AddQueryParam("offset", offset.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyQuoteRequestsGet WithWithTotal(bool withTotal)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -75,12 +76,12 @@ public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyQuo

public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyQuotesGet WithLimit(int limit)
{
return this.AddQueryParam("limit", limit.ToString());
return this.AddQueryParam("limit", limit.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyQuotesGet WithOffset(int offset)
{
return this.AddQueryParam("offset", offset.ToString());
return this.AddQueryParam("offset", offset.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAsAssociateByAssociateIdInBusinessUnitKeyByBusinessUnitKeyQuotesGet WithWithTotal(bool withTotal)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -42,7 +43,7 @@ public List<string> GetExpand()

public ByProjectKeyAssociateRolesByIDDelete WithVersion(long version)
{
return this.AddQueryParam("version", version.ToString());
return this.AddQueryParam("version", version.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAssociateRolesByIDDelete WithExpand(string expand)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -69,12 +70,12 @@ public ByProjectKeyAssociateRolesGet WithSort(string sort)

public ByProjectKeyAssociateRolesGet WithLimit(int limit)
{
return this.AddQueryParam("limit", limit.ToString());
return this.AddQueryParam("limit", limit.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAssociateRolesGet WithOffset(int offset)
{
return this.AddQueryParam("offset", offset.ToString());
return this.AddQueryParam("offset", offset.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAssociateRolesGet WithWithTotal(bool withTotal)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -42,7 +43,7 @@ public List<string> GetExpand()

public ByProjectKeyAssociateRolesKeyByKeyDelete WithVersion(long version)
{
return this.AddQueryParam("version", version.ToString());
return this.AddQueryParam("version", version.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAssociateRolesKeyByKeyDelete WithExpand(string expand)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -42,7 +43,7 @@ public List<string> GetExpand()

public ByProjectKeyAttributeGroupsByIDDelete WithVersion(long version)
{
return this.AddQueryParam("version", version.ToString());
return this.AddQueryParam("version", version.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAttributeGroupsByIDDelete WithExpand(string expand)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -69,12 +70,12 @@ public ByProjectKeyAttributeGroupsGet WithSort(string sort)

public ByProjectKeyAttributeGroupsGet WithLimit(int limit)
{
return this.AddQueryParam("limit", limit.ToString());
return this.AddQueryParam("limit", limit.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAttributeGroupsGet WithOffset(int offset)
{
return this.AddQueryParam("offset", offset.ToString());
return this.AddQueryParam("offset", offset.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAttributeGroupsGet WithWithTotal(bool withTotal)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -42,7 +43,7 @@ public List<string> GetExpand()

public ByProjectKeyAttributeGroupsKeyByKeyDelete WithVersion(long version)
{
return this.AddQueryParam("version", version.ToString());
return this.AddQueryParam("version", version.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyAttributeGroupsKeyByKeyDelete WithExpand(string expand)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -42,7 +43,7 @@ public List<string> GetExpand()

public ByProjectKeyBusinessUnitsByIDDelete WithVersion(long version)
{
return this.AddQueryParam("version", version.ToString());
return this.AddQueryParam("version", version.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyBusinessUnitsByIDDelete WithExpand(string expand)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -69,12 +70,12 @@ public ByProjectKeyBusinessUnitsGet WithSort(string sort)

public ByProjectKeyBusinessUnitsGet WithLimit(int limit)
{
return this.AddQueryParam("limit", limit.ToString());
return this.AddQueryParam("limit", limit.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyBusinessUnitsGet WithOffset(int offset)
{
return this.AddQueryParam("offset", offset.ToString());
return this.AddQueryParam("offset", offset.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyBusinessUnitsGet WithWithTotal(bool withTotal)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -42,7 +43,7 @@ public List<string> GetExpand()

public ByProjectKeyBusinessUnitsKeyByKeyDelete WithVersion(long version)
{
return this.AddQueryParam("version", version.ToString());
return this.AddQueryParam("version", version.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyBusinessUnitsKeyByKeyDelete WithExpand(string expand)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -42,7 +43,7 @@ public List<string> GetExpand()

public ByProjectKeyCartDiscountsByIDDelete WithVersion(long version)
{
return this.AddQueryParam("version", version.ToString());
return this.AddQueryParam("version", version.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyCartDiscountsByIDDelete WithExpand(string expand)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -69,12 +70,12 @@ public ByProjectKeyCartDiscountsGet WithSort(string sort)

public ByProjectKeyCartDiscountsGet WithLimit(int limit)
{
return this.AddQueryParam("limit", limit.ToString());
return this.AddQueryParam("limit", limit.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyCartDiscountsGet WithOffset(int offset)
{
return this.AddQueryParam("offset", offset.ToString());
return this.AddQueryParam("offset", offset.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyCartDiscountsGet WithWithTotal(bool withTotal)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -42,7 +43,7 @@ public List<string> GetExpand()

public ByProjectKeyCartDiscountsKeyByKeyDelete WithVersion(long version)
{
return this.AddQueryParam("version", version.ToString());
return this.AddQueryParam("version", version.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyCartDiscountsKeyByKeyDelete WithExpand(string expand)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -52,7 +53,7 @@ public ByProjectKeyCartsByIDDelete WithDataErasure(bool dataErasure)

public ByProjectKeyCartsByIDDelete WithVersion(long version)
{
return this.AddQueryParam("version", version.ToString());
return this.AddQueryParam("version", version.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyCartsByIDDelete WithExpand(string expand)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -69,12 +70,12 @@ public ByProjectKeyCartsGet WithSort(string sort)

public ByProjectKeyCartsGet WithLimit(int limit)
{
return this.AddQueryParam("limit", limit.ToString());
return this.AddQueryParam("limit", limit.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyCartsGet WithOffset(int offset)
{
return this.AddQueryParam("offset", offset.ToString());
return this.AddQueryParam("offset", offset.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyCartsGet WithWithTotal(bool withTotal)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down Expand Up @@ -52,7 +53,7 @@ public ByProjectKeyCartsKeyByKeyDelete WithDataErasure(bool dataErasure)

public ByProjectKeyCartsKeyByKeyDelete WithVersion(long version)
{
return this.AddQueryParam("version", version.ToString());
return this.AddQueryParam("version", version.ToString(CultureInfo.InvariantCulture));
}

public ByProjectKeyCartsKeyByKeyDelete WithExpand(string expand)
Expand Down
Loading

0 comments on commit b0cadfa

Please sign in to comment.