Sha256: a6d83ca4fd1ccf813ee3641bf0042586f297f1642d6112f93022800dc82561ed

Contents?: true

Size: 859 Bytes

Versions: 53

Compression:

Stored size: 859 Bytes

Contents

package generic.remote;

import "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 = 5;
  optional string chief_editor_guid = 6;
  optional string editor_guid = 7;
}

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

53 entries across 53 versions & 1 rubygems

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