
com.microsoft.bingads.v13.campaignmanagement.FileImportJob Maven / Gradle / Ivy
package com.microsoft.bingads.v13.campaignmanagement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for FileImportJob complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FileImportJob">
* <complexContent>
* <extension base="{https://bingads.microsoft.com/CampaignManagement/v13}ImportJob">
* <sequence>
* <element name="FileSource" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="FileUrl" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FileImportJob", propOrder = {
"fileSource",
"fileUrl"
})
public class FileImportJob
extends ImportJob
{
@XmlElement(name = "FileSource", required = true, nillable = true)
protected String fileSource;
@XmlElement(name = "FileUrl", required = true, nillable = true)
protected String fileUrl;
/**
* Gets the value of the fileSource property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFileSource() {
return fileSource;
}
/**
* Sets the value of the fileSource property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFileSource(String value) {
this.fileSource = value;
}
/**
* Gets the value of the fileUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFileUrl() {
return fileUrl;
}
/**
* Sets the value of the fileUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFileUrl(String value) {
this.fileUrl = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy