@@ -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