Skip to content

Commit 429c25f

Browse files
author
devexperience
committed
Generated version 1.6.0
This commit was automatically created by a GitHub Action to generate version 1.6.0 of this library.
1 parent acd7a40 commit 429c25f

10 files changed

Lines changed: 92 additions & 34 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", "{C8E8E929-3A96-4DCD-AA97-C397BB6B28A0}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MX.Platform.CSharp", "src\MX.Platform.CSharp\MX.Platform.CSharp.csproj", "{A311E426-94A7-4837-940D-F197A665A029}"
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-
{C8E8E929-3A96-4DCD-AA97-C397BB6B28A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16-
{C8E8E929-3A96-4DCD-AA97-C397BB6B28A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
17-
{C8E8E929-3A96-4DCD-AA97-C397BB6B28A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{C8E8E929-3A96-4DCD-AA97-C397BB6B28A0}.Release|Any CPU.Build.0 = Release|Any CPU
15+
{A311E426-94A7-4837-940D-F197A665A029}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{A311E426-94A7-4837-940D-F197A665A029}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{A311E426-94A7-4837-940D-F197A665A029}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{A311E426-94A7-4837-940D-F197A665A029}.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: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3316,6 +3316,26 @@ paths:
33163316
schema:
33173317
type: string
33183318
style: simple
3319+
- description: "When set to `false`, the aggregation will not gather holdings\
3320+
\ data. Defaults to `true`."
3321+
example: false
3322+
explode: true
3323+
in: query
3324+
name: include_holdings
3325+
required: false
3326+
schema:
3327+
type: boolean
3328+
style: form
3329+
- description: "When set to `false`, the aggregation will not gather transactions\
3330+
\ data. Defaults to `true`."
3331+
example: false
3332+
explode: true
3333+
in: query
3334+
name: include_transactions
3335+
required: false
3336+
schema:
3337+
type: boolean
3338+
style: form
33193339
responses:
33203340
"202":
33213341
content:
@@ -6695,13 +6715,13 @@ components:
66956715
nullable: true
66966716
type: integer
66976717
premium_amount:
6698-
example: "3900"
6718+
example: 3900
66996719
nullable: true
6700-
type: string
6720+
type: number
67016721
property_type:
6702-
example: 1
6722+
example: VEHICLE
67036723
nullable: true
6704-
type: integer
6724+
type: string
67056725
routing_number:
67066726
example: "68899990000000"
67076727
nullable: true

docs/AccountResponse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ Name | Type | Description | Notes
108108
**PaymentDueAtSetBy** | **int?** | | [optional]
109109
**PayoffBalance** | **decimal?** | | [optional]
110110
**PayoffBalanceSetBy** | **int?** | | [optional]
111-
**PremiumAmount** | **string** | | [optional]
112-
**PropertyType** | **int?** | | [optional]
111+
**PremiumAmount** | **decimal?** | | [optional]
112+
**PropertyType** | **string** | | [optional]
113113
**RoutingNumber** | **string** | | [optional]
114114
**StartedOn** | **string** | | [optional]
115115
**StartedOnSetBy** | **int?** | | [optional]

docs/MxPlatformApi.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ All URIs are relative to *https://api.mx.com*
114114

115115
<a id="aggregatemember"></a>
116116
# **AggregateMember**
117-
> MemberResponseBody AggregateMember (string memberGuid, string userGuid)
117+
> MemberResponseBody AggregateMember (string memberGuid, string userGuid, bool? includeHoldings = null, bool? includeTransactions = null)
118118
119119
Aggregate member
120120

@@ -143,11 +143,13 @@ namespace Example
143143
var apiInstance = new MxPlatformApi(config);
144144
var memberGuid = MBR-7c6f361b-e582-15b6-60c0-358f12466b4b; // string | The unique id for a `member`.
145145
var userGuid = USR-fa7537f3-48aa-a683-a02a-b18940482f54; // string | The unique id for a `user`.
146+
var includeHoldings = false; // bool? | When set to `false`, the aggregation will not gather holdings data. Defaults to `true`. (optional)
147+
var includeTransactions = false; // bool? | When set to `false`, the aggregation will not gather transactions data. Defaults to `true`. (optional)
146148
147149
try
148150
{
149151
// Aggregate member
150-
MemberResponseBody result = apiInstance.AggregateMember(memberGuid, userGuid);
152+
MemberResponseBody result = apiInstance.AggregateMember(memberGuid, userGuid, includeHoldings, includeTransactions);
151153
Debug.WriteLine(result);
152154
}
153155
catch (ApiException e)
@@ -168,7 +170,7 @@ This returns an ApiResponse object which contains the response data, status code
168170
try
169171
{
170172
// Aggregate member
171-
ApiResponse<MemberResponseBody> response = apiInstance.AggregateMemberWithHttpInfo(memberGuid, userGuid);
173+
ApiResponse<MemberResponseBody> response = apiInstance.AggregateMemberWithHttpInfo(memberGuid, userGuid, includeHoldings, includeTransactions);
172174
Debug.Write("Status Code: " + response.StatusCode);
173175
Debug.Write("Response Headers: " + response.Headers);
174176
Debug.Write("Response Body: " + response.Data);
@@ -187,6 +189,8 @@ catch (ApiException e)
187189
|------|------|-------------|-------|
188190
| **memberGuid** | **string** | The unique id for a &#x60;member&#x60;. | |
189191
| **userGuid** | **string** | The unique id for a &#x60;user&#x60;. | |
192+
| **includeHoldings** | **bool?** | When set to &#x60;false&#x60;, the aggregation will not gather holdings data. Defaults to &#x60;true&#x60;. | [optional] |
193+
| **includeTransactions** | **bool?** | When set to &#x60;false&#x60;, the aggregation will not gather transactions data. Defaults to &#x60;true&#x60;. | [optional] |
190194

191195
### Return type
192196

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: 1.5.0
3+
packageVersion: 1.6.0

src/MX.Platform.CSharp.Test/Api/MxPlatformApiTests.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ public void AggregateMemberTest()
6363
// TODO uncomment below to test the method and replace null with proper value
6464
//string memberGuid = null;
6565
//string userGuid = null;
66-
//var response = instance.AggregateMember(memberGuid, userGuid);
66+
//bool? includeHoldings = null;
67+
//bool? includeTransactions = null;
68+
//var response = instance.AggregateMember(memberGuid, userGuid, includeHoldings, includeTransactions);
6769
//Assert.IsType<MemberResponseBody>(response);
6870
}
6971

0 commit comments

Comments
 (0)