syntax = "proto3";
package POGOProtos.Networking.Requests.Messages.Social;

import "POGOProtos/Enums/NotificationState.proto";

message UpdateNotificationMessage {
	repeated string notification_ids = 1;
	repeated int64 create_timestamp_ms = 2;
	.POGOProtos.Enums.NotificationState state = 3;
}
