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

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

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

import "POGOProtos/Enums/PokemonId.proto";

message UseItemRareCandyResponse {
	Result result = 1;
	.POGOProtos.Enums.PokemonId pokemon_id = 2;
	int32 updated_candy_count = 3;

	enum Result {
		UNSET = 0;
		SUCCESS = 1;
		INVALID_POKEMON_ID = 2;
		NO_PLAYER = 3;
		WRONG_ITEM_TYPE = 4;
		ITEM_NOT_IN_INVENTORY = 5;
		NOT_ENOUGH_ITEMS = 6;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy