com.smartsheet.api.models.Home Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smartsheet-sdk-java Show documentation
Show all versions of smartsheet-sdk-java Show documentation
Library for connecting to Smartsheet Services
/*
* Copyright (C) 2023 Smartsheet
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.smartsheet.api.models;
import java.util.List;
/**
* Represents the Home object.
* @see Home Tab Help
*/
public class Home {
/**
* Represents the sheets in the home location.
*/
private List sheets;
/**
* Represents the folders in the home location.
*/
private List folders;
/**
* Represents the reports in the home location.
*/
private List reports;
/**
* Represents the templates in the home location.
*/
private List templates;
/**
* Represents the workspaces in the home location.
*/
private List workspaces;
/**
* Represents the sights in the home location.
*/
private List sights;
/**
* Gets the sheets in the home location.
*
* @return the sheets
*/
public List getSheets() {
return sheets;
}
/**
* Sets the sheets.
*
* @param sheets the new sheets
*/
public Home setSheets(List sheets) {
this.sheets = sheets;
return this;
}
/**
* Gets the folders in the home location.
*
* @return the folders
*/
public List getFolders() {
return folders;
}
/**
* Sets the folders in the home location.
*
* @param folders the new folders
*/
public Home setFolders(List folders) {
this.folders = folders;
return this;
}
/**
* Gets the reports.
*
* @return the reports
*/
public List getReports() {
return reports;
}
/**
* Sets the reports.
*
* @param reports the new reports
*/
public Home setReports(List reports) {
this.reports = reports;
return this;
}
/**
* Gets the templates in the home location.
*
* @return the templates
*/
public List getTemplates() {
return templates;
}
/**
* Sets the templates in the home location.
*
* @param templates the new templates
*/
public Home setTemplates(List templates) {
this.templates = templates;
return this;
}
/**
* Gets the workspaces in the home location.
*
* @return the workspaces
*/
public List getWorkspaces() {
return workspaces;
}
/**
* Sets the workspaces in the home location.
*
* @param workspaces the new workspaces
*/
public Home setWorkspaces(List workspaces) {
this.workspaces = workspaces;
return this;
}
/**
* Gets the sights in the home location.
*
* @return array of sights
*/
public List getSights() {
return sights;
}
/**
* Sets the sights in the home location.
*/
public Home setSights(List sights) {
this.sights = sights;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy