syntax = "proto3";
package POGOProtos.Networking.Platform.Responses;

message RegisterPushNotificationResponse {
	Result result = 1;

	enum Result {
		UNSET = 0;
		SUCCESS = 1;
		NO_CHANGE = 2;
	}
}
