Sha256: 775da9819a0b31b6d89adb3aab8ba284f0aa7be72b7546da15de42bb1055fe76

Contents?: true

Size: 733 Bytes

Versions: 20

Compression:

Stored size: 733 Bytes

Contents

package generic.remote;

import "support/protobuf/error.proto";

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

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

20 entries across 20 versions & 1 rubygems

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