package com.microsoft.bingads.v11.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; /** * <p>Java class for EntityIdToParentIdAssociation complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="EntityIdToParentIdAssociation"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="EntityId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="ParentId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EntityIdToParentIdAssociation", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V11", propOrder = { "entityId", "parentId" }) public class EntityIdToParentIdAssociation { @XmlElement(name = "EntityId") protected Long entityId; @XmlElement(name = "ParentId") protected Long parentId; /** * Gets the value of the entityId property. * * @return * possible object is * {@link Long } * */ public Long getEntityId() { return entityId; } /** * Sets the value of the entityId property. * * @param value * allowed object is * {@link Long } * */ public void setEntityId(Long value) { this.entityId = value; } /** * Gets the value of the parentId property. * * @return * possible object is * {@link Long } * */ public Long getParentId() { return parentId; } /** * Sets the value of the parentId property. * * @param value * allowed object is * {@link Long } * */ public void setParentId(Long value) { this.parentId = value; } }