mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-01 10:40:30 -05:00
14 lines
185 B
Protocol Buffer
14 lines
185 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package errors;
|
|
|
|
message Error {
|
|
string id = 1;
|
|
int32 code = 2;
|
|
string detail = 3;
|
|
string status = 4;
|
|
};
|
|
|
|
message MultiError {
|
|
repeated Error errors = 1;
|
|
} |