| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) AdCampaign | AdCampaign | ReelModule | |
| (2) AdPlacement | AdPlacement | StoryModule | |
| (3) ArchiveItem | ArchiveItem | StoryModule | |
| (4) Comment | Comment | StoryModule | |
| (5) DirectMessage | DirectMessage | DirectThreadModule | |
| (6) Notification | Notification | ReelModule | |
| (7) Post | Post | UserAccountModule | |
| (8) Reel | Reel | ReelModule | |
| (9) ReelLike | ReelLike | UserAccountModule | |
| (10) ReelView | ReelView | ReelModule | |
| (11) Report | Report | StoryModule | |
| (12) Story | Story | StoryModule | |
| (13) UserAccount | UserAccount | UserAccountModule |
| AdCampaign | ReelModule |
| Property | Type | Entity | Reference | Module |
| (1) AdvertiserName | STRING | AdCampaign | ||
| (2) Budget | STRING | AdCampaign | ||
| (3) CreatedAt | DATE | AdCampaign | ||
| (4) EndDate | DATE | AdCampaign | ||
| (5) Name | STRING | AdCampaign | ||
| (6) Objective | STRING | AdCampaign | ||
| (7) StartDate | DATE | AdCampaign |
Example:
final AdCampaign adcampaign = (AdCampaign) invokeModule(REEL_MODULE + "/adcampaign/" + id, AdCampaign.class);| Notification | ReelModule |
| Property | Type | Entity | Reference | Module |
| (1) Comment | LONG | Notification | Comment | StoryModule |
| (2) CreatedAt | DATE | Notification | ||
| (3) DirectMessage | LONG | Notification | DirectMessage | DirectThreadModule |
| (4) IsRead | BOOL | Notification | ||
| (5) Post | LONG | Notification | Post | UserAccountModule |
| (6) Reel | LONG | Notification | Reel | ReelModule |
| (7) SourceUser | LONG | Notification | UserAccount | UserAccountModule |
| (8) Story | LONG | Notification | Story | StoryModule |
| (9) Type | STRING | Notification | ||
| (10) UserAccount | LONG | Notification | UserAccount | UserAccountModule |
Example:
final Notification notification = (Notification) invokeModule(REEL_MODULE + "/notification/" + id, Notification.class);| Reel | ReelModule |
| Property | Type | Entity | Reference | Module |
| (1) AudioTrack | STRING | Reel | ||
| (2) Caption | STRING | Reel | ||
| (3) CreatedAt | DATE | Reel | ||
| (4) DurationSeconds | LONG | Reel | ||
| (5) IsRemixAllowed | BOOL | Reel | ||
| (6) UpdatedAt | DATE | Reel | ||
| (7) UserAccount | LONG | Reel | UserAccount | UserAccountModule |
| (8) Visibility | STRING | Reel |
Example:
final Reel reel = (Reel) invokeModule(REEL_MODULE + "/reel/" + id, Reel.class);| ReelView | ReelModule |
| Property | Type | Entity | Reference | Module |
| (1) Reel | LONG | ReelView | Reel | ReelModule |
| (2) UserAccount | LONG | ReelView | UserAccount | UserAccountModule |
| (3) ViewDurationSeconds | LONG | ReelView | ||
| (4) ViewedAt | DATE | ReelView |
Example:
final ReelView reelview = (ReelView) invokeModule(REEL_MODULE + "/reelview/" + id, ReelView.class);| Contact | Donate | Imprint |