Skip to content

Commit c55fe1d

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

8 files changed

Lines changed: 110 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", "{F727530B-2608-45E7-9664-29AED431874C}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MX.Platform.CSharp", "src\MX.Platform.CSharp\MX.Platform.CSharp.csproj", "{F406B9B0-90A1-48DA-9A04-FF82606D662E}"
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-
{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
15+
{F406B9B0-90A1-48DA-9A04-FF82606D662E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{F406B9B0-90A1-48DA-9A04-FF82606D662E}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{F406B9B0-90A1-48DA-9A04-FF82606D662E}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{F406B9B0-90A1-48DA-9A04-FF82606D662E}.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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7313,6 +7313,10 @@ components:
73137313
example: false
73147314
nullable: true
73157315
type: boolean
7316+
is_manual:
7317+
example: false
7318+
nullable: true
7319+
type: boolean
73167320
is_oauth:
73177321
example: false
73187322
nullable: true
@@ -7321,6 +7325,14 @@ components:
73217325
example: "\\\"credentials_last_refreshed_at\\\": \\\"2015-10-15\\\""
73227326
nullable: true
73237327
type: string
7328+
most_recent_job_detail_code:
7329+
example: (deprecated)
7330+
nullable: true
7331+
type: string
7332+
most_recent_job_detail_text:
7333+
example: (deprecated)
7334+
nullable: true
7335+
type: string
73247336
name:
73257337
example: Chase Bank
73267338
nullable: true

docs/MemberResponse.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,11 @@ Name | Type | Description | Notes
1212
**InstitutionCode** | **string** | | [optional]
1313
**IsBeingAggregated** | **bool?** | | [optional]
1414
**IsManagedByUser** | **bool?** | | [optional]
15+
**IsManual** | **bool?** | | [optional]
1516
**IsOauth** | **bool?** | | [optional]
1617
**Metadata** | **string** | | [optional]
18+
**MostRecentJobDetailCode** | **string** | | [optional]
19+
**MostRecentJobDetailText** | **string** | | [optional]
1720
**Name** | **string** | | [optional]
1821
**OauthWindowUri** | **string** | | [optional]
1922
**SuccessfullyAggregatedAt** | **string** | | [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.25.0
3+
packageVersion: 0.26.0

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,15 @@ public void IsManagedByUserTest()
126126
// TODO unit test for the property 'IsManagedByUser'
127127
}
128128

129+
/// <summary>
130+
/// Test the property 'IsManual'
131+
/// </summary>
132+
[Fact]
133+
public void IsManualTest()
134+
{
135+
// TODO unit test for the property 'IsManual'
136+
}
137+
129138
/// <summary>
130139
/// Test the property 'IsOauth'
131140
/// </summary>
@@ -144,6 +153,24 @@ public void MetadataTest()
144153
// TODO unit test for the property 'Metadata'
145154
}
146155

156+
/// <summary>
157+
/// Test the property 'MostRecentJobDetailCode'
158+
/// </summary>
159+
[Fact]
160+
public void MostRecentJobDetailCodeTest()
161+
{
162+
// TODO unit test for the property 'MostRecentJobDetailCode'
163+
}
164+
165+
/// <summary>
166+
/// Test the property 'MostRecentJobDetailText'
167+
/// </summary>
168+
[Fact]
169+
public void MostRecentJobDetailTextTest()
170+
{
171+
// TODO unit test for the property 'MostRecentJobDetailText'
172+
}
173+
147174
/// <summary>
148175
/// Test the property 'Name'
149176
/// </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.25.0";
36+
public const string Version = "0.26.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.25.0/csharp");
120+
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/0.26.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.25.0\n";
549+
report += " SDK Package Version: 0.26.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.25.0</Version>
15+
<Version>0.26.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/MemberResponse.cs

