Skip to content

Commit 7442168

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

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", "{91AB0538-A00D-4C23-B4A6-63AA9F30AF1D}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MX.Platform.CSharp", "src\MX.Platform.CSharp\MX.Platform.CSharp.csproj", "{3BA57603-587F-42CA-8808-A2A9DA93B57F}"
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-
{91AB0538-A00D-4C23-B4A6-63AA9F30AF1D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16-
{91AB0538-A00D-4C23-B4A6-63AA9F30AF1D}.Debug|Any CPU.Build.0 = Debug|Any CPU
17-
{91AB0538-A00D-4C23-B4A6-63AA9F30AF1D}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{91AB0538-A00D-4C23-B4A6-63AA9F30AF1D}.Release|Any CPU.Build.0 = Release|Any CPU
15+
{3BA57603-587F-42CA-8808-A2A9DA93B57F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{3BA57603-587F-42CA-8808-A2A9DA93B57F}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{3BA57603-587F-42CA-8808-A2A9DA93B57F}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{3BA57603-587F-42CA-8808-A2A9DA93B57F}.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
@@ -5355,6 +5355,10 @@ components:
53555355
example: ACN-8899832e-e5b4-42cd-aa25-bbf1dc889a8f
53565356
nullable: true
53575357
type: string
5358+
loan_guarantor:
5359+
example: U.S. DEPARTMENT OF EDUCATION
5360+
nullable: true
5361+
type: string
53585362
institution_number:
53595363
example: "123"
53605364
nullable: true

docs/AccountNumberResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
77
**AccountGuid** | **string** | | [optional]
88
**AccountNumber** | **string** | | [optional]
99
**Guid** | **string** | | [optional]
10+
**LoanGuarantor** | **string** | | [optional]
1011
**InstitutionNumber** | **string** | | [optional]
1112
**MemberGuid** | **string** | | [optional]
1213
**PassedValidation** | **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.29.0
3+
packageVersion: 0.30.0

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,15 @@ public void GuidTest()
8181
// TODO unit test for the property 'Guid'
8282
}
8383

84+
/// <summary>
85+
/// Test the property 'LoanGuarantor'
86+
/// </summary>
87+
[Fact]
88+
public void LoanGuarantorTest()
89+
{
90+
// TODO unit test for the property 'LoanGuarantor'
91+
}
92+
8493
/// <summary>
8594
/// Test the property 'InstitutionNumber'
8695
/// </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.29.0";
36+
public const string Version = "0.30.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.29.0/csharp");
120+
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/0.30.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.29.0\n";
549+
report += " SDK Package Version: 0.30.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.29.0</Version>
15+
<Version>0.30.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/AccountNumberResponse.cs

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,19 @@ public partial class AccountNumberResponse : IEquatable<AccountNumberResponse>,
3737
/// <param name="accountGuid">accountGuid.</param>
3838
/// <param name="accountNumber">accountNumber.</param>
3939
/// <param name="guid">guid.</param>
40+
/// <param name="loanGuarantor">loanGuarantor.</param>
4041
/// <param name="institutionNumber">institutionNumber.</param>
4142
/// <param name="memberGuid">memberGuid.</param>
4243
/// <param name="passedValidation">passedValidation.</param>
4344
/// <param name="routingNumber">routingNumber.</param>
4445
/// <param name="transitNumber">transitNumber.</param>
4546
/// <param name="userGuid">userGuid.</param>
46-
public AccountNumberResponse(string accountGuid = default(string), string accountNumber = default(string), string guid = default(string), string institutionNumber = default(string), string memberGuid = default(string), bool? passedValidation = default(bool?), string routingNumber = default(string), string transitNumber = default(string), string userGuid = default(string))
47+
public AccountNumberResponse(string accountGuid = default(string), string accountNumber = default(string), string guid = default(string), string loanGuarantor = default(string), string institutionNumber = default(string), string memberGuid = default(string), bool? passedValidation = default(bool?), string routingNumber = default(string), string transitNumber = default(string), string userGuid = default(string))
4748
{
4849
this.AccountGuid = accountGuid;
4950
this.AccountNumber = accountNumber;
5051
this.Guid = guid;
52+
this.LoanGuarantor = loanGuarantor;
5153
this.InstitutionNumber = institutionNumber;
5254
this.MemberGuid = memberGuid;
5355
this.PassedValidation = passedValidation;
@@ -77,6 +79,13 @@ public partial class AccountNumberResponse : IEquatable<AccountNumberResponse>,
7779
[DataMember(Name = "guid", EmitDefaultValue = true)]
7880
public string Guid { get; set; }
7981

82+
/// <summary>
83+
/// Gets or Sets LoanGuarantor
84+
/// </summary>
85+
/// <example>U.S. DEPARTMENT OF EDUCATION</example>
86+
[DataMember(Name = "loan_guarantor", EmitDefaultValue = true)]
87+
public string LoanGuarantor { get; set; }
88+
8089
/// <summary>
8190
/// Gets or Sets InstitutionNumber
8291
/// </summary>
@@ -130,6 +139,7 @@ public override string ToString()
130139
sb.Append(" AccountGuid: ").Append(AccountGuid).Append("\n");
131140
sb.Append(" AccountNumber: ").Append(AccountNumber).Append("\n");
132141
sb.Append(" Guid: ").Append(Guid).Append("\n");
142+
sb.Append(" LoanGuarantor: ").Append(LoanGuarantor).Append("\n");
133143
sb.Append(" InstitutionNumber: ").Append(InstitutionNumber).Append("\n");
134144
sb.Append(" MemberGuid: ").Append(MemberGuid).Append("\n");
135145
sb.Append(" PassedValidation: ").Append(PassedValidation).Append("\n");
@@ -186,6 +196,11 @@ public bool Equals(AccountNumberResponse input)
186196
(this.Guid != null &&
187197
this.Guid.Equals(input.Guid))
188198
) &&
199+
(
200+
this.LoanGuarantor == input.LoanGuarantor ||
201+
(this.LoanGuarantor != null &&
202+
this.LoanGuarantor.Equals(input.LoanGuarantor))
203+
) &&
189204
(
190205
this.InstitutionNumber == input.InstitutionNumber ||
191206
(this.InstitutionNumber != null &&
@@ -239,6 +254,10 @@ public override int GetHashCode()
239254
{
240255
hashCode = (hashCode * 59) + this.Guid.GetHashCode();
241256
}
257+
if (this.LoanGuarantor != null)
258+
{
259+
hashCode = (hashCode * 59) + this.LoanGuarantor.GetHashCode();
260+
}
242261
if (this.InstitutionNumber != null)
243262
{
244263
hashCode = (hashCode * 59) + this.InstitutionNumber.GetHashCode();

0 commit comments

Comments
 (0)