/// <summary>
 /// Initializes a new instance of the <see cref="T:System.Object"/> class.
 /// </summary>
 public MfaSubscriptionStatus(string apiKey, MfaSubscription mfaSubscription, bool enabled)
 {
     ApiKey          = apiKey;
     MfaSubscription = mfaSubscription;
     Enabled         = enabled;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="T:System.Object"/> class.
 /// </summary>
 public MfaSubscriptionStatus(int userId, MfaSubscription mfaSubscription, bool enabled)
 {
     UserId          = userId;
     MfaSubscription = mfaSubscription;
     Enabled         = enabled;
 }