UpsertMedicalResourceRequest
class UpsertMedicalResourceRequest : Parcelable
kotlin.Any | |
↳ | android.health.connect.UpsertMedicalResourceRequest |
An upsert request for HealthConnectManager.upsertMedicalResources
.
Medical data is represented using the Fast Healthcare Interoperability Resources (FHIR) standard.
Summary
Nested classes | |
---|---|
Builder class for |
Inherited constants | |
---|---|
Public methods | |
---|---|
Int | |
Boolean | |
String |
getData() Returns the FHIR resource data in JSON representation. |
String |
Returns the unique ID of the existing |
FhirVersion |
Returns the FHIR version being used for |
Int |
hashCode() |
String |
toString() |
Unit |
writeToParcel(dest: Parcel, flags: Int) Flatten this object in to a Parcel. |
Properties | |
---|---|
static Parcelable.Creator<UpsertMedicalResourceRequest!> |
Public methods
describeContents
fun describeContents(): Int
getData
fun getData(): String
Returns the FHIR resource data in JSON representation.
Return | |
---|---|
String |
This value cannot be null . |
getDataSourceId
fun getDataSourceId(): String
Returns the unique ID of the existing MedicalDataSource
, to represent where the data
is coming from.
Return | |
---|---|
String |
This value cannot be null . |
getFhirVersion
fun getFhirVersion(): FhirVersion
Returns the FHIR version being used for data
. For the request to succeed this must match the MedicalDataSource.getFhirVersion()
FHIR version of the MedicalDataSource
with the provided dataSourceId
.
Return | |
---|---|
FhirVersion |
This value cannot be null . |
hashCode
fun hashCode(): Int
toString
fun toString(): String
writeToParcel
fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
Flatten this object in to a Parcel.
Parameters | |
---|---|
dest |
Parcel: This value cannot be null . |
flags |
Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE . Value is either 0 or a combination of android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE , and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES |
Properties
CREATOR
static val CREATOR: Parcelable.Creator<UpsertMedicalResourceRequest!>