Skip to content

Commit 3c58d5c

Browse files
committed
Adds Display name to profile responses
1 parent 197f03b commit 3c58d5c

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

source/src/Slackbot.Net.SlackClients.Http/Models/Responses/UserProfile/UserProfileResponse.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ public class GetUserProfile
1414

1515
public string Real_Name{ get; set; }
1616
public string Real_Name_Normalized{ get; set; }
17+
18+
public string Display_Name { get; set; }
19+
public string Display_Name_Normalized { get; set; }
1720

1821
public string Phone{ get; set; }
1922
public string Email{ get; set; }

source/src/Slackbot.Net.SlackClients.Http/Models/Responses/UsersList/UsersListResponse.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ public class UserProfile : ProfileIcons
3535
public string First_Name { get; set; }
3636
public string Last_Name { get; set; }
3737
public string Real_Name { get; set; }
38+
public string Display_Name { get; set; }
39+
public string Display_Name_Normalized { get; set; }
3840
public string Email { get; set; }
3941
public string Skype { get; set; }
4042
public string Status_Emoji { get; set; }

0 commit comments

Comments
 (0)