no.nav.tjeneste.virksomhet.behandleinngaaendejournal.v1.meldinger.OppdaterJournalpostRequest Maven / Gradle / Ivy
package no.nav.tjeneste.virksomhet.behandleinngaaendejournal.v1.meldinger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import no.nav.tjeneste.virksomhet.behandleinngaaendejournal.v1.informasjon.InngaaendeJournalpost;
/**
* Java class for OppdaterJournalpostRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OppdaterJournalpostRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="inngaaendeJournalpost" type="{http://nav.no/tjeneste/virksomhet/behandleInngaaendeJournal/v1/informasjon}InngaaendeJournalpost"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OppdaterJournalpostRequest", propOrder = {
"inngaaendeJournalpost"
})
public class OppdaterJournalpostRequest {
@XmlElement(required = true)
protected InngaaendeJournalpost inngaaendeJournalpost;
/**
* Gets the value of the inngaaendeJournalpost property.
*
* @return
* possible object is
* {@link InngaaendeJournalpost }
*
*/
public InngaaendeJournalpost getInngaaendeJournalpost() {
return inngaaendeJournalpost;
}
/**
* Sets the value of the inngaaendeJournalpost property.
*
* @param value
* allowed object is
* {@link InngaaendeJournalpost }
*
*/
public void setInngaaendeJournalpost(InngaaendeJournalpost value) {
this.inngaaendeJournalpost = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy