public enum AccessScope extends Enum<AccessScope>
| Enum Constant and Description |
|---|
ADMIN_SHEETS
Modify sheet structure, including comlumn definition, publish state, etc
|
ADMIN_USERS
Add and remove users from your smartsheet organization
|
ADMIN_WEBHOOKS
Create and manage webhooks
|
ADMIN_WORKSPACES
Create and manage workspaces and folders, including sharing
|
CREATE_SHEETS
Create new sheets
|
CREATE_SIGHTS
Create new Sights
|
DELETE_SHEETS
Delete Sheets
|
DELETE_SIGHTS
Delete Sights
|
READ_SHEETS
Read all sheet data, including comments, attachments and cell data
|
READ_SIGHTS
Read all Sight data
|
READ_USERS
Retrieve users and groups for your Smartsheet organization
|
SHARE_SHEETS
Share sheets, including sending sheets as attachments
|
SHARE_SIGHTS
Share Sights
|
WRITE_SHEETS
Insert and modify sheet data, including comments, attachments and cell data
|
| Modifier and Type | Method and Description |
|---|---|
static AccessScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessScope READ_SHEETS
public static final AccessScope WRITE_SHEETS
public static final AccessScope SHARE_SHEETS
public static final AccessScope DELETE_SHEETS
public static final AccessScope CREATE_SHEETS
public static final AccessScope CREATE_SIGHTS
public static final AccessScope READ_SIGHTS
public static final AccessScope DELETE_SIGHTS
public static final AccessScope SHARE_SIGHTS
public static final AccessScope READ_USERS
public static final AccessScope ADMIN_USERS
public static final AccessScope ADMIN_SHEETS
public static final AccessScope ADMIN_WORKSPACES
public static final AccessScope ADMIN_WEBHOOKS
public static AccessScope[] values()
for (AccessScope c : AccessScope.values()) System.out.println(c);
public static AccessScope valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2014–2017 Smartsheet. All rights reserved.