Class TAttachment
Unit
bsFhir_r4b
Declaration
type TAttachment = class(TElement)
Description
For referring to data content defined in other formats. If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions
Hierarchy
Overview
Methods
Properties
Description
Methods
|
constructor Create; override; |
|
Properties
|
property contentType : string read GetcontentType write SetcontentType; |
Identifies the type of the data in the attachment and allows a method to be chosen to interpret or render the data. Includes mime type parameters such as charset where appropriate.
|
|
property contentTypeElement : Tcode read GetcontentTypeElement write SetcontentTypeElement; |
|
|
property language : string read Getlanguage write Setlanguage; |
The human language of the content. The value can be any valid value according to BCP 47.
|
|
property languageElement : Tcode read GetlanguageElement write SetlanguageElement; |
|
|
property data : string read Getdata write Setdata; |
The actual data of the attachment - a sequence of bytes, base64 encoded.
|
|
property dataElement : Tbase64Binary read GetdataElement write SetdataElement; |
|
|
property url : string read Geturl write Seturl; |
A location where the data can be accessed.
|
|
property urlElement : Turl read GeturlElement write SeturlElement; |
|
|
property size : Int64 read Getsize write Setsize; |
The number of bytes of data that make up this attachment (before base64 encoding, if that is done).
|
|
property sizeElement : TunsignedInt read GetsizeElement write SetsizeElement; |
|
|
property hash : string read Gethash write Sethash; |
The calculated hash of the data using SHA-1. Represented using base64.
|
|
property hashElement : Tbase64Binary read GethashElement write SethashElement; |
|
|
property title : string read Gettitle write Settitle; |
A label or set of text to display in place of the data.
|
|
property titleElement : Tstring read GettitleElement write SettitleElement; |
|
|
property creation : string read Getcreation write Setcreation; |
The date that the attachment was first created.
|
|
property creationElement : TdateTime_ read GetcreationElement write SetcreationElement; |
|
Generated by PasDoc 0.15.0.
|