All Downloads are FREE. Search and download functionalities are using the official Maven repository.

POGOProtos.Networking.Responses.AcceptCombatChallengeResponse.proto Maven / Gradle / Ivy

syntax = "proto3";
package POGOProtos.Networking.Responses;

import "POGOProtos/Data/Combat/CombatChallenge.proto";

message AcceptCombatChallengeResponse {
	Result result = 1;
	.POGOProtos.Data.Combat.CombatChallenge challenge = 2;

	enum Result {
		UNSET = 0;
		SUCCESS = 1;
		ERROR_INVALID_CHALLENGE_STATE = 2;
		ERROR_CHALLENGE_NOT_FOUND = 3;
		ERROR_POKEMON_NOT_IN_INVENTORY = 4;
		ERROR_NOT_ELIGIBLE_LEAGUE = 5;
		ERROR_PLAYER_BELOW_MINIMUM_LEVEL = 6;
		ERROR_OPPONENT_NOT_IN_RANGE = 7;
		ERROR_ALREADY_TIMEDOUT = 8;
		ERROR_ALREADY_CANCELLED = 9;
		ERROR_ACCESS_DENIED = 10;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy