Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BlockedUser ¶
type Conversation ¶
type Conversation struct {
ID string `json:"id"`
Type string `json:"type"`
RecentMessage string `json:"recentMessage"`
IsGroup bool `json:"isGroup"`
UserBlocked bool `json:"blockedUser"`
UserLeft bool `json:"leftConversation"`
UserCanLeave bool `json:"canLeave"`
Archived bool `json:"archived"`
AllMessagesRead bool `json:"allMessagesRead"`
Members []Member `json:"members"`
Messages *[]ConversationMessage `json:"messages"`
LastModified string `json:"lastModified"`
}
type ConversationMessage ¶
type Conversations ¶
type Conversations struct {
Conversations []Conversation `json:"conversations"`
}
type Preference ¶
type Profile ¶
type Profile struct {
ID string `json:"id"`
Email string `json:"email"`
Username string `json:"userName"`
FirstName string `json:"firstName"`
MiddleName string `json:"middleName"`
LastName string `json:"lastName"`
PhoneNumber string `json:"phoneNumber"`
AddressUserBy string `json:"addressUserBy"`
UserInitial string `json:"userInitial"`
AvatarName string `json:"avatarName"`
AvatarUrl string `json:"avatarUrl"`
IsInactive bool `json:"inactive"`
IsAnnualSubscriber bool `json:"isAnnualSubscriber"`
BlockedUsers []BlockedUser `json:"blockedUsers"`
Preferences []Preference `json:"preferences"`
}
type SearchUser ¶
type SearchUsers ¶
type SearchUsers struct {
SearchUsers []SearchUser `json:"users"`
}
type SharedUser ¶
type SharedUser struct {
}
type TaggedUser ¶
type UnreadCount ¶
type UnreadCount struct {
UnreadCount int `json:"unreadCount"`
}
type UserRegistration ¶
type UserRegistration struct {
User User `json:"user"`
}
Click to show internal directories.
Click to hide internal directories.