Skip to content

Commit 1cf6238

Browse files
authored
Merge pull request #53 from mxenabled/openapi-generator-0.25.0
Generated version 0.25.0
2 parents c19fb71 + d7a3146 commit 1cf6238

8 files changed

Lines changed: 44 additions & 11 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", "{9312B771-D199-4C31-9C76-1DC3A44A8663}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MX.Platform.CSharp", "src\MX.Platform.CSharp\MX.Platform.CSharp.csproj", "{F727530B-2608-45E7-9664-29AED431874C}"
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-
{9312B771-D199-4C31-9C76-1DC3A44A8663}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16-
{9312B771-D199-4C31-9C76-1DC3A44A8663}.Debug|Any CPU.Build.0 = Debug|Any CPU
17-
{9312B771-D199-4C31-9C76-1DC3A44A8663}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{9312B771-D199-4C31-9C76-1DC3A44A8663}.Release|Any CPU.Build.0 = Release|Any CPU
15+
{F727530B-2608-45E7-9664-29AED431874C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{F727530B-2608-45E7-9664-29AED431874C}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{F727530B-2608-45E7-9664-29AED431874C}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{F727530B-2608-45E7-9664-29AED431874C}.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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7394,6 +7394,10 @@ components:
73947394
example: true
73957395
nullable: true
73967396
type: boolean
7397+
has_processed_account_numbers:
7398+
example: true
7399+
nullable: true
7400+
type: boolean
73977401
has_processed_transactions:
73987402
example: false
73997403
nullable: true

docs/MemberStatusResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
99
**ConnectionStatus** | **string** | | [optional]
1010
**Guid** | **string** | | [optional]
1111
**HasProcessedAccounts** | **bool?** | | [optional]
12+
**HasProcessedAccountNumbers** | **bool?** | | [optional]
1213
**HasProcessedTransactions** | **bool?** | | [optional]
1314
**IsAuthenticated** | **bool?** | | [optional]
1415
**IsBeingAggregated** | **bool?** | | [optional]

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.24.0
3+
packageVersion: 0.25.0

src/MX.Platform.CSharp.Test/Model/MemberStatusResponseTests.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,15 @@ public void HasProcessedAccountsTest()
9999
// TODO unit test for the property 'HasProcessedAccounts'
100100
}
101101

102+
/// <summary>
103+
/// Test the property 'HasProcessedAccountNumbers'
104+
/// </summary>
105+
[Fact]
106+
public void HasProcessedAccountNumbersTest()
107+
{
108+
// TODO unit test for the property 'HasProcessedAccountNumbers'
109+
}
110+
102111
/// <summary>
103112
/// Test the property 'HasProcessedTransactions'
104113
/// </summary>

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.24.0";
36+
public const string Version = "0.25.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.24.0/csharp");
120+
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/0.25.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.24.0\n";
549+
report += " SDK Package Version: 0.25.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.24.0</Version>
15+
<Version>0.25.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>

