ContractAsset constructor

const ContractAsset({
  1. @JsonKey(name: 'id') FhirId? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. CodeableConcept? scope,
  5. List<CodeableConcept>? type,
  6. List<Reference>? typeReference,
  7. List<CodeableConcept>? subtype,
  8. Coding? relationship,
  9. List<ContractContext>? context,
  10. String? condition,
  11. @JsonKey(name: '_condition') Element? conditionElement,
  12. List<CodeableConcept>? periodType,
  13. List<Period>? period,
  14. List<Period>? usePeriod,
  15. String? text,
  16. @JsonKey(name: '_text') Element? textElement,
  17. List<String>? linkId,
  18. @JsonKey(name: '_linkId') List<Element?>? linkIdElement,
  19. List<ContractAnswer>? answer,
  20. List<FhirUnsignedInt>? securityLabelNumber,
  21. @JsonKey(name: '_securityLabelNumber') List<Element>? securityLabelNumberElement,
  22. List<ContractValuedItem>? valuedItem,
})

ContractAsset 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).

scope Differentiates the kind of the asset .

type Target entity type about which the term may be concerned.

typeReference Associated entities.

subtype May be a subtype or part of an offered asset.

relationship Specifies the applicability of the term to an asset resource instance, and instances it refers to orinstances that refer to it, and/or are owned by the offeree.

context Circumstance of the asset.

condition Description of the quality and completeness of the asset that imay be a factor in its valuation.

conditionElement Extensions for condition

periodType Type of Asset availability for use or ownership.

period Asset relevant contractual time period.

usePeriod Time period of asset use.

text Clause or question text (Prose Object) concerning the asset in a linked form, such as a QuestionnaireResponse used in the formation of the contract.

textElement Extensions for text

linkId Id Identifier?? of the clause or question text about the asset in the referenced form or QuestionnaireResponse.

linkIdElement Extensions for linkId

answer Response to assets.

securityLabelNumber Security labels that protects the asset.

securityLabelNumberElement Extensions for securityLabelNumber

valuedItem Contract Valued Item List.

Implementation

const factory ContractAsset({
  /// [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,

  /// [scope] Differentiates the kind of the asset .
  CodeableConcept? scope,

  /// [type] Target entity type about which the term may be concerned.
  List<CodeableConcept>? type,

  /// [typeReference] Associated entities.
  List<Reference>? typeReference,

  /// [subtype] May be a subtype or part of an offered asset.
  List<CodeableConcept>? subtype,

  /// [relationship] Specifies the applicability of the term to an asset
  /// resource instance, and instances it refers to orinstances that refer to
  ///  it, and/or are owned by the offeree.
  Coding? relationship,

  /// [context] Circumstance of the asset.
  List<ContractContext>? context,

  /// [condition] Description of the quality and completeness of the asset that
  ///  imay be a factor in its valuation.
  String? condition,

  /// [conditionElement] Extensions for condition
  @JsonKey(name: '_condition') Element? conditionElement,

  /// [periodType] Type of Asset availability for use or ownership.
  List<CodeableConcept>? periodType,

  /// [period] Asset relevant contractual time period.
  List<Period>? period,

  /// [usePeriod] Time period of asset use.
  List<Period>? usePeriod,

  /// [text] Clause or question text (Prose Object) concerning the asset in a
  /// linked form, such as a QuestionnaireResponse used in the formation of the
  ///  contract.
  String? text,

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

  /// [linkId] Id [Identifier]?? of the clause or question text about the asset
  ///  in the referenced form or QuestionnaireResponse.
  List<String>? linkId,

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

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

  /// [securityLabelNumber] Security labels that protects the asset.
  List<FhirUnsignedInt>? securityLabelNumber,
  @JsonKey(name: '_securityLabelNumber')

  /// [securityLabelNumberElement] Extensions for securityLabelNumber
  List<Element>? securityLabelNumberElement,

  /// [valuedItem] Contract Valued Item List.
  List<ContractValuedItem>? valuedItem,
}) = _ContractAsset;