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

org.subsonic.restapi.ArtistInfoBase 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ArtistInfoBase complex type. * *

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

 * <complexType name="ArtistInfoBase">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="biography" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="musicBrainzId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="lastFmUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="smallImageUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="mediumImageUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="largeImageUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ArtistInfoBase", propOrder = { "biography", "musicBrainzId", "lastFmUrl", "smallImageUrl", "mediumImageUrl", "largeImageUrl" }) @XmlSeeAlso({ ArtistInfo2 .class, ArtistInfo.class }) public class ArtistInfoBase { protected String biography; protected String musicBrainzId; protected String lastFmUrl; protected String smallImageUrl; protected String mediumImageUrl; protected String largeImageUrl; /** * Gets the value of the biography property. * * @return * possible object is * {@link String } * */ public String getBiography() { return biography; } /** * Sets the value of the biography property. * * @param value * allowed object is * {@link String } * */ public void setBiography(String value) { this.biography = value; } /** * Gets the value of the musicBrainzId property. * * @return * possible object is * {@link String } * */ public String getMusicBrainzId() { return musicBrainzId; } /** * Sets the value of the musicBrainzId property. * * @param value * allowed object is * {@link String } * */ public void setMusicBrainzId(String value) { this.musicBrainzId = value; } /** * Gets the value of the lastFmUrl property. * * @return * possible object is * {@link String } * */ public String getLastFmUrl() { return lastFmUrl; } /** * Sets the value of the lastFmUrl property. * * @param value * allowed object is * {@link String } * */ public void setLastFmUrl(String value) { this.lastFmUrl = value; } /** * Gets the value of the smallImageUrl property. * * @return * possible object is * {@link String } * */ public String getSmallImageUrl() { return smallImageUrl; } /** * Sets the value of the smallImageUrl property. * * @param value * allowed object is * {@link String } * */ public void setSmallImageUrl(String value) { this.smallImageUrl = value; } /** * Gets the value of the mediumImageUrl property. * * @return * possible object is * {@link String } * */ public String getMediumImageUrl() { return mediumImageUrl; } /** * Sets the value of the mediumImageUrl property. * * @param value * allowed object is * {@link String } * */ public void setMediumImageUrl(String value) { this.mediumImageUrl = value; } /** * Gets the value of the largeImageUrl property. * * @return * possible object is * {@link String } * */ public String getLargeImageUrl() { return largeImageUrl; } /** * Sets the value of the largeImageUrl property. * * @param value * allowed object is * {@link String } * */ public void setLargeImageUrl(String value) { this.largeImageUrl = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy