/// <summary>
 /// Initializes a new instance of the <see cref="UserInvitationSchema" /> class.
 /// </summary>
 /// <param name="email">The email of the user who took an invitation..</param>
 /// <param name="url">The URL which the user would follow to take the invitation..</param>
 /// <param name="isStarted">A boolean flag stating if the user has started the invitation..</param>
 /// <param name="updated">updated.</param>
 /// <param name="registrationId">The id of the registration which was created from the user being invited..</param>
 /// <param name="registrationReport">registrationReport.</param>
 public UserInvitationSchema(string email = default(string), string url = default(string), bool?isStarted = default(bool?), DateTime?updated = default(DateTime?), string registrationId = default(string), UserInvitationSchemaRegistrationReport registrationReport = default(UserInvitationSchemaRegistrationReport))
 {
     this.Email              = email;
     this.Url                = url;
     this.IsStarted          = isStarted;
     this.Updated            = updated;
     this.RegistrationId     = registrationId;
     this.RegistrationReport = registrationReport;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="UserInvitationSchema" /> class.
 /// </summary>
 /// <param name="Email">The email of the user who took an invitation..</param>
 /// <param name="Url">The URL which the user would follow to take the invitation..</param>
 /// <param name="IsStarted">A boolean flag stating if the user has started the invitation..</param>
 /// <param name="Updated">Updated.</param>
 /// <param name="RegistrationId">The id of the registration which was created from the user being invited..</param>
 /// <param name="RegistrationReport">RegistrationReport.</param>
 public UserInvitationSchema(string Email = default(string), string Url = default(string), bool?IsStarted = default(bool?), DateTime?Updated = default(DateTime?), string RegistrationId = default(string), UserInvitationSchemaRegistrationReport RegistrationReport = default(UserInvitationSchemaRegistrationReport))
 {
     this.Email              = Email;
     this.Url                = Url;
     this.IsStarted          = IsStarted;
     this.Updated            = Updated;
     this.RegistrationId     = RegistrationId;
     this.RegistrationReport = RegistrationReport;
 }