Sha256: fdc5813e13ebebf8fb04495d2203c17086e4d64233dddb53e0feda807692a43e

Contents?: true

Size: 876 Bytes

Versions: 3

Compression:

Stored size: 876 Bytes

Contents

package generic.remote;

import "support/protobuf/error.proto";

message Category {
  optional string guid = 1;
  optional string name = 2;
  repeated Error errors = 3;
  optional string user_guid = 4;
  optional string author_guid = 4;
  optional string chief_editor_guid = 4;
  optional string editor_guid = 4;
}

message Categories {
  repeated Category records = 1;
}

message CategoryRequest {
  repeated string guid = 1;
  repeated string name = 2;
}

service CategoryService {
  rpc Search (CategoryRequest) returns (Categories);
  rpc Create (Category) returns (Category);
  rpc Update (Category) returns (Category);
  rpc Delete (Category) returns (Category);
  rpc CreateAll (Categories) returns (Categories);
  rpc UpdateAll (Categories) returns (Categories);
  rpc DeleteAll (Categories) returns (Categories);
  rpc DestroyAll (Categories) returns (Categories);
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
active_remote-1.8.1 spec/support/definitions/support/protobuf/category.proto
active_remote-1.8.0 spec/support/definitions/support/protobuf/category.proto
active_remote-1.8.0.rc1 spec/support/definitions/support/protobuf/category.proto