syntax = "proto3"; package api.chat; import "google/api/annotations.proto"; import "google/protobuf/struct.proto"; import "google/protobuf/empty.proto"; option go_package = "git.ikuban.com/server/pw-protobuf/api/chat;chat"; option java_multiple_files = true; option java_package = "api.chat"; service Chat { rpc CheckUserPartnerIsRelationship (CheckUserPartnerIsRelationshipRequest) returns (CheckUserPartnerIsRelationshipReply); } message CheckUserPartnerIsRelationshipRequest{ string partnerID = 1; } message CheckUserPartnerIsRelationshipReply{ bool isBuildRelationship = 1; int64 roomId = 2; }