syntax = "proto3";
package POGOProtos.Networking.Responses;

message RedeemGoogleReceiptResponse {
	Status result = 1;
	string transaction_token = 2;

	enum Status {
		UNSET = 0;
		SUCCESS = 1;
		FAILURE = 2;
	}
}
