ContractOffer constructor

const ContractOffer({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. List<Identifier>? identifier,
  5. List<ContractParty>? party,
  6. Reference? topic,
  7. CodeableConcept? type,
  8. CodeableConcept? decision,
  9. List<CodeableConcept>? decisionMode,
  10. List<ContractAnswer>? answer,
  11. String? text,
  12. @JsonKey(name: '_text') Element? textElement,
  13. List<String>? linkId,
  14. @JsonKey(name: '_linkId') List<Element>? linkIdElement,
  15. List<FhirUnsignedInt>? securityLabelNumber,
  16. @JsonKey(name: '_securityLabelNumber') List<Element>? securityLabelNumberElement,
})

ContractOffer Legally enforceable, formally recorded unilateral or bilateral directive i.e., a policy or agreement.

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

extension_ ("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 managable, 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 managable, 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).

identifier Unique identifier for this particular Contract Provision.

party Offer Recipient.

topic The owner of an asset has the residual control rights over the asset: the right to decide all usages of the asset in any way not inconsistent with a prior contract, custom, or law (Hart, 1995, p. 30).

type Type of Contract Provision such as specific requirements, purposes for actions, obligations, prohibitions, e.g. life time maximum benefit.

decision Type of choice made by accepting party with respect to an offer made by an offeror/ grantee.

decisionMode How the decision about a Contract was conveyed.

answer Response to offer text.

text Human readable form of this Contract Offer.

textElement ("_text") Extensions for text

linkId The id of the clause or question text of the offer in the referenced questionnaire/response.

linkIdElement ("_linkId") Extensions for linkId

securityLabelNumber Security labels that protects the offer.

securityLabelNumberElement ("_securityLabelNumber") Extensions for securityLabelNumber

Implementation

const factory ContractOffer({
  /// [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_] ("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 managable, 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 managable, 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,

  /// [identifier] Unique identifier for this particular Contract Provision.
  List<Identifier>? identifier,

  /// [party] Offer Recipient.
  List<ContractParty>? party,

  /// [topic] The owner of an asset has the residual control rights over the
  ///  asset: the right to decide all usages of the asset in any way not
  ///  inconsistent with a prior contract, custom, or law (Hart, 1995, p. 30).
  Reference? topic,

  /// [type] Type of Contract Provision such as specific requirements,
  ///  purposes for actions, obligations, prohibitions, e.g. life time
  ///  maximum benefit.
  CodeableConcept? type,

  /// [decision] Type of choice made by accepting party with respect to an
  ///  offer made by an offeror/ grantee.
  CodeableConcept? decision,

  /// [decisionMode] How the decision about a Contract was conveyed.
  List<CodeableConcept>? decisionMode,

  /// [answer] Response to offer text.
  List<ContractAnswer>? answer,

  /// [text] Human readable form of this Contract Offer.
  String? text,

  /// [textElement] ("_text") Extensions for text
  @JsonKey(name: '_text') Element? textElement,

  /// [linkId] The id of the clause or question text of the offer in the
  ///  referenced questionnaire/response.
  List<String>? linkId,

  /// [linkIdElement] ("_linkId") Extensions for linkId
  @JsonKey(name: '_linkId') List<Element>? linkIdElement,

  /// [securityLabelNumber] Security labels that protects the offer.
  List<FhirUnsignedInt>? securityLabelNumber,

  /// [securityLabelNumberElement] ("_securityLabelNumber") Extensions for
  ///  securityLabelNumber
  @JsonKey(name: '_securityLabelNumber')
  List<Element>? securityLabelNumberElement,
}) = _ContractOffer;