socialgraph.proto 882 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. message CountReply {
  2. repeated int32 counts = 0x1;
  3. }
  4. message UserListRequest {
  5. optional string last_result = 0x1;
  6. optional int32 count = 0x2;
  7. optional bool include_length = 0x3;
  8. }
  9. message UserListReply {
  10. repeated User users = 0x1;
  11. optional int32 length = 0x2;
  12. }
  13. message User {
  14. optional string username = 0x1;
  15. optional int32 subscriber_count = 0x2;
  16. optional int32 subscription_count = 0x3;
  17. }
  18. message ArtistListReply {
  19. repeated Artist artists = 0x1;
  20. }
  21. message Artist {
  22. optional string artistid = 0x1;
  23. optional int32 subscriber_count = 0x2;
  24. }
  25. message StringListRequest {
  26. repeated string args = 0x1;
  27. }
  28. message StringListReply {
  29. repeated string reply = 0x1;
  30. }
  31. message TopPlaylistsRequest {
  32. optional string username = 0x1;
  33. optional int32 count = 0x2;
  34. }
  35. message TopPlaylistsReply {
  36. repeated string uris = 0x1;
  37. }