VerificationResultAttestation constructor

const VerificationResultAttestation({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. Reference? who,
  5. Reference? onBehalfOf,
  6. CodeableConcept? communicationMethod,
  7. FhirDate? date,
  8. @JsonKey(name: '_date') Element? dateElement,
  9. String? sourceIdentityCertificate,
  10. @JsonKey(name: '_sourceIdentityCertificate') Element? sourceIdentityCertificateElement,
  11. String? proxyIdentityCertificate,
  12. @JsonKey(name: '_proxyIdentityCertificate') Element? proxyIdentityCertificateElement,
  13. Signature? proxySignature,
  14. Signature? sourceSignature,
})

VerificationResultAttestation Describes validation requirements, source(s), status and dates for one or more elements.

id Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.

extension_ May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

modifierExtension May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).

who The individual or organization attesting to information.

onBehalfOf When the who is asserting on behalf of another (organization or individual).

communicationMethod The method by which attested information was submitted/retrieved (manual; API; Push).

date The date the information was attested to.

dateElement Extensions for date

sourceIdentityCertificate A digital identity certificate associated with the attestation source.

sourceIdentityCertificateElement Extensions for sourceIdentityCertificate

proxyIdentityCertificate A digital identity certificate associated with the proxy entity submitting attested information on behalf of the attestation source.

proxyIdentityCertificateElement Extensions for proxyIdentityCertificate

proxySignature Signed assertion by the proxy entity indicating that they have the right to submit attested information on behalf of the attestation source.

sourceSignature Signed assertion by the attestation source that they have attested to the information.

Implementation

const factory VerificationResultAttestation({
  /// [id] Unique id for the element within a resource (for internal
  ///  references). This may be any string value that does not contain spaces.
  @JsonKey(name: 'id') String? fhirId,

  /// [extension_] May be used to represent additional information that is not
  /// part of the basic definition of the element. To make the use of extensions
  /// safe and manageable, there is a strict set of governance  applied to the
  /// definition and use of extensions. Though any implementer can define an
  /// extension, there is a set of requirements that SHALL be met as part of the
  ///  definition of the extension.
  @JsonKey(name: 'extension') List<FhirExtension>? extension_,

  /// [modifierExtension] May be used to represent additional information that
  /// is not part of the basic definition of the element and that modifies the
  /// understanding of the element in which it is contained and/or the
  /// understanding of the containing element's descendants. Usually modifier
  /// elements provide negation or qualification. To make the use of extensions
  /// safe and manageable, there is a strict set of governance applied to the
  /// definition and use of extensions. Though any implementer can define an
  /// extension, there is a set of requirements that SHALL be met as part of the
  /// definition of the extension. Applications processing a resource are
  ///  required to check for modifier extensions.
  /// Modifier extensions SHALL NOT change the meaning of any elements on
  /// Resource or DomainResource (including cannot change the meaning of
  ///  modifierExtension itself).
  List<FhirExtension>? modifierExtension,

  /// [who] The individual or organization attesting to information.
  Reference? who,

  /// [onBehalfOf] When the who is asserting on behalf of another (organization
  ///  or individual).
  Reference? onBehalfOf,

  /// [communicationMethod] The method by which attested information was
  ///  submitted/retrieved (manual; API; Push).
  CodeableConcept? communicationMethod,

  /// [date] The date the information was attested to.
  FhirDate? date,

  /// [dateElement] Extensions for date
  @JsonKey(name: '_date') Element? dateElement,

  /// [sourceIdentityCertificate] A digital identity certificate associated
  ///  with the attestation source.
  String? sourceIdentityCertificate,
  @JsonKey(name: '_sourceIdentityCertificate')

  /// [sourceIdentityCertificateElement] Extensions for sourceIdentityCertificate
  Element? sourceIdentityCertificateElement,

  /// [proxyIdentityCertificate] A digital identity certificate associated with
  /// the proxy entity submitting attested information on behalf of the
  ///  attestation source.
  String? proxyIdentityCertificate,
  @JsonKey(name: '_proxyIdentityCertificate')

  /// [proxyIdentityCertificateElement] Extensions for proxyIdentityCertificate
  Element? proxyIdentityCertificateElement,

  /// [proxySignature] Signed assertion by the proxy entity indicating that
  /// they have the right to submit attested information on behalf of the
  ///  attestation source.
  Signature? proxySignature,

  /// [sourceSignature] Signed assertion by the attestation source that they
  ///  have attested to the information.
  Signature? sourceSignature,
}) = _VerificationResultAttestation;