com.microsoft.bingads.v13.campaignmanagement.GetImportEntityIdsMappingRequest Maven / Gradle / Ivy
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.XmlRootElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"importType",
"sourceEntityIds",
"importEntityType",
"sourceParentId"
})
@XmlRootElement(name = "GetImportEntityIdsMappingRequest")
public class GetImportEntityIdsMappingRequest {
@XmlElement(name = "ImportType", nillable = true)
protected String importType;
@XmlElement(name = "SourceEntityIds", nillable = true)
protected ArrayOflong sourceEntityIds;
@XmlElement(name = "ImportEntityType")
@XmlSchemaType(name = "string")
protected ImportEntityType importEntityType;
@XmlElement(name = "SourceParentId", nillable = true)
protected Long sourceParentId;
/**
* Gets the value of the importType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getImportType() {
return importType;
}
/**
* Sets the value of the importType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setImportType(String value) {
this.importType = value;
}
/**
* Gets the value of the sourceEntityIds property.
*
* @return
* possible object is
* {@link ArrayOflong }
*
*/
public ArrayOflong getSourceEntityIds() {
return sourceEntityIds;
}
/**
* Sets the value of the sourceEntityIds property.
*
* @param value
* allowed object is
* {@link ArrayOflong }
*
*/
public void setSourceEntityIds(ArrayOflong value) {
this.sourceEntityIds = value;
}
/**
* Gets the value of the importEntityType property.
*
* @return
* possible object is
* {@link ImportEntityType }
*
*/
public ImportEntityType getImportEntityType() {
return importEntityType;
}
/**
* Sets the value of the importEntityType property.
*
* @param value
* allowed object is
* {@link ImportEntityType }
*
*/
public void setImportEntityType(ImportEntityType value) {
this.importEntityType = value;
}
/**
* Gets the value of the sourceParentId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getSourceParentId() {
return sourceParentId;
}
/**
* Sets the value of the sourceParentId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setSourceParentId(Long value) {
this.sourceParentId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy