Discuss this help topic in SecureBlackbox Forum

TSBGoogleDrivePermissionScope

Declared in     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Defines types (scopes) of file permissions in the Google Drive storage.

Declaration

[C#]
    public 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;

[PHP]
    class TSBGoogleDrivePermissionScope extends TSBBaseEnum {
        const gdpsUser = 0;
        const gdpsGroup = 1;
        const gdpsDomain = 2;
        const gdpsAnyone = 3;
    }

[Java]
    public enum TSBGoogleDrivePermissionScope { gdpsUser, gdpsGroup, gdpsDomain, gdpsAnyone }

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