DepartureEvent.java 1.2 KB
/**
  * Copyright 2018 bejson.com 
  */
package com.agent.xml.fhlsli.common;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;

/**
 * Auto-generated: 2018-06-09 15:18:23
 *
 * @author bejson.com (i@bejson.com)
 * @website http://www.bejson.com/java2pojo/
 */
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class DepartureEvent {

	@XmlElement(name = "ScheduledOccurrenceDateTime",required = false)
	private String ScheduledOccurrenceDateTime;
	@XmlElement(name = "OccurrenceDepartureLocation",required = false)
	private OccurrenceDepartureLocation OccurrenceDepartureLocation;

	public void setScheduledOccurrenceDateTime(String ScheduledOccurrenceDateTime) {
		this.ScheduledOccurrenceDateTime = ScheduledOccurrenceDateTime;
	}

	public String getScheduledOccurrenceDateTime() {
		return ScheduledOccurrenceDateTime;
	}

	public void setOccurrenceDepartureLocation(OccurrenceDepartureLocation OccurrenceDepartureLocation) {
		this.OccurrenceDepartureLocation = OccurrenceDepartureLocation;
	}

	public OccurrenceDepartureLocation getOccurrenceDepartureLocation() {
		return OccurrenceDepartureLocation;
	}

}