ChargeItem constructor

const ChargeItem({
  1. @Default(R5ResourceType.ChargeItem) @JsonKey(unknownEnumValue: R5ResourceType.ChargeItem) R5ResourceType resourceType,
  2. @JsonKey(includeFromJson: true, includeToJson: false) int? dbId,
  3. @JsonKey(name: 'id') FhirId? fhirId,
  4. FhirMeta? meta,
  5. FhirUri? implicitRules,
  6. @JsonKey(name: '_implicitRules') Element? implicitRulesElement,
  7. FhirCode? language,
  8. @JsonKey(name: '_language') Element? languageElement,
  9. Narrative? text,
  10. List<Resource>? contained,
  11. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  12. List<FhirExtension>? modifierExtension,
  13. List<Identifier>? identifier,
  14. List<FhirUri>? definitionUri,
  15. @JsonKey(name: '_definitionUri') List<Element>? definitionUriElement,
  16. List<FhirCanonical>? definitionCanonical,
  17. FhirCode? status,
  18. @JsonKey(name: '_status') Element? statusElement,
  19. List<Reference>? partOf,
  20. required CodeableConcept code,
  21. required Reference subject,
  22. Reference? encounter,
  23. FhirDateTime? occurrenceDateTime,
  24. @JsonKey(name: '_occurrenceDateTime') Element? occurrenceDateTimeElement,
  25. Period? occurrencePeriod,
  26. Timing? occurrenceTiming,
  27. List<ChargeItemPerformer>? performer,
  28. Reference? performingOrganization,
  29. Reference? requestingOrganization,
  30. Reference? costCenter,
  31. Quantity? quantity,
  32. List<CodeableConcept>? bodysite,
  33. MonetaryComponent? unitPriceComponent,
  34. MonetaryComponent? totalPriceComponent,
  35. CodeableConcept? overrideReason,
  36. Reference? enterer,
  37. FhirDateTime? enteredDate,
  38. @JsonKey(name: '_enteredDate') Element? enteredDateElement,
  39. List<CodeableConcept>? reason,
  40. List<CodeableReference>? service,
  41. List<CodeableReference>? product,
  42. List<Reference>? account,
  43. List<Annotation>? note,
  44. List<Reference>? supportingInformation,
})

ChargeItem The resource ChargeItem describes the provision of healthcare provider products for a certain patient, therefore referring not only to the product, but containing in addition details of the provision, like date, time, amounts and participating organizations and persons. Main Usage of the ChargeItem is to enable the billing process and internal cost allocation.

resourceType This is a ChargeItem resource

id The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.

meta The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.

implicitRules A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.

implicitRulesElement ("_implicitRules") Extensions for implicitRules

language The base language in which the resource is written.

languageElement ("_language") Extensions for language

text A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it "clinically safe" for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.

contained These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, nor can they have their own independent transaction scope. This is allowed to be a Parameters resource if and only if it is referenced by a resource that provides context/meaning.

extension_ ("extension") May be used to represent additional information that is not part of the basic definition of the resource. 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 resource and that modifies the understanding of the element that contains it 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 is allowed to 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 Identifiers assigned to this event performer or other systems.

definitionUri References the (external) source of pricing information, rules of application for the code this ChargeItem uses.

definitionUriElement ("_definitionUri") Extensions for definitionUri

definitionCanonical References the source of pricing information, rules of application for the code this ChargeItem uses.

status The current state of the ChargeItem.

statusElement ("_status") Extensions for status

partOf ChargeItems can be grouped to larger ChargeItems covering the whole set.

code A code that identifies the charge, like a billing code.

subject The individual or set of individuals the action is being or was performed on.

encounter This ChargeItem has the details of how the associated Encounter should be billed or otherwise be handled by finance systems.

occurrenceDateTime Date/time(s) or duration when the charged service was applied.

occurrenceDateTimeElement ("_occurrenceDateTime") Extensions for occurrenceDateTime

occurrencePeriod Date/time(s) or duration when the charged service was applied.

occurrenceTiming Date/time(s) or duration when the charged service was applied.

performer Indicates who or what performed or participated in the charged service.

performingOrganization The organization performing the service.

requestingOrganization The organization requesting the service.

costCenter The financial cost center permits the tracking of charge attribution.

quantity Quantity of which the charge item has been serviced.

bodysite The anatomical location where the related service has been applied.

unitPriceComponent The unit price of the chargable item.

totalPriceComponent The total price for the chargable item, accounting for the quantity.

overrideReason If the list price or the rule-based factor associated with the code is overridden, this attribute can capture a text to indicate the reason for this action.

enterer The device, practitioner, etc. who entered the charge item.

enteredDate Date the charge item was entered.

enteredDateElement ("_enteredDate") Extensions for enteredDate

reason Describes why the event occurred in coded or textual form.

service Indicated the rendered service that caused this charge.

product Identifies the device, food, drug or other product being charged either by type code or reference to an instance.

account Account into which this ChargeItems belongs.

note Comments made about the event by the performer, subject or other participants.

supportingInformation Further information supporting this charge.

Implementation

