syntax = "proto3";
package POGOProtos.Data.Telemetry;

import "POGOProtos/Enums/TelemetryIds.proto";

message LoginActionTelemetry {
	.POGOProtos.Enums.LoginActionTelemetryIds login_action_id = 1;
	bool first_time = 2;
	bool success = 3;
	bool intent_existing = 4;
	string error = 5;
	string auth_status = 6;
}
