Indicates the operation type in the response of the GetStreamRecord operation.
Enumeration values
PUT_ROW indicates that the operation type is PutRow.
UPDATE_ROW indicates that the operation type is UpdateRow.
DELETE_ROW indicates that the operation type is DeleteRow.
enum ActionType {
PUT_ROW = 1;
UPDATE_ROW = 2;
DELETE_ROW = 3;
}