/// <summary>
 /// Constructor.
 /// 
 /// Exceptions: 
 ///   - IllegalArgumentException : if any argument is
 /// </summary>
 /// <param name="smartsheet"> the Smartsheet </param>
 public WorkspaceResourcesImpl(SmartsheetImpl smartsheet)
     : base(smartsheet)
 {
     this.folders = new WorkspaceFolderResourcesImpl(smartsheet);
     this.sheets = new WorkspaceSheetResourcesImpl(smartsheet);
     this.shares = new ShareResourcesImpl(smartsheet, "workspaces");
 }
コード例 #2
0
 /// <summary>
 /// Constructor.
 ///
 /// Exceptions:
 ///   - IllegalArgumentException : if any argument is
 /// </summary>
 /// <param name="smartsheet"> the Smartsheet </param>
 public WorkspaceResourcesImpl(SmartsheetImpl smartsheet)
     : base(smartsheet)
 {
     this.folders = new WorkspaceFolderResourcesImpl(smartsheet);
     this.sheets  = new WorkspaceSheetResourcesImpl(smartsheet);
     this.shares  = new ShareResourcesImpl(smartsheet, "workspaces");
 }
コード例 #3
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");
 }
コード例 #4
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, "sheets");
     this.rows           = new SheetRowResourcesImpl(smartsheet);
     this.columns        = new SheetColumnResourcesImpl(smartsheet);
     this.attachments    = new SheetAttachmentResourcesImpl(smartsheet);
     this.discussions    = new SheetDiscussionResourcesImpl(smartsheet);
     this.comments       = new SheetCommentResourcesImpl(smartsheet);
     this.updateRequests = new SheetUpdateRequestResourcesImpl(smartsheet);
 }
コード例 #5
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, "sheets");
     this.rows                 = new SheetRowResourcesImpl(smartsheet);
     this.columns              = new SheetColumnResourcesImpl(smartsheet);
     this.attachments          = new SheetAttachmentResourcesImpl(smartsheet);
     this.discussions          = new SheetDiscussionResourcesImpl(smartsheet);
     this.comments             = new SheetCommentResourcesImpl(smartsheet);
     this.updateRequests       = new SheetUpdateRequestResourcesImpl(smartsheet);
     this.filters              = new SheetFilterResourcesImpl(smartsheet);
     this.automationRules      = new SheetAutomationRuleResourcesImpl(smartsheet);
     this.crossSheetReferences = new SheetCrossSheetReferencesResourcesImpl(smartsheet);
 }
コード例 #6
0
 /// <summary>
 /// Constructor.
 ///
 /// Exceptions: - IllegalArgumentException : if any argument is null
 /// </summary>
 /// <param name="smartsheet"> the Smartsheet </param>
 public SightResourcesImpl(SmartsheetImpl smartsheet)
     : base(smartsheet)
 {
     this.shares = new ShareResourcesImpl(smartsheet, "sights");
 }
コード例 #7
0
 /// <summary>
 /// Constructor.
 ///
 /// Exceptions: - IllegalArgumentException : if any argument is null
 /// </summary>
 /// <param name="smartsheet"> the Smartsheet </param>
 public ReportResourcesImpl(SmartsheetImpl smartsheet)
     : base(smartsheet)
 {
     this.shares = new ShareResourcesImpl(smartsheet, "reports");
 }
コード例 #8
0
 /// <summary>
 /// Constructor.
 /// 
 /// Exceptions: - IllegalArgumentException : if any argument is null
 /// </summary>
 /// <param name="smartsheet"> the Smartsheet </param>
 public SightResourcesImpl(SmartsheetImpl smartsheet)
     : base(smartsheet)
 {
     this.shares = new ShareResourcesImpl(smartsheet, "sights");
 }
コード例 #9
0
 /// <summary>
 /// Constructor.
 /// 
 /// Exceptions: - IllegalArgumentException : if any argument is null
 /// </summary>
 /// <param name="smartsheet"> the Smartsheet </param>
 public ReportResourcesImpl(SmartsheetImpl smartsheet)
     : base(smartsheet)
 {
     this.shares = new ShareResourcesImpl(smartsheet, "reports");
 }
コード例 #10
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, "sheets");
     this.rows = new SheetRowResourcesImpl(smartsheet);
     this.columns = new SheetColumnResourcesImpl(smartsheet);
     this.attachments = new SheetAttachmentResourcesImpl(smartsheet);
     this.discussions = new SheetDiscussionResourcesImpl(smartsheet);
     this.comments = new SheetCommentResourcesImpl(smartsheet);
     this.updateRequests = new SheetUpdateRequestResourcesImpl(smartsheet);
 }