use of com.google.api.ads.admanager.axis.v202108.NativeStyleServiceInterface in project googleads-java-lib by googleads.
the class GetAllNativeStyles method runExample.
/**
* Runs the example.
*
* @param adManagerServices the services factory.
* @param session the session.
* @throws ApiException if the API request failed with one or more service errors.
* @throws RemoteException if the API request failed due to other errors.
*/
public static void runExample(AdManagerServices adManagerServices, AdManagerSession session) throws RemoteException {
NativeStyleServiceInterface nativeStyleService = adManagerServices.get(session, NativeStyleServiceInterface.class);
// Create a statement to select native styles.
StatementBuilder statementBuilder = new StatementBuilder().orderBy("id ASC").limit(StatementBuilder.SUGGESTED_PAGE_LIMIT);
// Retrieve a small amount of native styles at a time, paging through
// until all native styles have been retrieved.
int totalResultSetSize = 0;
do {
NativeStylePage page = nativeStyleService.getNativeStylesByStatement(statementBuilder.toStatement());
if (page.getResults() != null) {
// Print out some information for each native style.
totalResultSetSize = page.getTotalResultSetSize();
int i = page.getStartIndex();
for (NativeStyle nativeStyle : page.getResults()) {
System.out.printf("%d) Native style with ID %d and name '%s' was found.%n", i++, nativeStyle.getId(), nativeStyle.getName());
}
}
statementBuilder.increaseOffsetBy(StatementBuilder.SUGGESTED_PAGE_LIMIT);
} while (statementBuilder.getOffset() < totalResultSetSize);
System.out.printf("Number of results found: %d%n", totalResultSetSize);
}
Aggregations