diff --git a/proto-docs/service.md b/proto-docs/service.md index 6af3468..bf1bc1a 100644 --- a/proto-docs/service.md +++ b/proto-docs/service.md @@ -107,7 +107,7 @@ User token granting rights for object manipulation | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| info | [Token.Info](#service.Token.Info) | | Info is a grouped information about token | +| TokenInfo | [Token.Info](#service.Token.Info) | | Info is a grouped information about token | | Signature | [bytes](#bytes) | | Signature is a signature of session token information | diff --git a/service/verify.proto b/service/verify.proto index 97cc7fa..b25cd47 100644 --- a/service/verify.proto +++ b/service/verify.proto @@ -68,8 +68,8 @@ message Token { bytes SessionKey = 7; } - // Info is a grouped information about token - Info info = 1 [(gogoproto.embed) = true, (gogoproto.nullable) = false, (gogoproto.customname) = "Info"]; + // TokenInfo is a grouped information about token + Info TokenInfo = 1 [(gogoproto.embed) = true, (gogoproto.nullable) = false]; // Signature is a signature of session token information bytes Signature = 8;