1syntax = "proto3";
2
3// Package internal holds protobuf types used by the server
4package internal;
5
6// RefreshToken is a message that holds refresh token data used by dex.
7message RefreshToken {
8  string refresh_id = 1;
9  string token = 2;
10}
11
12// IDTokenSubject represents both the userID and connID which is returned
13// as the "sub" claim in the ID Token.
14message IDTokenSubject {
15  string user_id = 1;
16  string conn_id = 2;
17}
18