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

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

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

import "POGOProtos/Data/Fitness/FitnessReport.proto";

message GetFitnessReportResponse {
	Status status = 1;
	repeated .POGOProtos.Data.Fitness.FitnessReport daily_reports = 2;
	repeated .POGOProtos.Data.Fitness.FitnessReport weekly_reports = 3;
	int64 week_reset_timestamp_since_monday_ms = 4;

	enum Status {
		UNSET = 0;
		SUCCESS = 1;
		ERROR_PLAYER_NOT_FOUND = 2;
		ERROR_RECORDS_NOT_FOUND = 3;
		ERROR_INVALID_WINDOW = 4;
		ERROR_UNKNOWN = 5;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy