Discuss this help topic in SecureBlackbox Forum
Defines possible status values of the comments in the Google Drive storage. Status can be changed by posting a reply to a comment with the desired status.
Declaration
[C#/Java]
enum TSBGoogleDriveCommentStatus { gdcsOpen = 0, gdcsResolved = 1 };
[VB.NET]
Enum TSBGoogleDriveCommentStatus
gdcsOpen = 0
gdcsResolved = 1
End Enum
[Pascal]
TSBGoogleDriveCommentStatus = (gdcsOpen, gdcsResolved);
[C++]
typedef uint8_t TSBGoogleDriveCommentStatusRaw;
typedef enum
{
gdcsOpen = 0,
gdcsResolved = 1
} TSBGoogleDriveCommentStatus;
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