Search in sources :

Example 6 with ImageCreative

use of com.google.api.ads.admanager.axis.v202111.ImageCreative in project googleads-java-lib by googleads.

the class CopyImageCreatives method runExample.

/**
 * Runs the example.
 *
 * @param adManagerServices the services factory.
 * @param session the session.
 * @param creativeId the ID of the image creative to copy.
 * @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, long creativeId) throws RemoteException {
    // Get the CreativeService.
    CreativeServiceInterface creativeService = adManagerServices.get(session, CreativeServiceInterface.class);
    // Create a statement to get the image creative.
    StatementBuilder statementBuilder = new StatementBuilder().where("id = :id").orderBy("id ASC").limit(StatementBuilder.SUGGESTED_PAGE_LIMIT).withBindVariableValue("id", creativeId);
    // Get the creative.
    ImageCreative imageCreative = (ImageCreative) creativeService.getCreativesByStatement(statementBuilder.toStatement()).getResults()[0];
    // Fetch the image asset.
    CreativeAsset assetToCopy = imageCreative.getPrimaryImageAsset();
    Size aspectRatioSize = imageCreative.getSize();
    aspectRatioSize.setIsAspectRatio(true);
    AspectRatioImageCreative newImageCreative = new AspectRatioImageCreative();
    newImageCreative.setName("Copy of original image creative");
    newImageCreative.setSize(aspectRatioSize);
    newImageCreative.setAdvertiserId(imageCreative.getAdvertiserId());
    newImageCreative.setImageAssets(new CreativeAsset[] { assetToCopy });
    newImageCreative.setDestinationUrl(imageCreative.getDestinationUrl());
    // Create the creative on the server.
    Creative[] creatives = creativeService.createCreatives(new Creative[] { newImageCreative });
    for (Creative createdCreative : creatives) {
        System.out.printf("A creative with ID %d, name '%s', and type '%s'" + " was created and can be previewed at: %s%n", createdCreative.getId(), createdCreative.getName(), createdCreative.getClass().getSimpleName(), createdCreative.getPreviewUrl());
    }
}
Also used : CreativeAsset(com.google.api.ads.admanager.axis.v202111.CreativeAsset) AspectRatioImageCreative(com.google.api.ads.admanager.axis.v202111.AspectRatioImageCreative) Creative(com.google.api.ads.admanager.axis.v202111.Creative) ImageCreative(com.google.api.ads.admanager.axis.v202111.ImageCreative) Size(com.google.api.ads.admanager.axis.v202111.Size) CreativeServiceInterface(com.google.api.ads.admanager.axis.v202111.CreativeServiceInterface) StatementBuilder(com.google.api.ads.admanager.axis.utils.v202111.StatementBuilder) AspectRatioImageCreative(com.google.api.ads.admanager.axis.v202111.AspectRatioImageCreative) ImageCreative(com.google.api.ads.admanager.axis.v202111.ImageCreative) AspectRatioImageCreative(com.google.api.ads.admanager.axis.v202111.AspectRatioImageCreative)

Example 7 with ImageCreative

use of com.google.api.ads.admanager.axis.v202111.ImageCreative in project googleads-java-lib by googleads.

the class GetImageCreatives 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 {
    CreativeServiceInterface creativeService = adManagerServices.get(session, CreativeServiceInterface.class);
    // Create a statement to select creatives.
    StatementBuilder statementBuilder = new StatementBuilder().where("creativeType = :creativeType").orderBy("id ASC").limit(StatementBuilder.SUGGESTED_PAGE_LIMIT).withBindVariableValue("creativeType", "ImageCreative");
    // Retrieve a small amount of creatives at a time, paging through
    // until all creatives have been retrieved.
    int totalResultSetSize = 0;
    do {
        CreativePage page = creativeService.getCreativesByStatement(statementBuilder.toStatement());
        if (page.getResults() != null) {
            // Print out some information for each creative.
            totalResultSetSize = page.getTotalResultSetSize();
            int i = page.getStartIndex();
            for (Creative creative : page.getResults()) {
                System.out.printf("%d) Creative with ID %d and name '%s' was found.%n", i++, creative.getId(), creative.getName());
            }
        }
        statementBuilder.increaseOffsetBy(StatementBuilder.SUGGESTED_PAGE_LIMIT);
    } while (statementBuilder.getOffset() < totalResultSetSize);
    System.out.printf("Number of results found: %d%n", totalResultSetSize);
}
Also used : Creative(com.google.api.ads.admanager.axis.v202111.Creative) CreativeServiceInterface(com.google.api.ads.admanager.axis.v202111.CreativeServiceInterface) StatementBuilder(com.google.api.ads.admanager.axis.utils.v202111.StatementBuilder) CreativePage(com.google.api.ads.admanager.axis.v202111.CreativePage)

Aggregations

Creative (com.google.api.ads.admanager.axis.v202111.Creative)3 CreativeServiceInterface (com.google.api.ads.admanager.axis.v202111.CreativeServiceInterface)3 Random (java.util.Random)3 StatementBuilder (com.google.api.ads.admanager.axis.utils.v202111.StatementBuilder)2 Creative (com.google.api.ads.admanager.axis.v202108.Creative)2 CreativeAsset (com.google.api.ads.admanager.axis.v202108.CreativeAsset)2 CreativeServiceInterface (com.google.api.ads.admanager.axis.v202108.CreativeServiceInterface)2 ImageCreative (com.google.api.ads.admanager.axis.v202108.ImageCreative)2 Size (com.google.api.ads.admanager.axis.v202108.Size)2 CreativeAsset (com.google.api.ads.admanager.axis.v202111.CreativeAsset)2 ImageCreative (com.google.api.ads.admanager.axis.v202111.ImageCreative)2 Size (com.google.api.ads.admanager.axis.v202111.Size)2 Creative (com.google.api.ads.admanager.axis.v202202.Creative)2 CreativeAsset (com.google.api.ads.admanager.axis.v202202.CreativeAsset)2 CreativeServiceInterface (com.google.api.ads.admanager.axis.v202202.CreativeServiceInterface)2 ImageCreative (com.google.api.ads.admanager.axis.v202202.ImageCreative)2 Size (com.google.api.ads.admanager.axis.v202202.Size)2 StatementBuilder (com.google.api.ads.admanager.axis.utils.v202108.StatementBuilder)1 StatementBuilder (com.google.api.ads.admanager.axis.utils.v202202.StatementBuilder)1 AspectRatioImageCreative (com.google.api.ads.admanager.axis.v202108.AspectRatioImageCreative)1