Exemple #1
0
 /// <summary>
 /// Constructor.
 ///
 /// Exceptions: - IllegalArgumentException : if any argument is null
 /// </summary>
 /// <param name="smartsheet"> the Smartsheet </param>
 public SheetResourcesImpl(SmartsheetImpl smartsheet) : base(smartsheet)
 {
     this.shares      = new ShareResourcesImpl(smartsheet, "sheet");
     this.rows        = new SheetRowResourcesImpl(smartsheet);
     this.columns     = new SheetColumnResourcesImpl(smartsheet);
     this.attachments = new AssociatedAttachmentResourcesImpl(smartsheet, "sheet");
     this.discussions = new AssociatedDiscussionResourcesImpl(smartsheet, "sheet");
 }
Exemple #2
0
 /// <summary>
 /// Constructor.
 ///
 /// Exceptions: - IllegalArgumentException : if any argument is null
 /// </summary>
 /// <param name="smartsheet"> the Smartsheet </param>
 public RowResourcesImpl(SmartsheetImpl smartsheet) : base(smartsheet)
 {
     this.attachments = new AssociatedAttachmentResourcesImpl(smartsheet, "row");
     this.discussions = new AssociatedDiscussionResourcesImpl(smartsheet, "row");
 }
 public RowResourcesImpl(SmartsheetImpl smartsheet)
     : base(smartsheet)
 {
     this.attachments = new AssociatedAttachmentResourcesImpl(smartsheet, "row");
     this.discussions = new AssociatedDiscussionResourcesImpl(smartsheet, "row");
 }