syntax = "proto3";
package POGOProtos.Networking.Responses.Social;

message CreateInviteCodeResponse {
	Result result = 1;
	string friend_code = 2;

	enum Result {
		UNSET = 0;
		SUCCESS = 1;
	}
}
