-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f7c010f
commit 2e2ceb3
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
v.1.34.4 | ||
- tdproto.InvitableUser | ||
|
||
v.1.34.3 | ||
- Contact.node, tdproto.Node | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package tdproto | ||
|
||
// Account from other team, Active Directory or server | ||
type InvitableUser struct { | ||
// Account id | ||
Uid string `json:"uid"` | ||
|
||
// Node uid for external users | ||
Node string `json:"node,omitempty"` | ||
|
||
// Full name | ||
DisplayName string `json:"display_name"` | ||
|
||
// Icons | ||
Icons IconData `json:"icons"` | ||
} |