@@ -22,12 +22,6 @@ public partial class AuthenticationUpdate
2222 [ JsonPropertyName ( "type" ) ]
2323 public AuthenticationType ? Type { get ; set ; }
2424
25- /// <summary>
26- /// Gets or Sets Platform
27- /// </summary>
28- [ JsonPropertyName ( "platform" ) ]
29- public Platform ? Platform { get ; set ; }
30-
3125 /// <summary>
3226 /// Initializes a new instance of the AuthenticationUpdate class.
3327 /// </summary>
@@ -56,7 +50,6 @@ public override string ToString()
5650 sb . Append ( "class AuthenticationUpdate {\n " ) ;
5751 sb . Append ( " Type: " ) . Append ( Type ) . Append ( "\n " ) ;
5852 sb . Append ( " Name: " ) . Append ( Name ) . Append ( "\n " ) ;
59- sb . Append ( " Platform: " ) . Append ( Platform ) . Append ( "\n " ) ;
6053 sb . Append ( " Input: " ) . Append ( Input ) . Append ( "\n " ) ;
6154 sb . Append ( "}\n " ) ;
6255 return sb . ToString ( ) ;
@@ -85,7 +78,6 @@ public override bool Equals(object obj)
8578
8679 return ( Type == input . Type || Type . Equals ( input . Type ) )
8780 && ( Name == input . Name || ( Name != null && Name . Equals ( input . Name ) ) )
88- && ( Platform == input . Platform || Platform . Equals ( input . Platform ) )
8981 && ( Input == input . Input || ( Input != null && Input . Equals ( input . Input ) ) ) ;
9082 }
9183
@@ -103,7 +95,6 @@ public override int GetHashCode()
10395 {
10496 hashCode = ( hashCode * 59 ) + Name . GetHashCode ( ) ;
10597 }
106- hashCode = ( hashCode * 59 ) + Platform . GetHashCode ( ) ;
10798 if ( Input != null )
10899 {
109100 hashCode = ( hashCode * 59 ) + Input . GetHashCode ( ) ;
0 commit comments