Search in sources :

Example 6 with NativeStyle

use of com.google.api.ads.admanager.axis.v202202.NativeStyle 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);
}
Also used : NativeStyleServiceInterface(com.google.api.ads.admanager.axis.v202108.NativeStyleServiceInterface) StatementBuilder(com.google.api.ads.admanager.axis.utils.v202108.StatementBuilder) NativeStylePage(com.google.api.ads.admanager.axis.v202108.NativeStylePage) NativeStyle(com.google.api.ads.admanager.axis.v202108.NativeStyle)

Aggregations

Random (java.util.Random)3 NativeStyle (com.google.api.ads.admanager.axis.v202108.NativeStyle)2 NativeStyleServiceInterface (com.google.api.ads.admanager.axis.v202108.NativeStyleServiceInterface)2 NativeStyle (com.google.api.ads.admanager.axis.v202111.NativeStyle)2 NativeStyleServiceInterface (com.google.api.ads.admanager.axis.v202111.NativeStyleServiceInterface)2 NativeStyle (com.google.api.ads.admanager.axis.v202202.NativeStyle)2 NativeStyleServiceInterface (com.google.api.ads.admanager.axis.v202202.NativeStyleServiceInterface)2 StatementBuilder (com.google.api.ads.admanager.axis.utils.v202108.StatementBuilder)1 StatementBuilder (com.google.api.ads.admanager.axis.utils.v202111.StatementBuilder)1 StatementBuilder (com.google.api.ads.admanager.axis.utils.v202202.StatementBuilder)1 NativeStylePage (com.google.api.ads.admanager.axis.v202108.NativeStylePage)1 Size (com.google.api.ads.admanager.axis.v202108.Size)1 NativeStylePage (com.google.api.ads.admanager.axis.v202111.NativeStylePage)1 Size (com.google.api.ads.admanager.axis.v202111.Size)1 NativeStylePage (com.google.api.ads.admanager.axis.v202202.NativeStylePage)1 Size (com.google.api.ads.admanager.axis.v202202.Size)1