access property
Who has permission to run the web app. Possible string values are:
- "UNKNOWN_ACCESS" : Default value, should not be used.
- "MYSELF" : Only the user who deployed the web app or executable can access it. Note that this is not necessarily the owner of the script project.
- "DOMAIN" : Only users in the same domain as the user who deployed the web app or executable can access it.
- "ANYONE" : Any logged in user can access the web app or executable.
- "ANYONE_ANONYMOUS" : Any user, logged in or not, can access the web app or executable.
Implementation
core.String? access;