package com.microsoft.bingads.v10.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 PageVisitorsWhoVisitedAnotherPageRule complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PageVisitorsWhoVisitedAnotherPageRule"> * <complexContent> * <extension base="{http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10}RemarketingRule"> * <sequence> * <element name="AnotherRuleItemGroups" type="{http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10}ArrayOfRuleItemGroup" minOccurs="0"/> * <element name="RuleItemGroups" type="{http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10}ArrayOfRuleItemGroup" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PageVisitorsWhoVisitedAnotherPageRule", namespace = "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10", propOrder = { "anotherRuleItemGroups", "ruleItemGroups" }) public class PageVisitorsWhoVisitedAnotherPageRule extends RemarketingRule { @XmlElement(name = "AnotherRuleItemGroups", nillable = true) protected ArrayOfRuleItemGroup anotherRuleItemGroups; @XmlElement(name = "RuleItemGroups", nillable = true) protected ArrayOfRuleItemGroup ruleItemGroups; /** * Gets the value of the anotherRuleItemGroups property. * * @return * possible object is * {@link ArrayOfRuleItemGroup } * */ public ArrayOfRuleItemGroup getAnotherRuleItemGroups() { return anotherRuleItemGroups; } /** * Sets the value of the anotherRuleItemGroups property. * * @param value * allowed object is * {@link ArrayOfRuleItemGroup } * */ public void setAnotherRuleItemGroups(ArrayOfRuleItemGroup value) { this.anotherRuleItemGroups = value; } /** * Gets the value of the ruleItemGroups property. * * @return * possible object is * {@link ArrayOfRuleItemGroup } * */ public ArrayOfRuleItemGroup getRuleItemGroups() { return ruleItemGroups; } /** * Sets the value of the ruleItemGroups property. * * @param value * allowed object is * {@link ArrayOfRuleItemGroup } * */ public void setRuleItemGroups(ArrayOfRuleItemGroup value) { this.ruleItemGroups = value; } }