ActionType specifies the operation type in the response message of the GetStreamRecord operation. Operation types include:

  • PUT_ROW, which indicates that the operation type is PutRow.

  • UPDATE_ROW, which indicates that the operation type is UpdateRow.

  • DELETE_ROW, which indicates that the operation type is DeleteRow.

Enumeration value list

enum ActionType {
    PUT_ROW = 1;
    UPDATE_ROW = 2;
    DELETE_ROW = 3;
}

Related operations

GetStreamRecord