/// <summary>
 /// Initializes a new instance of the ScheduleCreateOrUpdateParameters
 /// class with required arguments.
 /// </summary>
 public ScheduleCreateOrUpdateParameters(string name, ScheduleCreateOrUpdateProperties properties)
     : this()
 {
     if (name == null)
     {
         throw new ArgumentNullException("name");
     }
     if (properties == null)
     {
         throw new ArgumentNullException("properties");
     }
     this.Name       = name;
     this.Properties = properties;
 }
 /// <summary>
 /// Initializes a new instance of the ScheduleCreateOrUpdateParameters
 /// class with required arguments.
 /// </summary>
 public ScheduleCreateOrUpdateParameters(string name, ScheduleCreateOrUpdateProperties properties)
     : this()
 {
     if (name == null)
     {
         throw new ArgumentNullException("name");
     }
     if (properties == null)
     {
         throw new ArgumentNullException("properties");
     }
     this.Name = name;
     this.Properties = properties;
 }