Skip to content

Commit

Permalink
Merge pull request #53 from mxenabled/openapi-generator-0.25.0
Browse files Browse the repository at this point in the history
Generated version 0.25.0
  • Loading branch information
nickitza authored Jun 20, 2024
2 parents c19fb71 + d7a3146 commit 1cf6238
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 11 deletions.
10 changes: 5 additions & 5 deletions MX.Platform.CSharp.sln
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
VisualStudioVersion = 12.0.0.0
MinimumVisualStudioVersion = 10.0.0.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MX.Platform.CSharp", "src\MX.Platform.CSharp\MX.Platform.CSharp.csproj", "{9312B771-D199-4C31-9C76-1DC3A44A8663}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MX.Platform.CSharp", "src\MX.Platform.CSharp\MX.Platform.CSharp.csproj", "{F727530B-2608-45E7-9664-29AED431874C}"
EndProject
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}"
EndProject
Expand All @@ -12,10 +12,10 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{9312B771-D199-4C31-9C76-1DC3A44A8663}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9312B771-D199-4C31-9C76-1DC3A44A8663}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9312B771-D199-4C31-9C76-1DC3A44A8663}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9312B771-D199-4C31-9C76-1DC3A44A8663}.Release|Any CPU.Build.0 = Release|Any CPU
{F727530B-2608-45E7-9664-29AED431874C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F727530B-2608-45E7-9664-29AED431874C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F727530B-2608-45E7-9664-29AED431874C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F727530B-2608-45E7-9664-29AED431874C}.Release|Any CPU.Build.0 = Release|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down
4 changes: 4 additions & 0 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7394,6 +7394,10 @@ components:
example: true
nullable: true
type: boolean
has_processed_account_numbers:
example: true
nullable: true
type: boolean
has_processed_transactions:
example: false
nullable: true
Expand Down
1 change: 1 addition & 0 deletions docs/MemberStatusResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Name | Type | Description | Notes
**ConnectionStatus** | **string** | | [optional]
**Guid** | **string** | | [optional]
**HasProcessedAccounts** | **bool?** | | [optional]
**HasProcessedAccountNumbers** | **bool?** | | [optional]
**HasProcessedTransactions** | **bool?** | | [optional]
**IsAuthenticated** | **bool?** | | [optional]
**IsBeingAggregated** | **bool?** | | [optional]
Expand Down
2 changes: 1 addition & 1 deletion openapi/config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
packageName: MX.Platform.CSharp
packageVersion: 0.24.0
packageVersion: 0.25.0
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,15 @@ public void HasProcessedAccountsTest()
// TODO unit test for the property 'HasProcessedAccounts'
}

/// <summary>
/// Test the property 'HasProcessedAccountNumbers'
/// </summary>
[Fact]
public void HasProcessedAccountNumbersTest()
{
// TODO unit test for the property 'HasProcessedAccountNumbers'
}

/// <summary>
/// Test the property 'HasProcessedTransactions'
/// </summary>
Expand Down
6 changes: 3 additions & 3 deletions src/MX.Platform.CSharp/Client/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class Configuration : IReadableConfiguration
/// Version of the package.
/// </summary>
/// <value>Version of the package.</value>
public const string Version = "0.24.0";
public const string Version = "0.25.0";

/// <summary>
/// Identifier for ISO 8601 DateTime Format
Expand Down Expand Up @@ -117,7 +117,7 @@ public class Configuration : IReadableConfiguration
public Configuration()
{
Proxy = null;
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/0.24.0/csharp");
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/0.25.0/csharp");
BasePath = "https://api.mx.com";
DefaultHeaders = new ConcurrentDictionary<string, string>();
ApiKey = new ConcurrentDictionary<string, string>();
Expand Down Expand Up @@ -546,7 +546,7 @@ public static string ToDebugReport()
report += " OS: " + System.Environment.OSVersion + "\n";
report += " .NET Framework Version: " + System.Environment.Version + "\n";
report += " Version of the API: 0.1.0\n";
report += " SDK Package Version: 0.24.0\n";
report += " SDK Package Version: 0.25.0\n";

return report;
}
Expand Down
2 changes: 1 addition & 1 deletion src/MX.Platform.CSharp/MX.Platform.CSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<Description>A library generated from a OpenAPI doc</Description>
<Copyright>No Copyright</Copyright>
<RootNamespace>MX.Platform.CSharp</RootNamespace>
<Version>0.24.0</Version>
<Version>0.25.0</Version>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\MX.Platform.CSharp.xml</DocumentationFile>
<RepositoryUrl>https://github.com/GIT_USER_ID/GIT_REPO_ID.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand Down
21 changes: 20 additions & 1 deletion src/MX.Platform.CSharp/Model/MemberStatusResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,19 @@ public partial class MemberStatusResponse : IEquatable<MemberStatusResponse>, IV
/// <param name="connectionStatus">connectionStatus.</param>
/// <param name="guid">guid.</param>
/// <param name="hasProcessedAccounts">hasProcessedAccounts.</param>
/// <param name="hasProcessedAccountNumbers">hasProcessedAccountNumbers.</param>
/// <param name="hasProcessedTransactions">hasProcessedTransactions.</param>
/// <param name="isAuthenticated">isAuthenticated.</param>
/// <param name="isBeingAggregated">isBeingAggregated.</param>
/// <param name="successfullyAggregatedAt">successfullyAggregatedAt.</param>
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))
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))
{
this.AggregatedAt = aggregatedAt;
this.Challenges = challenges;
this.ConnectionStatus = connectionStatus;
this.Guid = guid;
this.HasProcessedAccounts = hasProcessedAccounts;
this.HasProcessedAccountNumbers = hasProcessedAccountNumbers;
this.HasProcessedTransactions = hasProcessedTransactions;
this.IsAuthenticated = isAuthenticated;
this.IsBeingAggregated = isBeingAggregated;
Expand Down Expand Up @@ -90,6 +92,13 @@ public partial class MemberStatusResponse : IEquatable<MemberStatusResponse>, IV
[DataMember(Name = "has_processed_accounts", EmitDefaultValue = true)]
public bool? HasProcessedAccounts { get; set; }

/// <summary>
/// Gets or Sets HasProcessedAccountNumbers
/// </summary>
/// <example>true</example>
[DataMember(Name = "has_processed_account_numbers", EmitDefaultValue = true)]
public bool? HasProcessedAccountNumbers { get; set; }

/// <summary>
/// Gets or Sets HasProcessedTransactions
/// </summary>
Expand Down Expand Up @@ -131,6 +140,7 @@ public override string ToString()
sb.Append(" ConnectionStatus: ").Append(ConnectionStatus).Append("\n");
sb.Append(" Guid: ").Append(Guid).Append("\n");
sb.Append(" HasProcessedAccounts: ").Append(HasProcessedAccounts).Append("\n");
sb.Append(" HasProcessedAccountNumbers: ").Append(HasProcessedAccountNumbers).Append("\n");
sb.Append(" HasProcessedTransactions: ").Append(HasProcessedTransactions).Append("\n");
sb.Append(" IsAuthenticated: ").Append(IsAuthenticated).Append("\n");
sb.Append(" IsBeingAggregated: ").Append(IsBeingAggregated).Append("\n");
Expand Down Expand Up @@ -196,6 +206,11 @@ public bool Equals(MemberStatusResponse input)
(this.HasProcessedAccounts != null &&
this.HasProcessedAccounts.Equals(input.HasProcessedAccounts))
) &&
(
this.HasProcessedAccountNumbers == input.HasProcessedAccountNumbers ||
(this.HasProcessedAccountNumbers != null &&
this.HasProcessedAccountNumbers.Equals(input.HasProcessedAccountNumbers))
) &&
(
this.HasProcessedTransactions == input.HasProcessedTransactions ||
(this.HasProcessedTransactions != null &&
Expand Down Expand Up @@ -247,6 +262,10 @@ public override int GetHashCode()
{
hashCode = (hashCode * 59) + this.HasProcessedAccounts.GetHashCode();
}
if (this.HasProcessedAccountNumbers != null)
{
hashCode = (hashCode * 59) + this.HasProcessedAccountNumbers.GetHashCode();
}
if (this.HasProcessedTransactions != null)
{
hashCode = (hashCode * 59) + this.HasProcessedTransactions.GetHashCode();
Expand Down

0 comments on commit 1cf6238

Please sign in to comment.