Skip to content

Commit

Permalink
feat: change order of props for compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinszuchet committed Jan 17, 2025
1 parent 0acafeb commit 6bf4ffb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions proto/decentraland/social_service/v3/social_service_v3.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ message Pagination {
}

message FriendshipRequestResponse {
string id = 1;
User user = 2;
int64 created_at = 3;
optional string message = 4;
User user = 1;
int64 created_at = 2;
optional string message = 3;
string id = 4;
}

message FriendshipRequests {
Expand Down

0 comments on commit 6bf4ffb

Please sign in to comment.