| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Hashtag | Hashtag | HashtagModule | TwitterX |
| (2) Tweet | Tweet | TweetModule | TwitterX |
| (3) TweetHashtag | TweetHashtag | HashtagModule | TwitterX |
| (4) UserAccount | UserAccount | UserAccountModule | TwitterX |
| (5) UserBlock | UserBlock | HashtagModule | TwitterX |
| Hashtag | HashtagModule | TwitterX |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | STRING | Hashtag | ||
| (2) Description | STRING | Hashtag | ||
| (3) Tag | STRING | Hashtag |
Example:
final Hashtag hashtag = (Hashtag) invokeModule(HASHTAG_MODULE + "/hashtag/" + id, Hashtag.class);| TweetHashtag | HashtagModule | TwitterX |
| Property | Type | Entity | Reference | Module |
| (1) Hashtag | LONG | TweetHashtag | Hashtag | HashtagModule |
| (2) Tweet | LONG | TweetHashtag | Tweet | TweetModule |
Example:
final TweetHashtag tweethashtag = (TweetHashtag) invokeModule(HASHTAG_MODULE + "/tweethashtag/" + id, TweetHashtag.class);| UserBlock | HashtagModule | TwitterX |
| Property | Type | Entity | Reference | Module |
| (1) BlockedUser | LONG | UserBlock | UserAccount | UserAccountModule |
| (2) CreatedAt | STRING | UserBlock | ||
| (3) User | LONG | UserBlock | UserAccount | UserAccountModule |
Example:
final UserBlock userblock = (UserBlock) invokeModule(HASHTAG_MODULE + "/userblock/" + id, UserBlock.class);| Contact | Donate | Imprint |