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-2.3.1 spec/support/definitions/category.proto
active_remote-2.3.0 spec/support/definitions/category.proto
active_remote-2.2.0 spec/support/definitions/category.proto
active_remote-2.1.1 spec/support/definitions/category.proto
active_remote-2.1.0 spec/support/definitions/category.proto
active_remote-2.1.0.rc2 spec/support/definitions/category.proto
active_remote-2.1.0.rc1 spec/support/definitions/category.proto
active_remote-2.1.0.beta2 spec/support/definitions/category.proto
active_remote-2.1.0.beta1 spec/support/definitions/category.proto
active_remote-2.0.2 spec/support/definitions/category.proto
active_remote-2.0.1 spec/support/definitions/category.proto
active_remote-2.0.0 spec/support/definitions/category.proto
active_remote-2.0.0.rc2 spec/support/definitions/category.proto