/// <summary>
 /// Initializes a new instance of the
 /// ManagedPlanCreateOrUpdateParameters class with required arguments.
 /// </summary>
 public ManagedPlanCreateOrUpdateParameters(AdminPlanModel plan)
     : this()
 {
     if (plan == null)
     {
         throw new ArgumentNullException("plan");
     }
     this.Plan = plan;
 }
 /// <summary>
 /// Initializes a new instance of the
 /// ManagedPlanCreateOrUpdateParameters class with required arguments.
 /// </summary>
 public ManagedPlanCreateOrUpdateParameters(AdminPlanModel plan)
     : this()
 {
     if (plan == null)
     {
         throw new ArgumentNullException("plan");
     }
     this.Plan = plan;
 }