ContractTerm constructor

const ContractTerm({
  1. @JsonKey(name: 'id') FhirId? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. Identifier? identifier,
  5. FhirDateTime? issued,
  6. @JsonKey(name: '_issued') Element? issuedElement,
  7. Period? applies,
  8. CodeableConcept? topicCodeableConcept,
  9. Reference? topicReference,
  10. CodeableConcept? type,
  11. CodeableConcept? subType,
  12. String? text,
  13. @JsonKey(name: '_text') Element? textElement,
  14. List<ContractSecurityLabel>? securityLabel,
  15. required ContractOffer offer,
  16. List<ContractAsset>? asset,
  17. List<ContractAction>? action,
  18. List<ContractTerm>? group,
})

ContractTerm 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_ 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).

identifier Unique identifier for this particular Contract Provision.

issued When this Contract Provision was issued.

issuedElement Extensions for issued

applies Relevant time or time-period when this Contract Provision is applicable.

topicCodeableConcept The entity that the term applies to.

topicReference The entity that the term applies to.

type A legal clause or condition contained within a contract that requires one or both parties to perform a particular requirement by some specified time or prevents one or both parties from performing a particular requirement by some specified time.

subType A specialized legal clause or condition based on overarching contract type.

text Statement of a provision in a policy or a contract.

textElement Extensions for text

securityLabel Security labels that protect the handling of information about the term and its elements, which may be specifically identified..

offer The matter of concern in the context of this provision of the agrement.

asset Contract Term Asset List.

action An actor taking a role in an activity for which it can be assigned some degree of responsibility for the activity taking place.

group Nested group of Contract Provisions.

Implementation

const factory ContractTerm({
  /// [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') FhirId? 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,

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

  /// [issued] When this Contract Provision was issued.
  FhirDateTime? issued,

  /// [issuedElement] Extensions for issued
  @JsonKey(name: '_issued') Element? issuedElement,

  /// [applies] Relevant time or time-period when this Contract Provision is
  ///  applicable.
  Period? applies,

  /// [topicCodeableConcept] The entity that the term applies to.
  CodeableConcept? topicCodeableConcept,

  /// [topicReference] The entity that the term applies to.
  Reference? topicReference,

  /// [type] A legal clause or condition contained within a contract that
  /// requires one or both parties to perform a particular requirement by some
  /// specified time or prevents one or both parties from performing a
  ///  particular requirement by some specified time.
  CodeableConcept? type,

  /// [subType] A specialized legal clause or condition based on overarching
  ///  contract type.
  CodeableConcept? subType,

  /// [text] Statement of a provision in a policy or a contract.
  String? text,

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

  /// [securityLabel] Security labels that protect the handling of information
  ///  about the term and its elements, which may be specifically identified..
  List<ContractSecurityLabel>? securityLabel,

  /// [offer] The matter of concern in the context of this provision of the
  ///  agrement.
  required ContractOffer offer,

  /// [asset] Contract Term Asset List.
  List<ContractAsset>? asset,

  /// [action] An actor taking a role in an activity for which it can be
  ///  assigned some degree of responsibility for the activity taking place.
  List<ContractAction>? action,

  /// [group] Nested group of Contract Provisions.
  List<ContractTerm>? group,
}) = _ContractTerm;