@@ -19,22 +19,15 @@ public partial class TransformationSearch
19
19
/// <summary>
20
20
/// Initializes a new instance of the TransformationSearch class.
21
21
/// </summary>
22
- [ JsonConstructor ]
23
- public TransformationSearch ( ) { }
24
- /// <summary>
25
- /// Initializes a new instance of the TransformationSearch class.
26
- /// </summary>
27
- /// <param name="transformationsIDs">transformationsIDs (required).</param>
28
- public TransformationSearch ( List < string > transformationsIDs )
22
+ public TransformationSearch ( )
29
23
{
30
- TransformationsIDs = transformationsIDs ?? throw new ArgumentNullException ( nameof ( transformationsIDs ) ) ;
31
24
}
32
25
33
26
/// <summary>
34
- /// Gets or Sets TransformationsIDs
27
+ /// Gets or Sets TransformationIDs
35
28
/// </summary>
36
- [ JsonPropertyName ( "transformationsIDs " ) ]
37
- public List < string > TransformationsIDs { get ; set ; }
29
+ [ JsonPropertyName ( "transformationIDs " ) ]
30
+ public List < string > TransformationIDs { get ; set ; }
38
31
39
32
/// <summary>
40
33
/// Returns the string presentation of the object
@@ -44,7 +37,7 @@ public override string ToString()
44
37
{
45
38
StringBuilder sb = new StringBuilder ( ) ;
46
39
sb . Append ( "class TransformationSearch {\n " ) ;
47
- sb . Append ( " TransformationsIDs : " ) . Append ( TransformationsIDs ) . Append ( "\n " ) ;
40
+ sb . Append ( " TransformationIDs : " ) . Append ( TransformationIDs ) . Append ( "\n " ) ;
48
41
sb . Append ( "}\n " ) ;
49
42
return sb . ToString ( ) ;
50
43
}
@@ -71,7 +64,7 @@ public override bool Equals(object obj)
71
64
}
72
65
73
66
return
74
- ( TransformationsIDs == input . TransformationsIDs || TransformationsIDs != null && input . TransformationsIDs != null && TransformationsIDs . SequenceEqual ( input . TransformationsIDs ) ) ;
67
+ ( TransformationIDs == input . TransformationIDs || TransformationIDs != null && input . TransformationIDs != null && TransformationIDs . SequenceEqual ( input . TransformationIDs ) ) ;
75
68
}
76
69
77
70
/// <summary>
@@ -83,9 +76,9 @@ public override int GetHashCode()
83
76
unchecked // Overflow is fine, just wrap
84
77
{
85
78
int hashCode = 41 ;
86
- if ( TransformationsIDs != null )
79
+ if ( TransformationIDs != null )
87
80
{
88
- hashCode = ( hashCode * 59 ) + TransformationsIDs . GetHashCode ( ) ;
81
+ hashCode = ( hashCode * 59 ) + TransformationIDs . GetHashCode ( ) ;
89
82
}
90
83
return hashCode ;
91
84
}
0 commit comments