Skip to content

Commit e3f6150

Browse files
author
devexperience
committed
Generated version 0.36.0
This commit was automatically created by a GitHub Action to generate version 0.36.0 of this library.
1 parent b62db45 commit e3f6150

7 files changed

Lines changed: 33 additions & 32 deletions

File tree

MX.Platform.CSharp.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 2012
33
VisualStudioVersion = 12.0.0.0
44
MinimumVisualStudioVersion = 10.0.0.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MX.Platform.CSharp", "src\MX.Platform.CSharp\MX.Platform.CSharp.csproj", "{C64609CC-0BE4-466A-85E4-96B3651E9221}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MX.Platform.CSharp", "src\MX.Platform.CSharp\MX.Platform.CSharp.csproj", "{C95EAB8C-6B6C-4EE5-B8A4-F76E33D6748F}"
66
EndProject
77
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MX.Platform.CSharp.Test", "src\MX.Platform.CSharp.Test\MX.Platform.CSharp.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}"
88
EndProject
@@ -12,10 +12,10 @@ Global
1212
Release|Any CPU = Release|Any CPU
1313
EndGlobalSection
1414
GlobalSection(ProjectConfigurationPlatforms) = postSolution
15-
{C64609CC-0BE4-466A-85E4-96B3651E9221}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16-
{C64609CC-0BE4-466A-85E4-96B3651E9221}.Debug|Any CPU.Build.0 = Debug|Any CPU
17-
{C64609CC-0BE4-466A-85E4-96B3651E9221}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{C64609CC-0BE4-466A-85E4-96B3651E9221}.Release|Any CPU.Build.0 = Release|Any CPU
15+
{C95EAB8C-6B6C-4EE5-B8A4-F76E33D6748F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{C95EAB8C-6B6C-4EE5-B8A4-F76E33D6748F}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{C95EAB8C-6B6C-4EE5-B8A4-F76E33D6748F}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{C95EAB8C-6B6C-4EE5-B8A4-F76E33D6748F}.Release|Any CPU.Build.0 = Release|Any CPU
1919
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2020
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU
2121
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU

api/openapi.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3198,8 +3198,10 @@ paths:
31983198
tags:
31993199
- mx_platform
32003200
put:
3201-
description: This endpoint allows you to update certain attributes of an `account`
3202-
resource.
3201+
description: "This endpoint allows you to update certain attributes of an `account`\
3202+
\ resource, including manual accounts. For manual accounts, you can update\
3203+
\ every field listed. For aggregated accounts, you can only update `is_business`,\
3204+
\ `is_hidden` and `metadata`."
32033205
operationId: updateAccountByMember
32043206
parameters:
32053207
- description: The unique id for an `account`.
@@ -3234,7 +3236,6 @@ paths:
32343236
application/json:
32353237
schema:
32363238
$ref: '#/components/schemas/AccountUpdateRequestBody'
3237-
description: Account object to be created with optional parameters (is_hidden)
32383239
required: true
32393240
responses:
32403241
"200":

docs/MxPlatformApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9061,7 +9061,7 @@ catch (ApiException e)
90619061
90629062
Update account by member
90639063

9064-
This endpoint allows you to update certain attributes of an `account` resource.
9064+
This endpoint allows you to update certain attributes of an `account` resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update `is_business`, `is_hidden` and `metadata`.
90659065

90669066
### Example
90679067
```csharp
@@ -9087,7 +9087,7 @@ namespace Example
90879087
var accountGuid = ACT-06d7f44b-caae-0f6e-1384-01f52e75dcb1; // string | The unique id for an `account`.
90889088
var memberGuid = MBR-7c6f361b-e582-15b6-60c0-358f12466b4b; // string | The unique id for a `member`.
90899089
var userGuid = USR-fa7537f3-48aa-a683-a02a-b18940482f54; // string | The unique id for a `user`.
9090-
var accountUpdateRequestBody = new AccountUpdateRequestBody(); // AccountUpdateRequestBody | Account object to be created with optional parameters (is_hidden)
9090+
var accountUpdateRequestBody = new AccountUpdateRequestBody(); // AccountUpdateRequestBody |
90919091
90929092
try
90939093
{
@@ -9133,7 +9133,7 @@ catch (ApiException e)
91339133
| **accountGuid** | **string** | The unique id for an `account`. | |
91349134
| **memberGuid** | **string** | The unique id for a `member`. | |
91359135
| **userGuid** | **string** | The unique id for a `user`. | |
9136-
| **accountUpdateRequestBody** | [**AccountUpdateRequestBody**](AccountUpdateRequestBody.md) | Account object to be created with optional parameters (is_hidden) | |
9136+
| **accountUpdateRequestBody** | [**AccountUpdateRequestBody**](AccountUpdateRequestBody.md) | | |
91379137

91389138
### Return type
91399139

openapi/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
---
22
packageName: MX.Platform.CSharp
3-
packageVersion: 0.35.0
3+
packageVersion: 0.36.0

src/MX.Platform.CSharp/Api/MxPlatformApi.cs

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2461,13 +2461,13 @@ public interface IMxPlatformApiSync : IApiAccessor
24612461
/// Update account by member
24622462
/// </summary>
24632463
/// <remarks>
2464-
/// This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource.
2464+
/// This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update &#x60;is_business&#x60;, &#x60;is_hidden&#x60; and &#x60;metadata&#x60;.
24652465
/// </remarks>
24662466
/// <exception cref="MX.Platform.CSharp.Client.ApiException">Thrown when fails to make API call</exception>
24672467
/// <param name="accountGuid">The unique id for an &#x60;account&#x60;.</param>
24682468
/// <param name="memberGuid">The unique id for a &#x60;member&#x60;.</param>
24692469
/// <param name="userGuid">The unique id for a &#x60;user&#x60;.</param>
2470-
/// <param name="accountUpdateRequestBody">Account object to be created with optional parameters (is_hidden)</param>
2470+
/// <param name="accountUpdateRequestBody"></param>
24712471
/// <param name="operationIndex">Index associated with the operation.</param>
24722472
/// <returns>AccountResponseBody</returns>
24732473
AccountResponseBody UpdateAccountByMember(string accountGuid, string memberGuid, string userGuid, AccountUpdateRequestBody accountUpdateRequestBody, int operationIndex = 0);
@@ -2476,13 +2476,13 @@ public interface IMxPlatformApiSync : IApiAccessor
24762476
/// Update account by member
24772477
/// </summary>
24782478
/// <remarks>
2479-
/// This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource.
2479+
/// This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update &#x60;is_business&#x60;, &#x60;is_hidden&#x60; and &#x60;metadata&#x60;.
24802480
/// </remarks>
24812481
/// <exception cref="MX.Platform.CSharp.Client.ApiException">Thrown when fails to make API call</exception>
24822482
/// <param name="accountGuid">The unique id for an &#x60;account&#x60;.</param>
24832483
/// <param name="memberGuid">The unique id for a &#x60;member&#x60;.</param>
24842484
/// <param name="userGuid">The unique id for a &#x60;user&#x60;.</param>
2485-
/// <param name="accountUpdateRequestBody">Account object to be created with optional parameters (is_hidden)</param>
2485+
/// <param name="accountUpdateRequestBody"></param>
24862486
/// <param name="operationIndex">Index associated with the operation.</param>
24872487
/// <returns>ApiResponse of AccountResponseBody</returns>
24882488
ApiResponse<AccountResponseBody> UpdateAccountByMemberWithHttpInfo(string accountGuid, string memberGuid, string userGuid, AccountUpdateRequestBody accountUpdateRequestBody, int operationIndex = 0);
@@ -5508,13 +5508,13 @@ public interface IMxPlatformApiAsync : IApiAccessor
55085508
/// Update account by member
55095509
/// </summary>
55105510
/// <remarks>
5511-
/// This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource.
5511+
/// This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update &#x60;is_business&#x60;, &#x60;is_hidden&#x60; and &#x60;metadata&#x60;.
55125512
/// </remarks>
55135513
/// <exception cref="MX.Platform.CSharp.Client.ApiException">Thrown when fails to make API call</exception>
55145514
/// <param name="accountGuid">The unique id for an &#x60;account&#x60;.</param>
55155515
/// <param name="memberGuid">The unique id for a &#x60;member&#x60;.</param>
55165516
/// <param name="userGuid">The unique id for a &#x60;user&#x60;.</param>
5517-
/// <param name="accountUpdateRequestBody">Account object to be created with optional parameters (is_hidden)</param>
5517+
/// <param name="accountUpdateRequestBody"></param>
55185518
/// <param name="operationIndex">Index associated with the operation.</param>
55195519
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
55205520
/// <returns>Task of AccountResponseBody</returns>
@@ -5524,13 +5524,13 @@ public interface IMxPlatformApiAsync : IApiAccessor
55245524
/// Update account by member
55255525
/// </summary>
55265526
/// <remarks>
5527-
/// This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource.
5527+
/// This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update &#x60;is_business&#x60;, &#x60;is_hidden&#x60; and &#x60;metadata&#x60;.
55285528
/// </remarks>
55295529
/// <exception cref="MX.Platform.CSharp.Client.ApiException">Thrown when fails to make API call</exception>
55305530
/// <param name="accountGuid">The unique id for an &#x60;account&#x60;.</param>
55315531
/// <param name="memberGuid">The unique id for a &#x60;member&#x60;.</param>
55325532
/// <param name="userGuid">The unique id for a &#x60;user&#x60;.</param>
5533-
/// <param name="accountUpdateRequestBody">Account object to be created with optional parameters (is_hidden)</param>
5533+
/// <param name="accountUpdateRequestBody"></param>
55345534
/// <param name="operationIndex">Index associated with the operation.</param>
55355535
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
55365536
/// <returns>Task of ApiResponse (AccountResponseBody)</returns>
@@ -22745,13 +22745,13 @@ public MX.Platform.CSharp.Client.ApiResponse<MemberResponseBody> ResumeAggregati
2274522745
}
2274622746

2274722747
/// <summary>
22748-
/// Update account by member This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource.
22748+
/// Update account by member This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update &#x60;is_business&#x60;, &#x60;is_hidden&#x60; and &#x60;metadata&#x60;.
2274922749
/// </summary>
2275022750
/// <exception cref="MX.Platform.CSharp.Client.ApiException">Thrown when fails to make API call</exception>
2275122751
/// <param name="accountGuid">The unique id for an &#x60;account&#x60;.</param>
2275222752
/// <param name="memberGuid">The unique id for a &#x60;member&#x60;.</param>
2275322753
/// <param name="userGuid">The unique id for a &#x60;user&#x60;.</param>
22754-
/// <param name="accountUpdateRequestBody">Account object to be created with optional parameters (is_hidden)</param>
22754+
/// <param name="accountUpdateRequestBody"></param>
2275522755
/// <param name="operationIndex">Index associated with the operation.</param>
2275622756
/// <returns>AccountResponseBody</returns>
2275722757
public AccountResponseBody UpdateAccountByMember(string accountGuid, string memberGuid, string userGuid, AccountUpdateRequestBody accountUpdateRequestBody, int operationIndex = 0)
@@ -22761,13 +22761,13 @@ public AccountResponseBody UpdateAccountByMember(string accountGuid, string memb
2276122761
}
2276222762

2276322763
/// <summary>
22764-
/// Update account by member This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource.
22764+
/// Update account by member This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update &#x60;is_business&#x60;, &#x60;is_hidden&#x60; and &#x60;metadata&#x60;.
2276522765
/// </summary>
2276622766
/// <exception cref="MX.Platform.CSharp.Client.ApiException">Thrown when fails to make API call</exception>
2276722767
/// <param name="accountGuid">The unique id for an &#x60;account&#x60;.</param>
2276822768
/// <param name="memberGuid">The unique id for a &#x60;member&#x60;.</param>
2276922769
/// <param name="userGuid">The unique id for a &#x60;user&#x60;.</param>
22770-
/// <param name="accountUpdateRequestBody">Account object to be created with optional parameters (is_hidden)</param>
22770+
/// <param name="accountUpdateRequestBody"></param>
2277122771
/// <param name="operationIndex">Index associated with the operation.</param>
2277222772
/// <returns>ApiResponse of AccountResponseBody</returns>
2277322773
public MX.Platform.CSharp.Client.ApiResponse<AccountResponseBody> UpdateAccountByMemberWithHttpInfo(string accountGuid, string memberGuid, string userGuid, AccountUpdateRequestBody accountUpdateRequestBody, int operationIndex = 0)
@@ -22849,13 +22849,13 @@ public MX.Platform.CSharp.Client.ApiResponse<AccountResponseBody> UpdateAccountB
2284922849
}
2285022850

2285122851
/// <summary>
22852-
/// Update account by member This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource.
22852+
/// Update account by member This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update &#x60;is_business&#x60;, &#x60;is_hidden&#x60; and &#x60;metadata&#x60;.
2285322853
/// </summary>
2285422854
/// <exception cref="MX.Platform.CSharp.Client.ApiException">Thrown when fails to make API call</exception>
2285522855
/// <param name="accountGuid">The unique id for an &#x60;account&#x60;.</param>
2285622856
/// <param name="memberGuid">The unique id for a &#x60;member&#x60;.</param>
2285722857
/// <param name="userGuid">The unique id for a &#x60;user&#x60;.</param>
22858-
/// <param name="accountUpdateRequestBody">Account object to be created with optional parameters (is_hidden)</param>
22858+
/// <param name="accountUpdateRequestBody"></param>
2285922859
/// <param name="operationIndex">Index associated with the operation.</param>
2286022860
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
2286122861
/// <returns>Task of AccountResponseBody</returns>
@@ -22866,13 +22866,13 @@ public MX.Platform.CSharp.Client.ApiResponse<AccountResponseBody> UpdateAccountB
2286622866
}
2286722867

2286822868
/// <summary>
22869-
/// Update account by member This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource.
22869+
/// Update account by member This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update &#x60;is_business&#x60;, &#x60;is_hidden&#x60; and &#x60;metadata&#x60;.
2287022870
/// </summary>
2287122871
/// <exception cref="MX.Platform.CSharp.Client.ApiException">Thrown when fails to make API call</exception>
2287222872
/// <param name="accountGuid">The unique id for an &#x60;account&#x60;.</param>
2287322873
/// <param name="memberGuid">The unique id for a &#x60;member&#x60;.</param>
2287422874
/// <param name="userGuid">The unique id for a &#x60;user&#x60;.</param>
22875-
/// <param name="accountUpdateRequestBody">Account object to be created with optional parameters (is_hidden)</param>
22875+
/// <param name="accountUpdateRequestBody"></param>
2287622876
/// <param name="operationIndex">Index associated with the operation.</param>
2287722877
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
2287822878
/// <returns>Task of ApiResponse (AccountResponseBody)</returns>

src/MX.Platform.CSharp/Client/Configuration.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class Configuration : IReadableConfiguration
3333
/// Version of the package.
3434
/// </summary>
3535
/// <value>Version of the package.</value>
36-
public const string Version = "0.35.0";
36+
public const string Version = "0.36.0";
3737

3838
/// <summary>
3939
/// Identifier for ISO 8601 DateTime Format
@@ -117,7 +117,7 @@ public class Configuration : IReadableConfiguration
117117
public Configuration()
118118
{
119119
Proxy = null;
120-
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/0.35.0/csharp");
120+
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/0.36.0/csharp");
121121
BasePath = "https://api.mx.com";
122122
DefaultHeaders = new ConcurrentDictionary<string, string>();
123123
ApiKey = new ConcurrentDictionary<string, string>();
@@ -546,7 +546,7 @@ public static string ToDebugReport()
546546
report += " OS: " + System.Environment.OSVersion + "\n";
547547
report += " .NET Framework Version: " + System.Environment.Version + "\n";
548548
report += " Version of the API: 0.1.0\n";
549-
report += " SDK Package Version: 0.35.0\n";
549+
report += " SDK Package Version: 0.36.0\n";
550550

551551
return report;
552552
}

src/MX.Platform.CSharp/MX.Platform.CSharp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<Description>A library generated from a OpenAPI doc</Description>
1313
<Copyright>No Copyright</Copyright>
1414
<RootNamespace>MX.Platform.CSharp</RootNamespace>
15-
<Version>0.35.0</Version>
15+
<Version>0.36.0</Version>
1616
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\MX.Platform.CSharp.xml</DocumentationFile>
1717
<RepositoryUrl>https://github.com/GIT_USER_ID/GIT_REPO_ID.git</RepositoryUrl>
1818
<RepositoryType>git</RepositoryType>

0 commit comments

Comments
 (0)