Discuss this help topic in SecureBlackbox Forum
Defines types (scopes) of file permissions in the Google Drive storage.
Declaration
[C#/Java]
enum TSBGoogleDrivePermissionScope { gdpsUser = 0, gdpsGroup = 1, gdpsDomain = 2, gdpsAnyone = 3 };
[VB.NET]
Enum TSBGoogleDrivePermissionScope
gdpsUser = 0
gdpsGroup = 1
gdpsDomain = 2
gdpsAnyone = 3
End Enum
[Pascal]
TSBGoogleDrivePermissionScope = (gdpsUser, gdpsGroup, gdpsDomain, gdpsAnyone);
[C++]
typedef uint8_t TSBGoogleDrivePermissionScopeRaw;
typedef enum
{
gdpsUser = 0,
gdpsGroup = 1,
gdpsDomain = 2,
gdpsAnyone = 3
} TSBGoogleDrivePermissionScope;
Possible values:
Declared in
.NET:
- Namespace: SBGoogleDriveDataStorage
- Assembly: SecureBlackbox.Cloud
VCL:
- Unit: SBGoogleDriveDataStorage
Java:
- Package: SecureBlackbox.Clound.jar
C++:
- sbgoogledrivedatastorage.h
Discuss this help topic in SecureBlackbox Forum