All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.bingads.v13.bulk.entities.BulkReviewAdExtension Maven / Gradle / Ivy

Go to download

The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.

There is a newer version: 13.0.22.1
Show newest version
package com.microsoft.bingads.v13.bulk.entities;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

import com.microsoft.bingads.internal.functionalinterfaces.BiConsumer;
import com.microsoft.bingads.internal.functionalinterfaces.Function;
import com.microsoft.bingads.v13.bulk.BulkFileReader;
import com.microsoft.bingads.v13.bulk.BulkFileWriter;
import com.microsoft.bingads.v13.bulk.BulkOperation;
import com.microsoft.bingads.v13.bulk.BulkServiceManager;
import com.microsoft.bingads.v13.campaignmanagement.ReviewAdExtension;
import com.microsoft.bingads.v13.internal.bulk.BulkMapping;
import com.microsoft.bingads.v13.internal.bulk.MappingHelpers;
import com.microsoft.bingads.v13.internal.bulk.RowValues;
import com.microsoft.bingads.v13.internal.bulk.SimpleBulkMapping;
import com.microsoft.bingads.v13.internal.bulk.StringExtensions;
import com.microsoft.bingads.v13.internal.bulk.StringTable;

/**
 * Represents a review ad extension that can be read or written in a bulk file.
 * This class exposes the properties
 * that can be read and written as fields of the Review Ad Extension record in a
 * bulk file.
 * 

* For more information, see review Ad Extension at * https://go.microsoft.com/fwlink/?linkid=846127 * * @see BulkServiceManager * @see BulkOperation * @see BulkFileReader * @see BulkFileWriter */ public class BulkReviewAdExtension extends BulkAdExtension { /** * Gets the review ad extension. */ public ReviewAdExtension getReviewAdExtension() { return getAdExtension(); } /** * Sets the review ad extension. */ public void setReviewAdExtension(ReviewAdExtension reviewAdExtension) { setAdExtension(reviewAdExtension); } private static final List> MAPPINGS; static { List> m = new ArrayList>(); m.add(new SimpleBulkMapping( StringTable.IsExact, new Function() { @Override public String apply(BulkReviewAdExtension c) { return StringExtensions.toBooleanBulkString(c.getAdExtension().getIsExact()); } }, new BiConsumer() { @Override public void accept(String v, BulkReviewAdExtension c) { c.getReviewAdExtension().setIsExact(Boolean.parseBoolean(v)); } } )); m.add(new SimpleBulkMapping( StringTable.Text, new Function() { @Override public String apply(BulkReviewAdExtension c) { return c.getAdExtension().getText(); } }, new BiConsumer() { @Override public void accept(String v, BulkReviewAdExtension c) { c.getReviewAdExtension().setText(v); } } )); m.add(new SimpleBulkMapping( StringTable.Source, new Function() { @Override public String apply(BulkReviewAdExtension c) { return c.getAdExtension().getSource(); } }, new BiConsumer() { @Override public void accept(String v, BulkReviewAdExtension c) { c.getReviewAdExtension().setSource(v); } } )); m.add(new SimpleBulkMapping( StringTable.Url, new Function() { @Override public String apply(BulkReviewAdExtension c) { return c.getAdExtension().getUrl(); } }, new BiConsumer() { @Override public void accept(String v, BulkReviewAdExtension c) { c.getReviewAdExtension().setUrl(v); } } )); MAPPINGS = Collections.unmodifiableList(m); } @Override public void processMappingsFromRowValues(RowValues values) { ReviewAdExtension extension = new ReviewAdExtension(); extension.setType("ReviewAdExtension"); setAdExtension(extension); super.processMappingsFromRowValues(values); MappingHelpers.convertToEntity(values, MAPPINGS, this); } @Override public void processMappingsToRowValues(RowValues values, boolean excludeReadonlyData) { validatePropertyNotNull(this.getReviewAdExtension(), "ReviewAdExtension"); super.processMappingsToRowValues(values, excludeReadonlyData); MappingHelpers.convertToValues(this, values, MAPPINGS); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy