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

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

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

import "POGOProtos/Data/PokemonData.proto";

message UpgradePokemonResponse {
	Result result = 1;
	.POGOProtos.Data.PokemonData upgraded_pokemon = 2;
	.POGOProtos.Data.PokemonData next_upgraded_pokemon = 3;

	enum Result {
		UNSET = 0;
		SUCCESS = 1;
		ERROR_POKEMON_NOT_FOUND = 2;
		ERROR_INSUFFICIENT_RESOURCES = 3;
		ERROR_UPGRADE_NOT_AVAILABLE = 4;
		ERROR_POKEMON_IS_DEPLOYED = 5;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy