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#]
public 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;
[PHP]
class TSBGoogleDriveCommentStatus extends TSBBaseEnum {
const gdcsOpen = 0;
const gdcsResolved = 1;
}
[Java]
public enum TSBGoogleDriveCommentStatus { gdcsOpen, gdcsResolved }
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