23 lines
395 B
TypeScript
23 lines
395 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* User information included in token response
|
|
*/
|
|
export type UserInfo = {
|
|
/**
|
|
* Display name
|
|
*/
|
|
display_name?: string | null;
|
|
/**
|
|
* Identity ID
|
|
*/
|
|
id: number;
|
|
/**
|
|
* Identity login
|
|
*/
|
|
login: string;
|
|
};
|
|
|