Type Alias MyProfileResponseDto
MyProfileResponseDto: {
displayName: string;
email: string | null;
language:
| "ko"
| "en"
| "ja"
| "zh-Hans"
| "zh-Hant";
pictureUrl: string | null;
receivedReactions: {
CLAP: number;
CURIOUS: number;
INTERESTED: number;
LIKE: number;
total: number;
};
roleName: string;
stats: {
commentCount: number;
postCount: number;
};
tenantName: string;
translationLanguage:
| "ko"
| "en"
| "ja"
| "zh-Hans"
| "zh-Hant"
| null;
}