syntax = "proto3";
package POGOProtos.Networking.Responses;

message SetInGameCurrencyExchangeRateResponse {
	Status status = 1;

	enum Status {
		UNSET = 0;
		SUCCESS = 1;
		FAILURE = 2;
	}
}
