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

com.microsoft.bingads.v13.campaignmanagement.ImageAsset 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.campaignmanagement;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for ImageAsset complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImageAsset", propOrder = { "cropHeight", "cropWidth", "cropX", "cropY", "subType", "targetHeight", "targetWidth" }) public class ImageAsset extends Asset { public ImageAsset() { this.type = "ImageAsset"; } @XmlElement(name = "CropHeight", nillable = true) protected Integer cropHeight; @XmlElement(name = "CropWidth", nillable = true) protected Integer cropWidth; @XmlElement(name = "CropX", nillable = true) protected Integer cropX; @XmlElement(name = "CropY", nillable = true) protected Integer cropY; @XmlElement(name = "SubType", nillable = true) protected String subType; @XmlElement(name = "TargetHeight", nillable = true) protected Integer targetHeight; @XmlElement(name = "TargetWidth", nillable = true) protected Integer targetWidth; /** * Gets the value of the cropHeight property. * * @return * possible object is * {@link Integer } * */ public Integer getCropHeight() { return cropHeight; } /** * Sets the value of the cropHeight property. * * @param value * allowed object is * {@link Integer } * */ public void setCropHeight(Integer value) { this.cropHeight = value; } /** * Gets the value of the cropWidth property. * * @return * possible object is * {@link Integer } * */ public Integer getCropWidth() { return cropWidth; } /** * Sets the value of the cropWidth property. * * @param value * allowed object is * {@link Integer } * */ public void setCropWidth(Integer value) { this.cropWidth = value; } /** * Gets the value of the cropX property. * * @return * possible object is * {@link Integer } * */ public Integer getCropX() { return cropX; } /** * Sets the value of the cropX property. * * @param value * allowed object is * {@link Integer } * */ public void setCropX(Integer value) { this.cropX = value; } /** * Gets the value of the cropY property. * * @return * possible object is * {@link Integer } * */ public Integer getCropY() { return cropY; } /** * Sets the value of the cropY property. * * @param value * allowed object is * {@link Integer } * */ public void setCropY(Integer value) { this.cropY = value; } /** * Gets the value of the subType property. * * @return * possible object is * {@link String } * */ public String getSubType() { return subType; } /** * Sets the value of the subType property. * * @param value * allowed object is * {@link String } * */ public void setSubType(String value) { this.subType = value; } /** * Gets the value of the targetHeight property. * * @return * possible object is * {@link Integer } * */ public Integer getTargetHeight() { return targetHeight; } /** * Sets the value of the targetHeight property. * * @param value * allowed object is * {@link Integer } * */ public void setTargetHeight(Integer value) { this.targetHeight = value; } /** * Gets the value of the targetWidth property. * * @return * possible object is * {@link Integer } * */ public Integer getTargetWidth() { return targetWidth; } /** * Sets the value of the targetWidth property. * * @param value * allowed object is * {@link Integer } * */ public void setTargetWidth(Integer value) { this.targetWidth = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy