Sha256: 01664991ae5c76bf7d0d2e5f0aa3136a14eaea5fdcc295479092667752709168
Contents?: true
Size: 696 Bytes
Versions: 53
Compression:
Stored size: 696 Bytes
Contents
package generic.remote; import "error.proto"; message Author { optional string guid = 1; optional string name = 2; repeated Error errors = 3; optional string user_guid = 4; } message Authors { repeated Author records = 1; } message AuthorRequest { repeated string guid = 1; repeated string name = 2; } service AuthorService { rpc Search (AuthorRequest) returns (Authors); rpc Create (Author) returns (Author); rpc Update (Author) returns (Author); rpc Delete (Author) returns (Author); rpc CreateAll (Authors) returns (Authors); rpc UpdateAll (Authors) returns (Authors); rpc DeleteAll (Authors) returns (Authors); rpc DestroyAll (Authors) returns (Authors); }
Version data entries
53 entries across 53 versions & 1 rubygems