const factory ChargeItem({
  /// [resourceType] This is a ChargeItem resource
  @Default(R5ResourceType.ChargeItem)
  @JsonKey(unknownEnumValue: R5ResourceType.ChargeItem)
  R5ResourceType resourceType,
  @JsonKey(includeFromJson: true, includeToJson: false) int? dbId,

  /// [id] The logical id of the resource, as used in the URL for the
  ///  resource. Once assigned, this value never changes.
  @JsonKey(name: 'id') FhirId? fhirId,

  /// [meta] The metadata about the resource. This is content that is
  ///  maintained by the infrastructure. Changes to the content might not
  ///  always be associated with version changes to the resource.
  FhirMeta? meta,

  /// [implicitRules] A reference to a set of rules that were followed when
  ///  the resource was constructed, and which must be understood when
  ///  processing the content. Often, this is a reference to an
  ///  implementation guide that defines the special rules along with other
  ///  profiles etc.
  FhirUri? implicitRules,

  /// [implicitRulesElement] ("_implicitRules") Extensions for implicitRules
  @JsonKey(name: '_implicitRules') Element? implicitRulesElement,

  /// [language] The base language in which the resource is written.
  FhirCode? language,

  /// [languageElement] ("_language") Extensions for language
  @JsonKey(name: '_language') Element? languageElement,

  /// [text] A human-readable narrative that contains a summary of the
  ///  resource and can be used to represent the content of the resource to a
  ///  human. The narrative need not encode all the structured data, but is
  ///  required to contain sufficient detail to make it "clinically safe" for
  ///  a human to just read the narrative. Resource definitions may define
  ///  what content should be represented in the narrative to ensure clinical
  ///  safety.
  Narrative? text,

  /// [contained] These resources do not have an independent existence apart
  ///  from the resource that contains them - they cannot be identified
  ///  independently, nor can they have their own independent transaction
  ///  scope. This is allowed to be a Parameters resource if and only if it
  ///  is referenced by a resource that provides context/meaning.
  List<Resource>? contained,

  /// [extension_] ("extension") May be used to represent additional
  ///  information that is not part of the basic definition of the resource.
  ///  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 resource and that
  ///  modifies the understanding of the element that contains it 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 is allowed to 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] Identifiers assigned to this event performer or other
  ///  systems.
  List<Identifier>? identifier,

  /// [definitionUri] References the (external) source of pricing
  ///  information, rules of application for the code this ChargeItem uses.
  List<FhirUri>? definitionUri,

  /// [definitionUriElement] ("_definitionUri") Extensions for definitionUri
  @JsonKey(name: '_definitionUri') List<Element>? definitionUriElement,

  /// [definitionCanonical] References the source of pricing information,
  ///  rules of application for the code this ChargeItem uses.
  List<FhirCanonical>? definitionCanonical,

  /// [status] The current state of the ChargeItem.
  FhirCode? status,

  /// [statusElement] ("_status") Extensions for status
  @JsonKey(name: '_status') Element? statusElement,

  /// [partOf] ChargeItems can be grouped to larger ChargeItems covering the
  ///  whole set.
  List<Reference>? partOf,

  /// [code] A code that identifies the charge, like a billing code.
  required CodeableConcept code,

  /// [subject] The individual or set of individuals the action is being or
  ///  was performed on.
  required Reference subject,

  /// [encounter] This ChargeItem has the details of how the associated
  ///  Encounter should be billed or otherwise be handled by finance systems.
  Reference? encounter,

  /// [occurrenceDateTime] Date/time(s) or duration when the charged service
  ///  was applied.
  FhirDateTime? occurrenceDateTime,

  /// [occurrenceDateTimeElement] ("_occurrenceDateTime") Extensions for
  ///  occurrenceDateTime
  @JsonKey(name: '_occurrenceDateTime') Element? occurrenceDateTimeElement,

  /// [occurrencePeriod] Date/time(s) or duration when the charged service
  ///  was applied.
  Period? occurrencePeriod,

  /// [occurrenceTiming] Date/time(s) or duration when the charged service
  ///  was applied.
  Timing? occurrenceTiming,

  /// [performer] Indicates who or what performed or participated in the
  ///  charged service.
  List<ChargeItemPerformer>? performer,

  /// [performingOrganization] The organization performing the service.
  Reference? performingOrganization,

  /// [requestingOrganization] The organization requesting the service.
  Reference? requestingOrganization,

  /// [costCenter] The financial cost center permits the tracking of charge
  ///  attribution.
  Reference? costCenter,

  /// [quantity] Quantity of which the charge item has been serviced.
  Quantity? quantity,

  /// [bodysite] The anatomical location where the related service has been
  ///  applied.
  List<CodeableConcept>? bodysite,

  /// [unitPriceComponent] The unit price of the chargable item.
  MonetaryComponent? unitPriceComponent,

  /// [totalPriceComponent] The total price for the chargable item,
  ///  accounting for the quantity.
  MonetaryComponent? totalPriceComponent,

  /// [overrideReason] If the list price or the rule-based factor associated
  ///  with the code is overridden, this attribute can capture a text to
  ///  indicate the  reason for this action.
  CodeableConcept? overrideReason,

  /// [enterer] The device, practitioner, etc. who entered the charge item.
  Reference? enterer,

  /// [enteredDate] Date the charge item was entered.
  FhirDateTime? enteredDate,

  /// [enteredDateElement] ("_enteredDate") Extensions for enteredDate
  @JsonKey(name: '_enteredDate') Element? enteredDateElement,

  /// [reason] Describes why the event occurred in coded or textual form.
  List<CodeableConcept>? reason,

  /// [service] Indicated the rendered service that caused this charge.
  List<CodeableReference>? service,

  /// [product] Identifies the device, food, drug or other product being
  ///  charged either by type code or reference to an instance.
  List<CodeableReference>? product,

  /// [account] Account into which this ChargeItems belongs.
  List<Reference>? account,

  /// [note] Comments made about the event by the performer, subject or other
  ///  participants.
  List<Annotation>? note,

  /// [supportingInformation] Further information supporting this charge.
  List<Reference>? supportingInformation,
}) = _ChargeItem;