Defines the operation type of a record in a GetStreamRecord response.
Enumeration values
PUT_ROW: the row was written by PutRow.UPDATE_ROW: the row was modified by UpdateRow.DELETE_ROW: the row was deleted by DeleteRow.
enum ActionType {
PUT_ROW = 1;
UPDATE_ROW = 2;
DELETE_ROW = 3;
}