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

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

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

import "POGOProtos/Data/PokemonData.proto";
import "POGOProtos/Data/Quests/ClientQuest.proto";
import "POGOProtos/Inventory/Item/ItemAward.proto";
import "POGOProtos/Inventory/Loot.proto";
import "POGOProtos/Data/Badge/AwardedGymBadge.proto";
import "POGOProtos/Data/Gift/GiftBox.proto";

message FortSearchResponse {
	Result result = 1;
	repeated .POGOProtos.Inventory.Item.ItemAward items_awarded = 2;
	int32 gems_awarded = 3;
	.POGOProtos.Data.PokemonData pokemon_data_egg = 4;
	int32 experience_awarded = 5;
	int64 cooldown_complete_timestamp_ms = 6;
	int32 chain_hack_sequence_number = 7;
	.POGOProtos.Data.Badge.AwardedGymBadge awarded_gym_badge = 8;
	.POGOProtos.Inventory.Loot loot = 9;
	.POGOProtos.Inventory.Loot bonus_loot = 10;
	int32 raid_tickets = 11;
	.POGOProtos.Inventory.Loot team_bonus_loot = 12;
	string fort_id = 13;
	.POGOProtos.Data.Quests.ClientQuest challenge_quest = 14;
	.POGOProtos.Data.Gift.GiftBox gift_box = 15;

	enum Result {
		NO_RESULT_SET = 0;
		SUCCESS = 1;
		OUT_OF_RANGE = 2;
		IN_COOLDOWN_PERIOD = 3;
		INVENTORY_FULL = 4;
		EXCEEDED_DAILY_LIMIT = 5;
		POI_INACCESSIBLE = 6;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy