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

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


/**
 * 

Java class for DayTime complex type. * *

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

{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DayTime", propOrder = { "day", "endHour", "endMinute", "startHour", "startMinute" }) public class DayTime { @XmlElement(name = "Day", required = true) @XmlSchemaType(name = "string") protected Day day; @XmlElement(name = "EndHour") protected int endHour; @XmlElement(name = "EndMinute", required = true) @XmlSchemaType(name = "string") protected Minute endMinute; @XmlElement(name = "StartHour") protected int startHour; @XmlElement(name = "StartMinute", required = true) @XmlSchemaType(name = "string") protected Minute startMinute; /** * 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 endHour property. * */ public int getEndHour() { return endHour; } /** * Sets the value of the endHour property. * */ public void setEndHour(int value) { this.endHour = value; } /** * Gets the value of the endMinute property. * * @return * possible object is * {@link Minute } * */ public Minute getEndMinute() { return endMinute; } /** * Sets the value of the endMinute property. * * @param value * allowed object is * {@link Minute } * */ public void setEndMinute(Minute value) { this.endMinute = value; } /** * Gets the value of the startHour property. * */ public int getStartHour() { return startHour; } /** * Sets the value of the startHour property. * */ public void setStartHour(int value) { this.startHour = value; } /** * Gets the value of the startMinute property. * * @return * possible object is * {@link Minute } * */ public Minute getStartMinute() { return startMinute; } /** * Sets the value of the startMinute property. * * @param value * allowed object is * {@link Minute } * */ public void setStartMinute(Minute value) { this.startMinute = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy