Skip to content

Commit 7e1b578

Browse files
author
devexperience
committed
Generated version 0.34.0
This pull request was automatically generated by a GitHub Action to generate version 0.34.0 of this library.
1 parent a558674 commit 7e1b578

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", "{253E696C-BF2B-4BB4-B8A2-EAB0A813D9CF}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MX.Platform.CSharp", "src\MX.Platform.CSharp\MX.Platform.CSharp.csproj", "{1BD50EEF-0EFC-4912-B1C9-FFF69B9F7731}"
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-
{253E696C-BF2B-4BB4-B8A2-EAB0A813D9CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16-
{253E696C-BF2B-4BB4-B8A2-EAB0A813D9CF}.Debug|Any CPU.Build.0 = Debug|Any CPU
17-
{253E696C-BF2B-4BB4-B8A2-EAB0A813D9CF}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{253E696C-BF2B-4BB4-B8A2-EAB0A813D9CF}.Release|Any CPU.Build.0 = Release|Any CPU
15+
{1BD50EEF-0EFC-4912-B1C9-FFF69B9F7731}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{1BD50EEF-0EFC-4912-B1C9-FFF69B9F7731}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{1BD50EEF-0EFC-4912-B1C9-FFF69B9F7731}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{1BD50EEF-0EFC-4912-B1C9-FFF69B9F7731}.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
@@ -5792,6 +5792,10 @@ components:
57925792
example: 2015-10-13T17:57:37.000Z
57935793
nullable: true
57945794
type: string
5795+
statement_balance:
5796+
example: 100.1
5797+
nullable: true
5798+
type: number
57955799
subtype:
57965800
example: NONE
57975801
nullable: true

docs/AccountResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ Name | Type | Description | Notes
5252
**PropertyType** | **string** | | [optional]
5353
**RoutingNumber** | **string** | | [optional]
5454
**StartedOn** | **string** | | [optional]
55+
**StatementBalance** | **decimal?** | | [optional]
5556
**Subtype** | **string** | | [optional]
5657
**TodayUglAmount** | **decimal?** | | [optional]
5758
**TodayUglPercentage** | **decimal?** | | [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.33.0
3+
packageVersion: 0.34.0

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,15 @@ public void StartedOnTest()
486486
// TODO unit test for the property 'StartedOn'
487487
}
488488

489+
/// <summary>
490+
/// Test the property 'StatementBalance'
491+
/// </summary>
492+
[Fact]
493+
public void StatementBalanceTest()
494+
{
495+
// TODO unit test for the property 'StatementBalance'
496+
}
497+
489498
/// <summary>
490499
/// Test the property 'Subtype'
491500
/// </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.33.0";
36+
public const string Version = "0.34.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.33.0/csharp");
120+
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/0.34.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.33.0\n";
549+
report += " SDK Package Version: 0.34.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.33.0</Version>
15+
<Version>0.34.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/AccountResponse.cs

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ public partial class AccountResponse : IEquatable<AccountResponse>, IValidatable
8282
/// <param name="propertyType">propertyType.</param>
8383
/// <param name="routingNumber">routingNumber.</param>
8484
/// <param name="startedOn">startedOn.</param>
85+
/// <param name="statementBalance">statementBalance.</param>
8586
/// <param name="subtype">subtype.</param>
8687
/// <param name="todayUglAmount">todayUglAmount.</param>
8788
/// <param name="todayUglPercentage">todayUglPercentage.</param>
@@ -91,7 +92,7 @@ public partial class AccountResponse : IEquatable<AccountResponse>, IValidatable
9192
/// <param name="updatedAt">updatedAt.</param>
9293
/// <param name="userGuid">userGuid.</param>
9394
/// <param name="userId">userId.</param>
94-
public AccountResponse(string accountNumber = default(string), string accountOwnership = default(string), string annuityPolicyToDate = default(string), string annuityProvider = default(string), decimal? annuityTermYear = default(decimal?), decimal? apr = default(decimal?), decimal? apy = default(decimal?), decimal? availableBalance = default(decimal?), decimal? availableCredit = default(decimal?), decimal? balance = default(decimal?), decimal? cashBalance = default(decimal?), decimal? cashSurrenderValue = default(decimal?), string createdAt = default(string), decimal? creditLimit = default(decimal?), string currencyCode = default(string), int? dayPaymentIsDue = default(int?), int? deathBenefit = default(int?), string guid = default(string), decimal? holdingsValue = default(decimal?), string id = default(string), string importedAt = default(string), string institutionCode = default(string), string insuredName = default(string), decimal? interestRate = default(decimal?), bool? isClosed = default(bool?), bool? isHidden = default(bool?), bool? isManual = default(bool?), decimal? lastPayment = default(decimal?), string lastPaymentAt = default(string), decimal? loanAmount = default(decimal?), decimal? marginBalance = default(decimal?), string maturesOn = default(string), string memberGuid = default(string), string memberId = default(string), bool? memberIsManagedByUser = default(bool?), string metadata = default(string), decimal? minimumBalance = default(decimal?), decimal? minimumPayment = default(decimal?), string name = default(string), string nickname = default(string), decimal? originalBalance = default(decimal?), decimal? payOutAmount = default(decimal?), string paymentDueAt = default(string), decimal? payoffBalance = default(decimal?), decimal? premiumAmount = default(decimal?), string propertyType = default(string), string routingNumber = default(string), string startedOn = default(string), string subtype = default(string), decimal? todayUglAmount = default(decimal?), decimal? todayUglPercentage = default(decimal?), decimal? totalAccountValue = default(decimal?), decimal? totalAccountValueUgl = default(decimal?), string type = default(string), string updatedAt = default(string), string userGuid = default(string), string userId = default(string))
95+
public AccountResponse(string accountNumber = default(string), string accountOwnership = default(string), string annuityPolicyToDate = default(string), string annuityProvider = default(string), decimal? annuityTermYear = default(decimal?), decimal? apr = default(decimal?), decimal? apy = default(decimal?), decimal? availableBalance = default(decimal?), decimal? availableCredit = default(decimal?), decimal? balance = default(decimal?), decimal? cashBalance = default(decimal?), decimal? cashSurrenderValue = default(decimal?), string createdAt = default(string), decimal? creditLimit = default(decimal?), string currencyCode = default(string), int? dayPaymentIsDue = default(int?), int? deathBenefit = default(int?), string guid = default(string), decimal? holdingsValue = default(decimal?), string id = default(string), string importedAt = default(string), string institutionCode = default(string), string insuredName = default(string), decimal? interestRate = default(decimal?), bool? isClosed = default(bool?), bool? isHidden = default(bool?), bool? isManual = default(bool?), decimal? lastPayment = default(decimal?), string lastPaymentAt = default(string), decimal? loanAmount = default(decimal?), decimal? marginBalance = default(decimal?), string maturesOn = default(string), string memberGuid = default(string), string memberId = default(string), bool? memberIsManagedByUser = default(bool?), string metadata = default(string), decimal? minimumBalance = default(decimal?), decimal? minimumPayment = default(decimal?), string name = default(string), string nickname = default(string), decimal? originalBalance = default(decimal?), decimal? payOutAmount = default(decimal?), string paymentDueAt = default(string), decimal? payoffBalance = default(decimal?), decimal? premiumAmount = default(decimal?), string propertyType = default(string), string routingNumber = default(string), string startedOn = default(string), decimal? statementBalance = default(decimal?), string subtype = default(string), decimal? todayUglAmount = default(decimal?), decimal? todayUglPercentage = default(decimal?), decimal? totalAccountValue = default(decimal?), decimal? totalAccountValueUgl = default(decimal?), string type = default(string), string updatedAt = default(string), string userGuid = default(string), string userId = default(string))
9596
{
9697
this.AccountNumber = accountNumber;
9798
this.AccountOwnership = accountOwnership;
@@ -141,6 +142,7 @@ public partial class AccountResponse : IEquatable<AccountResponse>, IValidatable
141142
this.PropertyType = propertyType;
142143
this.RoutingNumber = routingNumber;
143144
this.StartedOn = startedOn;
145+
this.StatementBalance = statementBalance;
144146
this.Subtype = subtype;
145147
this.TodayUglAmount = todayUglAmount;
146148
this.TodayUglPercentage = todayUglPercentage;
@@ -488,6 +490,13 @@ public partial class AccountResponse : IEquatable<AccountResponse>, IValidatable
488490
[DataMember(Name = "started_on", EmitDefaultValue = true)]
489491
public string StartedOn { get; set; }
490492

493+
/// <summary>
494+
/// Gets or Sets StatementBalance
495+
/// </summary>
496+
/// <example>100.1</example>
497+
[DataMember(Name = "statement_balance", EmitDefaultValue = true)]
498+
public decimal? StatementBalance { get; set; }
499+
491500
/// <summary>
492501
/// Gets or Sets Subtype
493502
/// </summary>
@@ -607,6 +616,7 @@ public override string ToString()
607616
sb.Append(" PropertyType: ").Append(PropertyType).Append("\n");
608617
sb.Append(" RoutingNumber: ").Append(RoutingNumber).Append("\n");
609618
sb.Append(" StartedOn: ").Append(StartedOn).Append("\n");
619+
sb.Append(" StatementBalance: ").Append(StatementBalance).Append("\n");
610620
sb.Append(" Subtype: ").Append(Subtype).Append("\n");
611621
sb.Append(" TodayUglAmount: ").Append(TodayUglAmount).Append("\n");
612622
sb.Append(" TodayUglPercentage: ").Append(TodayUglPercentage).Append("\n");
@@ -891,6 +901,11 @@ public bool Equals(AccountResponse input)
891901
(this.StartedOn != null &&
892902
this.StartedOn.Equals(input.StartedOn))
893903
) &&
904+
(
905+
this.StatementBalance == input.StatementBalance ||
906+
(this.StatementBalance != null &&
907+
this.StatementBalance.Equals(input.StatementBalance))
908+
) &&
894909
(
895910
this.Subtype == input.Subtype ||
896911
(this.Subtype != null &&
@@ -1139,6 +1154,10 @@ public override int GetHashCode()
11391154
{
11401155
hashCode = (hashCode * 59) + this.StartedOn.GetHashCode();
11411156
}
1157+
if (this.StatementBalance != null)
1158+
{
1159+
hashCode = (hashCode * 59) + this.StatementBalance.GetHashCode();
1160+
}
11421161
if (this.Subtype != null)
11431162
{
11441163
hashCode = (hashCode * 59) + this.Subtype.GetHashCode();

0 commit comments

Comments
 (0)