com.citrix.sharefile.api.models.SFMedicalStudyBundle Maven / Gradle / Ivy
// ------------------------------------------------------------------------------
//
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
// Copyright (c) 2017 Citrix ShareFile. All rights reserved.
//
// ------------------------------------------------------------------------------
package com.citrix.sharefile.api.models;
import java.io.InputStream;
import java.util.ArrayList;
import java.net.URI;
import java.util.Date;
import java.util.Map;
import java.util.HashMap;
import com.google.gson.annotations.SerializedName;
import com.citrix.sharefile.api.*;
import com.citrix.sharefile.api.enumerations.*;
import com.citrix.sharefile.api.models.*;
public class SFMedicalStudyBundle extends SFBundle {
@SerializedName("PatientFirstName")
private String PatientFirstName;
@SerializedName("PatientLastName")
private String PatientLastName;
@SerializedName("Hospital")
private String Hospital;
@SerializedName("StudyDate")
private String StudyDate;
@SerializedName("StudyTime")
private String StudyTime;
@SerializedName("Age")
private String Age;
@SerializedName("Gender")
private String Gender;
@SerializedName("Description")
private String Description;
@SerializedName("Institution")
private String Institution;
@SerializedName("ReferringPhysician")
private String ReferringPhysician;
public String getPatientFirstName() {
return this.PatientFirstName;
}
public void setPatientFirstName(String patientfirstname) {
this.PatientFirstName = patientfirstname;
}
public String getPatientLastName() {
return this.PatientLastName;
}
public void setPatientLastName(String patientlastname) {
this.PatientLastName = patientlastname;
}
public String getHospital() {
return this.Hospital;
}
public void setHospital(String hospital) {
this.Hospital = hospital;
}
/**
* Formatted study date from DICOM
*/
public String getStudyDate() {
return this.StudyDate;
}
/**
* Formatted study date from DICOM
*/
public void setStudyDate(String studydate) {
this.StudyDate = studydate;
}
/**
* Formatted study time from DICOM
*/
public String getStudyTime() {
return this.StudyTime;
}
/**
* Formatted study time from DICOM
*/
public void setStudyTime(String studytime) {
this.StudyTime = studytime;
}
/**
* Formatted age from DICOM
*/
public String getAge() {
return this.Age;
}
/**
* Formatted age from DICOM
*/
public void setAge(String age) {
this.Age = age;
}
public String getGender() {
return this.Gender;
}
public void setGender(String gender) {
this.Gender = gender;
}
public String getDescription() {
return this.Description;
}
public void setDescription(String description) {
this.Description = description;
}
public String getInstitution() {
return this.Institution;
}
public void setInstitution(String institution) {
this.Institution = institution;
}
public String getReferringPhysician() {
return this.ReferringPhysician;
}
public void setReferringPhysician(String referringphysician) {
this.ReferringPhysician = referringphysician;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy