Commit c5de6fa7 authored by Eric Chiang's avatar Eric Chiang

*: regenerate proto

parent ab102b81
This diff is collapsed.
// Code generated by protoc-gen-go.
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: server/internal/types.proto
// DO NOT EDIT!
/*
Package internal is a generated protocol buffer package.
......@@ -42,6 +41,20 @@ func (m *RefreshToken) String() string { return proto.CompactTextStri
func (*RefreshToken) ProtoMessage() {}
func (*RefreshToken) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
func (m *RefreshToken) GetRefreshId() string {
if m != nil {
return m.RefreshId
}
return ""
}
func (m *RefreshToken) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
// IDTokenSubject represents both the userID and connID which is returned
// as the "sub" claim in the ID Token.
type IDTokenSubject struct {
......@@ -54,6 +67,20 @@ func (m *IDTokenSubject) String() string { return proto.CompactTextSt
func (*IDTokenSubject) ProtoMessage() {}
func (*IDTokenSubject) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
func (m *IDTokenSubject) GetUserId() string {
if m != nil {
return m.UserId
}
return ""
}
func (m *IDTokenSubject) GetConnId() string {
if m != nil {
return m.ConnId
}
return ""
}
func init() {
proto.RegisterType((*RefreshToken)(nil), "internal.RefreshToken")
proto.RegisterType((*IDTokenSubject)(nil), "internal.IDTokenSubject")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment