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

Version Path
active_remote-5.0.0.pre spec/support/definitions/author.proto
active_remote-3.3.1 spec/support/definitions/author.proto
active_remote-3.3.0 spec/support/definitions/author.proto
active_remote-3.2.2 spec/support/definitions/author.proto
active_remote-3.2.1 spec/support/definitions/author.proto
active_remote-3.2.0 spec/support/definitions/author.proto
active_remote-3.2.0.pre spec/support/definitions/author.proto
active_remote-3.1.3 spec/support/definitions/author.proto
active_remote-3.1.2 spec/support/definitions/author.proto
active_remote-3.1.2.pre spec/support/definitions/author.proto
active_remote-3.1.1 spec/support/definitions/author.proto
active_remote-3.1.0 spec/support/definitions/author.proto
active_remote-3.0.0 spec/support/definitions/author.proto
active_remote-3.0.0.pre1 spec/support/definitions/author.proto
active_remote-2.4.0 spec/support/definitions/author.proto
active_remote-2.3.5 spec/support/definitions/author.proto
active_remote-2.3.4 spec/support/definitions/author.proto
active_remote-2.3.3 spec/support/definitions/author.proto
active_remote-2.3.3.pre spec/support/definitions/author.proto
active_remote-2.3.2 spec/support/definitions/author.proto