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

org.subsonic.restapi.PodcastEpisode Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.08.24 at 07:14:02 PM CEST 
//


package org.subsonic.restapi;

import java.time.LocalDateTime;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import net.beardbot.subsonic.client.base.LocalDateTimeAdapter;


/**
 * 

Java class for PodcastEpisode complex type. * *

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

 * <complexType name="PodcastEpisode">
 *   <complexContent>
 *     <extension base="{http://subsonic.org/restapi}Child">
 *       <attribute name="streamId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="channelId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="status" use="required" type="{http://subsonic.org/restapi}PodcastStatus" />
 *       <attribute name="publishDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PodcastEpisode") public class PodcastEpisode extends Child { @XmlAttribute(name = "streamId") protected String streamId; @XmlAttribute(name = "channelId", required = true) protected String channelId; @XmlAttribute(name = "description") protected String description; @XmlAttribute(name = "status", required = true) protected PodcastStatus status; @XmlAttribute(name = "publishDate") @XmlJavaTypeAdapter(LocalDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected LocalDateTime publishDate; /** * Gets the value of the streamId property. * * @return * possible object is * {@link String } * */ public String getStreamId() { return streamId; } /** * Sets the value of the streamId property. * * @param value * allowed object is * {@link String } * */ public void setStreamId(String value) { this.streamId = value; } /** * Gets the value of the channelId property. * * @return * possible object is * {@link String } * */ public String getChannelId() { return channelId; } /** * Sets the value of the channelId property. * * @param value * allowed object is * {@link String } * */ public void setChannelId(String value) { this.channelId = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link PodcastStatus } * */ public PodcastStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link PodcastStatus } * */ public void setStatus(PodcastStatus value) { this.status = value; } /** * Gets the value of the publishDate property. * * @return * possible object is * {@link String } * */ public LocalDateTime getPublishDate() { return publishDate; } /** * Sets the value of the publishDate property. * * @param value * allowed object is * {@link String } * */ public void setPublishDate(LocalDateTime value) { this.publishDate = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy