Skip to content

Commit

Permalink
Added a proto for the request of developer's apps list
Browse files Browse the repository at this point in the history
Many get requests to "cluster", "browseCluster" and other endpoints have base64 encoded protobuf messages as GET url parameters. UrlRequestWrapper message is an attempt to provide a place for defining those messages.
  • Loading branch information
yeriomin committed Jul 11, 2018
1 parent b787565 commit 1e71660
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/main/proto/GooglePlay.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1257,3 +1257,16 @@ message ModifyLibraryRequest {
repeated string addPackageName = 2;
repeated string removePackageName = 3;
}
message UrlRequestWrapper {
optional DeveloperAppsRequest developerAppsRequest = 49;
}
message DeveloperAppsRequest {
optional DeveloperIdContainer developerIdContainer1 = 1;
optional DeveloperIdContainer developerIdContainer2 = 2;
optional int32 unknownInt3 = 3;
}
message DeveloperIdContainer {
optional string developerId = 1;
optional int32 unknownInt2 = 2;
optional int32 unknownInt3 = 3;
}

0 comments on commit 1e71660

Please sign in to comment.