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-7.1.0 spec/support/definitions/author.proto
active_remote-6.0.3 spec/support/definitions/author.proto
active_remote-6.1.2 spec/support/definitions/author.proto
active_remote-7.0.0 spec/support/definitions/author.proto
active_remote-6.1.1 spec/support/definitions/author.proto
active_remote-6.1.0 spec/support/definitions/author.proto
active_remote-6.0.2 spec/support/definitions/author.proto
active_remote-6.0.1 spec/support/definitions/author.proto
active_remote-6.0.0.beta spec/support/definitions/author.proto
active_remote-5.2.0 spec/support/definitions/author.proto
active_remote-5.2.0.beta spec/support/definitions/author.proto
active_remote-3.3.3 spec/support/definitions/author.proto
active_remote-5.2.0.alpha spec/support/definitions/author.proto
active_remote-3.3.2 spec/support/definitions/author.proto
active_remote-5.0.1 spec/support/definitions/author.proto
active_remote-5.1.1 spec/support/definitions/author.proto
active_remote-5.1.0 spec/support/definitions/author.proto
active_remote-5.0.0 spec/support/definitions/author.proto
active_remote-5.1.0.rc1 spec/support/definitions/author.proto
active_remote-5.0.0.rc1 spec/support/definitions/author.proto