Sha256: ed3aebe0e27570f4052f9a69ec06163890fc04a3069aaced4ec6ea321c2153d5

Contents?: true

Size: 681 Bytes

Versions: 20

Compression:

Stored size: 681 Bytes

Contents

package generic.remote;

import "support/protobuf/error.proto";

message Author { 
  optional string guid = 1;
  optional string name = 2;
  repeated Error errors = 3;
}

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

20 entries across 20 versions & 1 rubygems

Version Path
active_remote-1.7.1 spec/support/definitions/author.proto
active_remote-1.7.0 spec/support/definitions/author.proto
active_remote-1.6.1 spec/support/definitions/author.proto
active_remote-1.6.0 spec/support/definitions/author.proto
active_remote-1.5.9 spec/support/definitions/author.proto
active_remote-1.5.8 spec/support/definitions/author.proto
active_remote-1.5.7 spec/support/definitions/author.proto
active_remote-1.5.6 spec/support/definitions/author.proto
active_remote-1.5.5 spec/support/definitions/author.proto
active_remote-1.5.4 spec/support/definitions/author.proto
active_remote-1.5.2 spec/support/definitions/author.proto
active_remote-1.5.1 spec/support/definitions/author.proto
active_remote-1.5.0 spec/support/definitions/author.proto
active_remote-1.4.1 spec/support/definitions/author.proto
active_remote-1.4.0 spec/support/definitions/author.proto
active_remote-1.3.3 spec/support/definitions/author.proto
active_remote-1.3.2 spec/support/definitions/author.proto
active_remote-1.3.1 spec/support/definitions/author.proto
active_remote-1.3.0 spec/support/definitions/author.proto
active_remote-1.2.1 spec/support/definitions/author.proto