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

com.microsoft.bingads.v13.campaignmanagement.DayTimeCriterion 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for DayTimeCriterion complex type. * *

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

 * <complexType name="DayTimeCriterion">
 *   <complexContent>
 *     <extension base="{https://bingads.microsoft.com/CampaignManagement/v13}Criterion">
 *       <sequence>
 *         <element name="Day" type="{https://bingads.microsoft.com/CampaignManagement/v13}Day" minOccurs="0"/>
 *         <element name="FromHour" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="FromMinute" type="{https://bingads.microsoft.com/CampaignManagement/v13}Minute" minOccurs="0"/>
 *         <element name="ToHour" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="ToMinute" type="{https://bingads.microsoft.com/CampaignManagement/v13}Minute" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DayTimeCriterion", propOrder = { "day", "fromHour", "fromMinute", "toHour", "toMinute" }) public class DayTimeCriterion extends Criterion { @XmlElement(name = "Day", nillable = true) @XmlSchemaType(name = "string") protected Day day; @XmlElement(name = "FromHour", nillable = true) protected Integer fromHour; @XmlElement(name = "FromMinute", nillable = true) @XmlSchemaType(name = "string") protected Minute fromMinute; @XmlElement(name = "ToHour", nillable = true) protected Integer toHour; @XmlElement(name = "ToMinute", nillable = true) @XmlSchemaType(name = "string") protected Minute toMinute; /** * Gets the value of the day property. * * @return * possible object is * {@link Day } * */ public Day getDay() { return day; } /** * Sets the value of the day property. * * @param value * allowed object is * {@link Day } * */ public void setDay(Day value) { this.day = value; } /** * Gets the value of the fromHour property. * * @return * possible object is * {@link Integer } * */ public Integer getFromHour() { return fromHour; } /** * Sets the value of the fromHour property. * * @param value * allowed object is * {@link Integer } * */ public void setFromHour(Integer value) { this.fromHour = value; } /** * Gets the value of the fromMinute property. * * @return * possible object is * {@link Minute } * */ public Minute getFromMinute() { return fromMinute; } /** * Sets the value of the fromMinute property. * * @param value * allowed object is * {@link Minute } * */ public void setFromMinute(Minute value) { this.fromMinute = value; } /** * Gets the value of the toHour property. * * @return * possible object is * {@link Integer } * */ public Integer getToHour() { return toHour; } /** * Sets the value of the toHour property. * * @param value * allowed object is * {@link Integer } * */ public void setToHour(Integer value) { this.toHour = value; } /** * Gets the value of the toMinute property. * * @return * possible object is * {@link Minute } * */ public Minute getToMinute() { return toMinute; } /** * Sets the value of the toMinute property. * * @param value * allowed object is * {@link Minute } * */ public void setToMinute(Minute value) { this.toMinute = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy