| Contact | Donate | Imprint |
| ApiApp | UserAccountModule | TwitterX |
| Property | Type | Entity | Reference | Module |
| (1) ApiKey | STRING | ApiApp | ||
| (2) CallbackUrl | STRING | ApiApp | ||
| (3) CreatedAt | STRING | ApiApp | ||
| (4) Name | STRING | ApiApp | ||
| (5) OwnerUser | LONG | ApiApp | UserAccount | UserAccountModule |
| (6) WebsiteUrl | STRING | ApiApp |
Example:
final ApiApp apiapp = (ApiApp) invokeModule(USER_ACCOUNT_MODULE + "/apiapp/" + id, ApiApp.class);| Community | UserAccountModule | TwitterX |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | STRING | Community | ||
| (2) CreatorUser | LONG | Community | UserAccount | UserAccountModule |
| (3) Description | STRING | Community | ||
| (4) IsPrivate | BOOL | Community | ||
| (5) Name | STRING | Community | ||
| (6) Rules | STRING | Community |
Example:
final Community community = (Community) invokeModule(USER_ACCOUNT_MODULE + "/community/" + id, Community.class);| Device | UserAccountModule | TwitterX |
| Property | Type | Entity | Reference | Module |
| (1) AppVersion | STRING | Device | ||
| (2) CreatedAt | STRING | Device | ||
| (3) DeviceType | STRING | Device | ||
| (4) LastActiveAt | STRING | Device | ||
| (5) Os | STRING | Device | ||
| (6) User | LONG | Device | UserAccount | UserAccountModule |
Example:
final Device device = (Device) invokeModule(USER_ACCOUNT_MODULE + "/device/" + id, Device.class);| Session | UserAccountModule | TwitterX |
| Property | Type | Entity | Reference | Module |
| (1) Device | LONG | Session | Device | UserAccountModule |
| (2) EndedAt | STRING | Session | ||
| (3) IpAddress | STRING | Session | ||
| (4) IsActive | BOOL | Session | ||
| (5) StartedAt | STRING | Session | ||
| (6) User | LONG | Session | UserAccount | UserAccountModule |
| (7) UserAgent | STRING | Session |
Example:
final Session session = (Session) invokeModule(USER_ACCOUNT_MODULE + "/session/" + id, Session.class);| UserAccount | UserAccountModule | TwitterX |
| Property | Type | Entity | Reference | Module |
| (1) Bio | STRING | UserAccount | ||
| (2) CreatedAt | STRING | UserAccount | ||
| (3) DisplayName | STRING | UserAccount | ||
| (4) Email | STRING | UserAccount | ||
| (5) FollowersCount | LONG | UserAccount | ||
| (6) FollowingCount | LONG | UserAccount | ||
| (7) IsProtected | BOOL | UserAccount | ||
| (8) IsVerified | BOOL | UserAccount | ||
| (9) Language | STRING | UserAccount | ||
| (10) Location | STRING | UserAccount | ||
| (11) PhoneNumber | STRING | UserAccount | ||
| (12) StatusCount | LONG | UserAccount | ||
| (13) Timezone | STRING | UserAccount | ||
| (14) Url | STRING | UserAccount | ||
| (15) Username | STRING | UserAccount |
Example:
final UserAccount useraccount = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + id, UserAccount.class);| Contact | Donate | Imprint |