/// <summary>
 /// Initializes a new instance of the RunbookCreateDraftProperties
 /// class with required arguments.
 /// </summary>
 public RunbookCreateDraftProperties(string runbookType, RunbookDraft draft)
     : this()
 {
     if (runbookType == null)
     {
         throw new ArgumentNullException("runbookType");
     }
     if (draft == null)
     {
         throw new ArgumentNullException("draft");
     }
     this.RunbookType = runbookType;
     this.Draft       = draft;
 }
 /// <summary>
 /// Initializes a new instance of the RunbookCreateDraftProperties
 /// class with required arguments.
 /// </summary>
 public RunbookCreateDraftProperties(string runbookType, RunbookDraft draft)
     : this()
 {
     if (runbookType == null)
     {
         throw new ArgumentNullException("runbookType");
     }
     if (draft == null)
     {
         throw new ArgumentNullException("draft");
     }
     this.RunbookType = runbookType;
     this.Draft = draft;
 }