@@ -34,19 +34,19 @@ public partial class SpendingPlansResponseBody : IEquatable<SpendingPlansRespons
3434 /// <summary>
3535 /// Initializes a new instance of the <see cref="SpendingPlansResponseBody" /> class.
3636 /// </summary>
37- /// <param name="iterationItems">iterationItems .</param>
37+ /// <param name="spendingPlans">spendingPlans .</param>
3838 /// <param name="pagination">pagination.</param>
39- public SpendingPlansResponseBody ( List < SpendingPlanResponse > iterationItems = default ( List < SpendingPlanResponse > ) , PaginationResponse pagination = default ( PaginationResponse ) )
39+ public SpendingPlansResponseBody ( List < SpendingPlanResponse > spendingPlans = default ( List < SpendingPlanResponse > ) , PaginationResponse pagination = default ( PaginationResponse ) )
4040 {
41- this . IterationItems = iterationItems ;
41+ this . SpendingPlans = spendingPlans ;
4242 this . Pagination = pagination ;
4343 }
4444
4545 /// <summary>
46- /// Gets or Sets IterationItems
46+ /// Gets or Sets SpendingPlans
4747 /// </summary>
48- [ DataMember ( Name = "iteration_items " , EmitDefaultValue = false ) ]
49- public List < SpendingPlanResponse > IterationItems { get ; set ; }
48+ [ DataMember ( Name = "spending_plans " , EmitDefaultValue = false ) ]
49+ public List < SpendingPlanResponse > SpendingPlans { get ; set ; }
5050
5151 /// <summary>
5252 /// Gets or Sets Pagination
@@ -62,7 +62,7 @@ public override string ToString()
6262 {
6363 StringBuilder sb = new StringBuilder ( ) ;
6464 sb . Append ( "class SpendingPlansResponseBody {\n " ) ;
65- sb . Append ( " IterationItems : " ) . Append ( IterationItems ) . Append ( "\n " ) ;
65+ sb . Append ( " SpendingPlans : " ) . Append ( SpendingPlans ) . Append ( "\n " ) ;
6666 sb . Append ( " Pagination: " ) . Append ( Pagination ) . Append ( "\n " ) ;
6767 sb . Append ( "}\n " ) ;
6868 return sb . ToString ( ) ;
@@ -100,10 +100,10 @@ public bool Equals(SpendingPlansResponseBody input)
100100 }
101101 return
102102 (
103- this . IterationItems == input . IterationItems ||
104- this . IterationItems != null &&
105- input . IterationItems != null &&
106- this . IterationItems . SequenceEqual ( input . IterationItems )
103+ this . SpendingPlans == input . SpendingPlans ||
104+ this . SpendingPlans != null &&
105+ input . SpendingPlans != null &&
106+ this . SpendingPlans . SequenceEqual ( input . SpendingPlans )
107107 ) &&
108108 (
109109 this . Pagination == input . Pagination ||
@@ -121,9 +121,9 @@ public override int GetHashCode()
121121 unchecked // Overflow is fine, just wrap
122122 {
123123 int hashCode = 41 ;
124- if ( this . IterationItems != null )
124+ if ( this . SpendingPlans != null )
125125 {
126- hashCode = ( hashCode * 59 ) + this . IterationItems . GetHashCode ( ) ;
126+ hashCode = ( hashCode * 59 ) + this . SpendingPlans . GetHashCode ( ) ;
127127 }
128128 if ( this . Pagination != null )
129129 {
0 commit comments