/// <summary>
 /// Constructor.
 ///
 /// Parameters: - Smartsheet : the SmartsheetImpl
 ///
 /// Exceptions: - IllegalArgumentException : if any argument is null
 /// </summary>
 /// <param name="smartsheet"> the Smartsheet </param>
 public SheetRowResourcesImpl(SmartsheetImpl smartsheet)
     : base(smartsheet)
 {
     this.attachments = new RowAttachmentResourcesImpl(smartsheet);
     this.discussions = new RowDiscussionResourcesImpl(smartsheet);
     this.cells       = new RowColumnResourcesImpl(smartsheet);
 }
 /// <summary>
 /// Constructor.
 /// 
 /// Parameters: - Smartsheet : the SmartsheetImpl
 /// 
 /// Exceptions: - IllegalArgumentException : if any argument is null
 /// </summary>
 /// <param name="smartsheet"> the Smartsheet </param>
 public SheetRowResourcesImpl(SmartsheetImpl smartsheet)
     : base(smartsheet)
 {
     this.attachments = new RowAttachmentResourcesImpl(smartsheet);
     this.discussions = new RowDiscussionResourcesImpl(smartsheet);
     this.cells = new RowColumnResourcesImpl(smartsheet);
 }