Overview

Summary

ContactDonateImprint


6. TREND LOCATION MODULE (UI prompt)



Module Entities (5)

EntityAliasModuleGlobal Schema
(1) ApiAccessTokenApiAccessTokenTrendLocationModuleTwitterX
(2) ApiAppApiAppUserAccountModuleTwitterX
(3) TrendLocationTrendLocationTrendLocationModuleTwitterX
(4) TrendTopicTrendTopicTrendLocationModuleTwitterX
(5) UserAccountUserAccountUserAccountModuleTwitterX

Module Interfaces (18)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /apiaccesstoken/user/{id}findAllApiAccessTokenOfUser(id)TrendLocationModuleGETUserAccount ApiAccessToken
(2) /apiaccesstokenfindAllApiAccessToken()TrendLocationModuleGETApiAccessToken
(3) /trendtopic/trendlocation/{id}findAllTrendTopicOfTrendLocation(id)TrendLocationModuleGETTrendLocation TrendTopic
(4) /trendtopic/{id}updateTrendTopicById(trendtopic)TrendLocationModulePUTTrendTopic
(5) /trendlocationfindAllTrendLocation()TrendLocationModuleGETTrendLocation
(6) /apiaccesstoken/{id}updateApiAccessTokenById(apiaccesstoken)TrendLocationModulePUTApiAccessToken
(7) /apiaccesstokeninsertApiAccessToken(apiaccesstoken)TrendLocationModulePOSTApiAccessToken
(8) /apiaccesstoken/apiapp/{id}findAllApiAccessTokenOfApiApp(id)TrendLocationModuleGETApiApp ApiAccessToken
(9) /trendlocationinsertTrendLocation(trendlocation)TrendLocationModulePOSTTrendLocation
(10) /trendtopicinsertTrendTopic(trendtopic)TrendLocationModulePOSTTrendTopic
(11) /trendlocation/{id}findTrendLocationById(id)TrendLocationModuleGETTrendLocation
(12) /apiaccesstoken/{id}findApiAccessTokenById(id)TrendLocationModuleGETApiAccessToken
(13) /trendlocation/{id}deleteTrendLocationById(id)TrendLocationModuleDELETETrendLocation
(14) /trendtopic/{id}findTrendTopicById(id)TrendLocationModuleGETTrendTopic
(15) /trendtopicfindAllTrendTopic()TrendLocationModuleGETTrendTopic
(16) /apiaccesstoken/{id}deleteApiAccessTokenById(id)TrendLocationModuleDELETEApiAccessToken
(17) /trendlocation/{id}updateTrendLocationById(trendlocation)TrendLocationModulePUTTrendLocation
(18) /trendtopic/{id}deleteTrendTopicById(id)TrendLocationModuleDELETETrendTopic






6.1 API ACCESS TOKEN


ApiAccessTokenTrendLocationModuleTwitterX

Properties (6)

PropertyTypeEntityReferenceModule
(1) ApiAppLONGApiAccessTokenApiAppUserAccountModule
(2) CreatedAtSTRINGApiAccessToken
(3) ExpiresAtSTRINGApiAccessToken
(4) ScopeSTRINGApiAccessToken
(5) TokenSTRINGApiAccessToken
(6) UserLONGApiAccessTokenUserAccountUserAccountModule





Example:

final ApiAccessToken apiaccesstoken = (ApiAccessToken) invokeModule(TREND_LOCATION_MODULE + "/apiaccesstoken/" + id, ApiAccessToken.class);
if (apiaccesstoken != null) {
    final UserAccount user1 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + apiaccesstoken.getUser().getId(), UserAccount.class);
    if (user1 != null) {
    }
    final ApiApp apiapp2 = (ApiApp) invokeModule(USER_ACCOUNT_MODULE + "/apiapp/" + apiaccesstoken.getApiApp().getId(), ApiApp.class);
    if (apiapp2 != null) {
        final UserAccount owneruser3 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + apiapp2.getOwnerUser().getId(), UserAccount.class);
        if (owneruser3 != null) {
        }
    }
}
return apiaccesstoken;


6.2 TREND LOCATION


TrendLocationTrendLocationModuleTwitterX

Properties (4)

PropertyTypeEntityReferenceModule
(1) CountrySTRINGTrendLocation
(2) CountryCodeSTRINGTrendLocation
(3) NameSTRINGTrendLocation
(4) WoeidLONGTrendLocation





Example:

final TrendLocation trendlocation = (TrendLocation) invokeModule(TREND_LOCATION_MODULE + "/trendlocation/" + id, TrendLocation.class);
if (trendlocation != null) {
}
return trendlocation;


6.3 TREND TOPIC


TrendTopicTrendLocationModuleTwitterX

Properties (6)

PropertyTypeEntityReferenceModule
(1) AsOfSTRINGTrendTopic
(2) NameSTRINGTrendTopic
(3) PromotedContentSTRINGTrendTopic
(4) QuerySTRINGTrendTopic
(5) TrendLocationLONGTrendTopicTrendLocationTrendLocationModule
(6) UrlSTRINGTrendTopic





Example:

final TrendTopic trendtopic = (TrendTopic) invokeModule(TREND_LOCATION_MODULE + "/trendtopic/" + id, TrendTopic.class);
if (trendtopic != null) {
    final TrendLocation trendlocation1 = (TrendLocation) invokeModule(TREND_LOCATION_MODULE + "/trendlocation/" + trendtopic.getTrendLocation().getId(), TrendLocation.class);
    if (trendlocation1 != null) {
    }
}
return trendtopic;


Overview

Summary

ContactDonateImprint