| Contact | Donate | Imprint |
| CommentLike | UserAccountModule |
| Property | Type | Entity | Reference | Module |
| (1) Comment | LONG | CommentLike | Comment | StoryModule |
| (2) CreatedAt | DATE | CommentLike | ||
| (3) UserAccount | LONG | CommentLike | UserAccount | UserAccountModule |
Example:
final CommentLike commentlike = (CommentLike) invokeModule(USER_ACCOUNT_MODULE + "/commentlike/" + id, CommentLike.class);| DirectThreadParticipant | UserAccountModule |
| Property | Type | Entity | Reference | Module |
| (1) DirectThread | LONG | DirectThreadParticipant | DirectThread | DirectThreadModule |
| (2) IsAdmin | BOOL | DirectThreadParticipant | ||
| (3) JoinedAt | DATE | DirectThreadParticipant | ||
| (4) UserAccount | LONG | DirectThreadParticipant | UserAccount | UserAccountModule |
Example:
final DirectThreadParticipant directthreadparticipant = (DirectThreadParticipant) invokeModule(USER_ACCOUNT_MODULE + "/directthreadparticipant/" + id, DirectThreadParticipant.class);| MediaItem | UserAccountModule |
| Property | Type | Entity | Reference | Module |
| (1) AspectRatio | STRING | MediaItem | ||
| (2) CreatedAt | DATE | MediaItem | ||
| (3) DurationSeconds | LONG | MediaItem | ||
| (4) FilterName | STRING | MediaItem | ||
| (5) Height | LONG | MediaItem | ||
| (6) MediaOrder | LONG | MediaItem | ||
| (7) MediaType | STRING | MediaItem | ||
| (8) Post | LONG | MediaItem | Post | UserAccountModule |
| (9) ThumbnailUrl | STRING | MediaItem | ||
| (10) Url | STRING | MediaItem | ||
| (11) Width | LONG | MediaItem |
Example:
final MediaItem mediaitem = (MediaItem) invokeModule(USER_ACCOUNT_MODULE + "/mediaitem/" + id, MediaItem.class);| Post | UserAccountModule |
| Property | Type | Entity | Reference | Module |
| (1) Caption | STRING | Post | ||
| (2) CreatedAt | DATE | Post | ||
| (3) IsArchived | BOOL | Post | ||
| (4) IsSponsored | BOOL | Post | ||
| (5) Location | LONG | Post | Location | FeatureFlagModule |
| (6) MediaType | STRING | Post | ||
| (7) UpdatedAt | DATE | Post | ||
| (8) UserAccount | LONG | Post | UserAccount | UserAccountModule |
| (9) Visibility | STRING | Post |
Example:
final Post post = (Post) invokeModule(USER_ACCOUNT_MODULE + "/post/" + id, Post.class);| ReelLike | UserAccountModule |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | ReelLike | ||
| (2) Reel | LONG | ReelLike | Reel | ReelModule |
| (3) UserAccount | LONG | ReelLike | UserAccount | UserAccountModule |
Example:
final ReelLike reellike = (ReelLike) invokeModule(USER_ACCOUNT_MODULE + "/reellike/" + id, ReelLike.class);| UserAccount | UserAccountModule |
| Property | Type | Entity | Reference | Module |
| (1) AccountStatus | STRING | UserAccount | ||
| (2) Bio | STRING | UserAccount | ||
| (3) Country | STRING | UserAccount | ||
| (4) CreatedAt | DATE | UserAccount | ||
| (5) DateOfBirth | DATE | UserAccount | ||
| (6) Email | STRING | UserAccount | ||
| (7) FullName | STRING | UserAccount | ||
| (8) IsPrivate | BOOL | UserAccount | ||
| (9) IsVerified | BOOL | UserAccount | ||
| (10) PasswordHash | STRING | UserAccount | ||
| (11) UpdatedAt | DATE | UserAccount | ||
| (12) Username | STRING | UserAccount | ||
| (13) Website | STRING | UserAccount |
Example:
final UserAccount useraccount = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + id, UserAccount.class);| Contact | Donate | Imprint |