src/MX.Platform.CSharp/Model/MemberStatusResponse.cs

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,19 @@ public partial class MemberStatusResponse : IEquatable<MemberStatusResponse>, IV
3939
/// <param name="connectionStatus">connectionStatus.</param>
4040
/// <param name="guid">guid.</param>
4141
/// <param name="hasProcessedAccounts">hasProcessedAccounts.</param>
42+
/// <param name="hasProcessedAccountNumbers">hasProcessedAccountNumbers.</param>
4243
/// <param name="hasProcessedTransactions">hasProcessedTransactions.</param>
4344
/// <param name="isAuthenticated">isAuthenticated.</param>
4445
/// <param name="isBeingAggregated">isBeingAggregated.</param>
4546
/// <param name="successfullyAggregatedAt">successfullyAggregatedAt.</param>
46-
public MemberStatusResponse(string aggregatedAt = default(string), List<ChallengeResponse> challenges = default(List<ChallengeResponse>), string connectionStatus = default(string), string guid = default(string), bool? hasProcessedAccounts = default(bool?), bool? hasProcessedTransactions = default(bool?), bool? isAuthenticated = default(bool?), bool? isBeingAggregated = default(bool?), string successfullyAggregatedAt = default(string))
47+
public MemberStatusResponse(string aggregatedAt = default(string), List<ChallengeResponse> challenges = default(List<ChallengeResponse>), string connectionStatus = default(string), string guid = default(string), bool? hasProcessedAccounts = default(bool?), bool? hasProcessedAccountNumbers = default(bool?), bool? hasProcessedTransactions = default(bool?), bool? isAuthenticated = default(bool?), bool? isBeingAggregated = default(bool?), string successfullyAggregatedAt = default(string))
4748
{
4849
this.AggregatedAt = aggregatedAt;
4950
this.Challenges = challenges;
5051
this.ConnectionStatus = connectionStatus;
5152
this.Guid = guid;
5253
this.HasProcessedAccounts = hasProcessedAccounts;
54+
this.HasProcessedAccountNumbers = hasProcessedAccountNumbers;
5355
this.HasProcessedTransactions = hasProcessedTransactions;
5456
this.IsAuthenticated = isAuthenticated;
5557
this.IsBeingAggregated = isBeingAggregated;
@@ -90,6 +92,13 @@ public partial class MemberStatusResponse : IEquatable<MemberStatusResponse>, IV
9092
[DataMember(Name = "has_processed_accounts", EmitDefaultValue = true)]
9193
public bool? HasProcessedAccounts { get; set; }
9294

95+
/// <summary>
96+
/// Gets or Sets HasProcessedAccountNumbers
97+
/// </summary>
98+
/// <example>true</example>
99+
[DataMember(Name = "has_processed_account_numbers", EmitDefaultValue = true)]
100+
public bool? HasProcessedAccountNumbers { get; set; }
101+
93102
/// <summary>
94103
/// Gets or Sets HasProcessedTransactions
95104
/// </summary>
@@ -131,6 +140,7 @@ public override string ToString()
131140
sb.Append(" ConnectionStatus: ").Append(ConnectionStatus).Append("\n");
132141
sb.Append(" Guid: ").Append(Guid).Append("\n");
133142
sb.Append(" HasProcessedAccounts: ").Append(HasProcessedAccounts).Append("\n");
143+
sb.Append(" HasProcessedAccountNumbers: ").Append(HasProcessedAccountNumbers).Append("\n");
134144
sb.Append(" HasProcessedTransactions: ").Append(HasProcessedTransactions).Append("\n");
135145
sb.Append(" IsAuthenticated: ").Append(IsAuthenticated).Append("\n");
136146
sb.Append(" IsBeingAggregated: ").Append(IsBeingAggregated).Append("\n");
@@ -196,6 +206,11 @@ public bool Equals(MemberStatusResponse input)
196206
(this.HasProcessedAccounts != null &&
197207
this.HasProcessedAccounts.Equals(input.HasProcessedAccounts))
198208
) &&
209+
(
210+
this.HasProcessedAccountNumbers == input.HasProcessedAccountNumbers ||
211+
(this.HasProcessedAccountNumbers != null &&
212+
this.HasProcessedAccountNumbers.Equals(input.HasProcessedAccountNumbers))
213+
) &&
199214
(
200215
this.HasProcessedTransactions == input.HasProcessedTransactions ||
201216
(this.HasProcessedTransactions != null &&
@@ -247,6 +262,10 @@ public override int GetHashCode()
247262
{
248263
hashCode = (hashCode * 59) + this.HasProcessedAccounts.GetHashCode();
249264
}
265+
if (this.HasProcessedAccountNumbers != null)
266+
{
267+
hashCode = (hashCode * 59) + this.HasProcessedAccountNumbers.GetHashCode();
268+
}
250269
if (this.HasProcessedTransactions != null)
251270
{
252271
hashCode = (hashCode * 59) + this.HasProcessedTransactions.GetHashCode();

0 commit comments

Comments
 (0)