mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-15 04:18:01 +00:00
15 lines
260 B
Protocol Buffer
15 lines
260 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package caos.zitadel.api.v1;
|
||
|
|
||
|
option go_package = "github.com/caos/zitadel/pkg/message";
|
||
|
|
||
|
message ErrorDetail {
|
||
|
string id = 1;
|
||
|
string message = 2;
|
||
|
}
|
||
|
|
||
|
message LocalizedMessage {
|
||
|
string key = 1;
|
||
|
string localized_message = 2;
|
||
|
}
|