@@ -39,12 +39,20 @@ public AddUserResponseAccountProperties()
3939 /// <param name="SiteId">SiteId.</param>
4040 /// <param name="CompanyName">CompanyName.</param>
4141 /// <param name="JobTitle">JobTitle.</param>
42- public AddUserResponseAccountProperties ( Guid ? Id = default ( Guid ? ) , int ? SiteId = default ( int ? ) , string CompanyName = default ( string ) , string JobTitle = default ( string ) )
42+ /// <param name="LicenseType">LicenseType.</param>
43+ /// <param name="SubscriptionId">SubscriptionId.</param>
44+ /// <param name="PlanName">PlanName.</param>
45+ /// <param name="LicenseStatus">LicenseStatus.</param>
46+ public AddUserResponseAccountProperties ( Guid ? Id = default ( Guid ? ) , int ? SiteId = default ( int ? ) , string CompanyName = default ( string ) , string JobTitle = default ( string ) , string LicenseType = default ( string ) , string SubscriptionId = default ( string ) , string PlanName = default ( string ) , string LicenseStatus = default ( string ) )
4347 {
4448 this . Id = Id ;
4549 this . SiteId = SiteId ;
4650 this . CompanyName = CompanyName ;
4751 this . JobTitle = JobTitle ;
52+ this . LicenseType = LicenseType ;
53+ this . SubscriptionId = SubscriptionId ;
54+ this . PlanName = PlanName ;
55+ this . LicenseStatus = LicenseStatus ;
4856 }
4957
5058 /// <summary>
@@ -78,6 +86,26 @@ public AddUserResponseAccountProperties()
7886 [ DataMember ( Name = "job_title" , EmitDefaultValue = false ) ]
7987 public string JobTitle { get ; set ; }
8088 /// <summary>
89+ /// Gets or Sets LicenseType
90+ /// </summary>
91+ [ DataMember ( Name = "license_type" , EmitDefaultValue = false ) ]
92+ public string LicenseType { get ; set ; }
93+ /// <summary>
94+ /// Gets or Sets SubscriptionId
95+ /// </summary>
96+ [ DataMember ( Name = "subscription_id" , EmitDefaultValue = false ) ]
97+ public string SubscriptionId { get ; set ; }
98+ /// <summary>
99+ /// Gets or Sets PlanName
100+ /// </summary>
101+ [ DataMember ( Name = "plan_name" , EmitDefaultValue = false ) ]
102+ public string PlanName { get ; set ; }
103+ /// <summary>
104+ /// Gets or Sets LicenseStatus
105+ /// </summary>
106+ [ DataMember ( Name = "license_status" , EmitDefaultValue = false ) ]
107+ public string LicenseStatus { get ; set ; }
108+ /// <summary>
81109 /// Returns the string presentation of the object
82110 /// </summary>
83111 /// <returns>String presentation of the object</returns>
@@ -91,6 +119,10 @@ public override string ToString()
91119 sb . Append ( " DsGroups: " ) . Append ( DsGroups ) . Append ( "\n " ) ;
92120 sb . Append ( " CompanyName: " ) . Append ( CompanyName ) . Append ( "\n " ) ;
93121 sb . Append ( " JobTitle: " ) . Append ( JobTitle ) . Append ( "\n " ) ;
122+ sb . Append ( " LicenseType: " ) . Append ( LicenseType ) . Append ( "\n " ) ;
123+ sb . Append ( " SubscriptionId: " ) . Append ( SubscriptionId ) . Append ( "\n " ) ;
124+ sb . Append ( " PlanName: " ) . Append ( PlanName ) . Append ( "\n " ) ;
125+ sb . Append ( " LicenseStatus: " ) . Append ( LicenseStatus ) . Append ( "\n " ) ;
94126 sb . Append ( "}\n " ) ;
95127 return sb . ToString ( ) ;
96128 }
@@ -156,6 +188,26 @@ public bool Equals(AddUserResponseAccountProperties other)
156188 this . JobTitle == other . JobTitle ||
157189 this . JobTitle != null &&
158190 this . JobTitle . Equals ( other . JobTitle )
191+ ) &&
192+ (
193+ this . LicenseType == other . LicenseType ||
194+ this . LicenseType != null &&
195+ this . LicenseType . Equals ( other . LicenseType )
196+ ) &&
197+ (
198+ this . SubscriptionId == other . SubscriptionId ||
199+ this . SubscriptionId != null &&
200+ this . SubscriptionId . Equals ( other . SubscriptionId )
201+ ) &&
202+ (
203+ this . PlanName == other . PlanName ||
204+ this . PlanName != null &&
205+ this . PlanName . Equals ( other . PlanName )
206+ ) &&
207+ (
208+ this . LicenseStatus == other . LicenseStatus ||
209+ this . LicenseStatus != null &&
210+ this . LicenseStatus . Equals ( other . LicenseStatus )
159211 ) ;
160212 }
161213
@@ -182,6 +234,14 @@ public override int GetHashCode()
182234 hash = hash * 59 + this . CompanyName . GetHashCode ( ) ;
183235 if ( this . JobTitle != null )
184236 hash = hash * 59 + this . JobTitle . GetHashCode ( ) ;
237+ if ( this . LicenseType != null )
238+ hash = hash * 59 + this . LicenseType . GetHashCode ( ) ;
239+ if ( this . SubscriptionId != null )
240+ hash = hash * 59 + this . SubscriptionId . GetHashCode ( ) ;
241+ if ( this . PlanName != null )
242+ hash = hash * 59 + this . PlanName . GetHashCode ( ) ;
243+ if ( this . LicenseStatus != null )
244+ hash = hash * 59 + this . LicenseStatus . GetHashCode ( ) ;
185245 return hash ;
186246 }
187247 }
0 commit comments