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

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

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

import "POGOProtos/Data/Gym/GymStatusAndDefenders.proto";
import "POGOProtos/Data/Badge/AwardedGymBadge.proto";
import "POGOProtos/Data/Raid/EventInfo.proto";
import "POGOProtos/Map/Weather/DisplayWeather.proto";

message GymGetInfoResponse {
	.POGOProtos.Data.Gym.GymStatusAndDefenders gym_status_and_defenders = 1;
	string name = 2;
	string url = 3;
	Result result = 4;
	string description = 5;
	string secondary_url = 6;
	.POGOProtos.Data.Badge.AwardedGymBadge awarded_gym_badge = 7;
	string checkin_image_url = 8;
	.POGOProtos.Data.Raid.EventInfo event_info = 9;
	.POGOProtos.Map.Weather.DisplayWeather display_weather = 10;
	repeated string promo_image = 11;
	repeated string promo_description = 12;
	string call_to_action_link = 13;

	enum Result {
		UNSET = 0;
		SUCCESS = 1;
		ERROR_NOT_IN_RANGE = 2;
		ERROR_GYM_DISABLED = 3;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy