com.microsoft.bingads.v13.bulk.entities.BulkCalloutAdExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft.bingads Show documentation
Show all versions of microsoft.bingads Show documentation
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.
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.CalloutAdExtension;
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.StringTable;
/**
* Represents a callout 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 Callout Ad Extension record in a
* bulk file.
*
* For more information, see callout Ad Extension at
* https://go.microsoft.com/fwlink/?linkid=846127
*
* @see BulkServiceManager
* @see BulkOperation
* @see BulkFileReader
* @see BulkFileWriter
*/
public class BulkCalloutAdExtension extends BulkAdExtension {
/**
* Gets the callout ad extension.
*/
public CalloutAdExtension getCalloutAdExtension() {
return getAdExtension();
}
/**
* Sets the callout ad extension.
*/
public void setCalloutAdExtension(CalloutAdExtension calloutAdExtension) {
setAdExtension(calloutAdExtension);
}
private static final List> MAPPINGS;
static {
List> m = new ArrayList>();
m.add(new SimpleBulkMapping(
StringTable.CalloutText,
new Function() {
@Override
public String apply(BulkCalloutAdExtension c) {
return c.getCalloutAdExtension().getText();
}
},
new BiConsumer() {
@Override
public void accept(String v, BulkCalloutAdExtension c) {
c.getCalloutAdExtension().setText(v);
}
}
));
MAPPINGS = Collections.unmodifiableList(m);
}
@Override
public void processMappingsFromRowValues(RowValues values) {
CalloutAdExtension extension = new CalloutAdExtension();
extension.setType("CalloutAdExtension");
setAdExtension(extension);
super.processMappingsFromRowValues(values);
MappingHelpers.convertToEntity(values, MAPPINGS, this);
}
@Override
public void processMappingsToRowValues(RowValues values, boolean excludeReadonlyData) {
validatePropertyNotNull(this.getCalloutAdExtension(), "CalloutAdExtension");
super.processMappingsToRowValues(values, excludeReadonlyData);
MappingHelpers.convertToValues(this, values, MAPPINGS);
}
}