Class LookupAccountCreatedApplications
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.Query
-
- com.algorand.algosdk.v2.client.indexer.LookupAccountCreatedApplications
-
public class LookupAccountCreatedApplications extends Query
Lookup an account's created application parameters, optionally for a specific ID. /v2/accounts/{account-id}/created-applications
-
-
Constructor Summary
Constructors Constructor Description LookupAccountCreatedApplications(Client client, Address accountId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LookupAccountCreatedApplicationsapplicationId(Long applicationId)Application IDResponse<ApplicationsResponse>execute()Execute the query.Response<ApplicationsResponse>execute(String[] headers, String[] values)Execute the query with custom headers, there must be an equal number of keys and values or else an error will be generated.protected QueryDatagetRequestString()LookupAccountCreatedApplicationsincludeAll(Boolean includeAll)Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.LookupAccountCreatedApplicationslimit(Long limit)Maximum number of results to return.LookupAccountCreatedApplicationsnext(String next)The next page of results.-
Methods inherited from class com.algorand.algosdk.v2.client.common.Query
addPathSegment, addQuery, addToBody, addToBody, baseExecute, baseExecute, getRequestMethod, getRequestUrl, getRequestUrl, resetPathSegment
-
-
-
-
Method Detail
-
applicationId
public LookupAccountCreatedApplications applicationId(Long applicationId)
Application ID
-
includeAll
public LookupAccountCreatedApplications includeAll(Boolean includeAll)
Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.
-
limit
public LookupAccountCreatedApplications limit(Long limit)
Maximum number of results to return. There could be additional pages even if the limit is not reached.
-
next
public LookupAccountCreatedApplications next(String next)
The next page of results. Use the next token provided by the previous results.
-
execute
public Response<ApplicationsResponse> execute() throws Exception
Execute the query.
-
execute
public Response<ApplicationsResponse> execute(String[] headers, String[] values) throws Exception
Execute the query with custom headers, there must be an equal number of keys and values or else an error will be generated.
-
getRequestString
protected QueryData getRequestString()
- Specified by:
getRequestStringin classQuery
-
-