Lines changed: 58 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,17 @@ public partial class MemberResponse : IEquatable<MemberResponse>, IValidatableOb
4242
/// <param name="institutionCode">institutionCode.</param>
4343
/// <param name="isBeingAggregated">isBeingAggregated.</param>
4444
/// <param name="isManagedByUser">isManagedByUser.</param>
45+
/// <param name="isManual">isManual.</param>
4546
/// <param name="isOauth">isOauth.</param>
4647
/// <param name="metadata">metadata.</param>
48+
/// <param name="mostRecentJobDetailCode">mostRecentJobDetailCode.</param>
49+
/// <param name="mostRecentJobDetailText">mostRecentJobDetailText.</param>
4750
/// <param name="name">name.</param>
4851
/// <param name="oauthWindowUri">oauthWindowUri.</param>
4952
/// <param name="successfullyAggregatedAt">successfullyAggregatedAt.</param>
5053
/// <param name="userGuid">userGuid.</param>
5154
/// <param name="userId">userId.</param>
52-
public MemberResponse(string aggregatedAt = default(string), bool backgroundAggregationIsDisabled = default(bool), string connectionStatus = default(string), string guid = default(string), string id = default(string), string institutionCode = default(string), bool? isBeingAggregated = default(bool?), bool? isManagedByUser = default(bool?), bool? isOauth = default(bool?), string metadata = default(string), string name = default(string), string oauthWindowUri = default(string), string successfullyAggregatedAt = default(string), string userGuid = default(string), string userId = default(string))
55+
public MemberResponse(string aggregatedAt = default(string), bool backgroundAggregationIsDisabled = default(bool), string connectionStatus = default(string), string guid = default(string), string id = default(string), string institutionCode = default(string), bool? isBeingAggregated = default(bool?), bool? isManagedByUser = default(bool?), bool? isManual = default(bool?), bool? isOauth = default(bool?), string metadata = default(string), string mostRecentJobDetailCode = default(string), string mostRecentJobDetailText = default(string), string name = default(string), string oauthWindowUri = default(string), string successfullyAggregatedAt = default(string), string userGuid = default(string), string userId = default(string))
5356
{
5457
this.AggregatedAt = aggregatedAt;
5558
this.BackgroundAggregationIsDisabled = backgroundAggregationIsDisabled;
@@ -59,8 +62,11 @@ public partial class MemberResponse : IEquatable<MemberResponse>, IValidatableOb
5962
this.InstitutionCode = institutionCode;
6063
this.IsBeingAggregated = isBeingAggregated;
6164
this.IsManagedByUser = isManagedByUser;
65+
this.IsManual = isManual;
6266
this.IsOauth = isOauth;
6367
this.Metadata = metadata;
68+
this.MostRecentJobDetailCode = mostRecentJobDetailCode;
69+
this.MostRecentJobDetailText = mostRecentJobDetailText;
6470
this.Name = name;
6571
this.OauthWindowUri = oauthWindowUri;
6672
this.SuccessfullyAggregatedAt = successfullyAggregatedAt;
@@ -124,6 +130,13 @@ public partial class MemberResponse : IEquatable<MemberResponse>, IValidatableOb
124130
[DataMember(Name = "is_managed_by_user", EmitDefaultValue = true)]
125131
public bool? IsManagedByUser { get; set; }
126132

133+
/// <summary>
134+
/// Gets or Sets IsManual
135+
/// </summary>
136+
/// <example>false</example>
137+
[DataMember(Name = "is_manual", EmitDefaultValue = true)]
138+
public bool? IsManual { get; set; }
139+
127140
/// <summary>
128141
/// Gets or Sets IsOauth
129142
/// </summary>
@@ -138,6 +151,20 @@ public partial class MemberResponse : IEquatable<MemberResponse>, IValidatableOb
138151
[DataMember(Name = "metadata", EmitDefaultValue = true)]
139152
public string Metadata { get; set; }
140153

154+
/// <summary>
155+
/// Gets or Sets MostRecentJobDetailCode
156+
/// </summary>
157+
/// <example>(deprecated)</example>
158+
[DataMember(Name = "most_recent_job_detail_code", EmitDefaultValue = true)]
159+
public string MostRecentJobDetailCode { get; set; }
160+
161+
/// <summary>
162+
/// Gets or Sets MostRecentJobDetailText
163+
/// </summary>
164+
/// <example>(deprecated)</example>
165+
[DataMember(Name = "most_recent_job_detail_text", EmitDefaultValue = true)]
166+
public string MostRecentJobDetailText { get; set; }
167+
141168
/// <summary>
142169
/// Gets or Sets Name
143170
/// </summary>
@@ -189,8 +216,11 @@ public override string ToString()
189216
sb.Append(" InstitutionCode: ").Append(InstitutionCode).Append("\n");
190217
sb.Append(" IsBeingAggregated: ").Append(IsBeingAggregated).Append("\n");
191218
sb.Append(" IsManagedByUser: ").Append(IsManagedByUser).Append("\n");
219+
sb.Append(" IsManual: ").Append(IsManual).Append("\n");
192220
sb.Append(" IsOauth: ").Append(IsOauth).Append("\n");
193221
sb.Append(" Metadata: ").Append(Metadata).Append("\n");
222+
sb.Append(" MostRecentJobDetailCode: ").Append(MostRecentJobDetailCode).Append("\n");
223+
sb.Append(" MostRecentJobDetailText: ").Append(MostRecentJobDetailText).Append("\n");
194224
sb.Append(" Name: ").Append(Name).Append("\n");
195225
sb.Append(" OauthWindowUri: ").Append(OauthWindowUri).Append("\n");
196226
sb.Append(" SuccessfullyAggregatedAt: ").Append(SuccessfullyAggregatedAt).Append("\n");
@@ -270,6 +300,11 @@ public bool Equals(MemberResponse input)
270300
(this.IsManagedByUser != null &&
271301
this.IsManagedByUser.Equals(input.IsManagedByUser))
272302
) &&
303+
(
304+
this.IsManual == input.IsManual ||
305+
(this.IsManual != null &&
306+
this.IsManual.Equals(input.IsManual))
307+
) &&
273308
(
274309
this.IsOauth == input.IsOauth ||
275310
(this.IsOauth != null &&
@@ -280,6 +315,16 @@ public bool Equals(MemberResponse input)
280315
(this.Metadata != null &&
281316
this.Metadata.Equals(input.Metadata))
282317
) &&
318+
(
319+
this.MostRecentJobDetailCode == input.MostRecentJobDetailCode ||
320+
(this.MostRecentJobDetailCode != null &&
321+
this.MostRecentJobDetailCode.Equals(input.MostRecentJobDetailCode))
322+
) &&
323+
(
324+
this.MostRecentJobDetailText == input.MostRecentJobDetailText ||
325+
(this.MostRecentJobDetailText != null &&
326+
this.MostRecentJobDetailText.Equals(input.MostRecentJobDetailText))
327+
) &&
283328
(
284329
this.Name == input.Name ||
285330
(this.Name != null &&
@@ -345,6 +390,10 @@ public override int GetHashCode()
345390
{
346391
hashCode = (hashCode * 59) + this.IsManagedByUser.GetHashCode();
347392
}
393+
if (this.IsManual != null)
394+
{
395+
hashCode = (hashCode * 59) + this.IsManual.GetHashCode();
396+
}
348397
if (this.IsOauth != null)
349398
{
350399
hashCode = (hashCode * 59) + this.IsOauth.GetHashCode();
@@ -353,6 +402,14 @@ public override int GetHashCode()
353402
{
354403
hashCode = (hashCode * 59) + this.Metadata.GetHashCode();
355404
}
405+
if (this.MostRecentJobDetailCode != null)
406+
{
407+
hashCode = (hashCode * 59) + this.MostRecentJobDetailCode.GetHashCode();
408+
}
409+
if (this.MostRecentJobDetailText != null)
410+
{
411+
hashCode = (hashCode * 59) + this.MostRecentJobDetailText.GetHashCode();
412+
}
356413
if (this.Name != null)
357414
{
358415
hashCode = (hashCode * 59) + this.Name.GetHashCode();

0 commit comments

Comments
 (0)