ClaimSubDetail constructor

const ClaimSubDetail({
  1. @JsonKey(name: 'id') FhirId? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. FhirPositiveInt? sequence,
  5. @JsonKey(name: '_sequence') Element? sequenceElement,
  6. CodeableConcept? revenue,
  7. CodeableConcept? category,
  8. required CodeableConcept productOrService,
  9. List<CodeableConcept>? modifier,
  10. List<CodeableConcept>? programCode,
  11. Quantity? quantity,
  12. Money? unitPrice,
  13. FhirDecimal? factor,
  14. @JsonKey(name: '_factor') Element? factorElement,
  15. Money? net,
  16. List<Reference>? udi,
})

ClaimSubDetail A provider issued list of professional services and products which have been provided, or are to be provided, to a patient which is sent to an insurer for reimbursement.

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

sequence A number to uniquely identify item entries.

sequenceElement Extensions for sequence

revenue The type of revenue or cost center providing the product and/or service.

category Code to identify the general type of benefits under which products and services are provided.

productOrService When the value is a group code then this item collects a set of related claim details, otherwise this contains the product, service, drug or other billing code for the item.

modifier Item typification or modifiers codes to convey additional context for the product or service.

programCode Identifies the program under which this may be recovered.

quantity The number of repetitions of a service or product.

unitPrice If the item is not a group then this is the fee for the product or service, otherwise this is the total of the fees for the details of the group.

factor A real number that represents a multiplier used in determining the overall value of services delivered and/or goods received. The concept of a Factor allows for a discount or surcharge multiplier to be applied to a monetary amount.

factorElement Extensions for factor

net The quantity times the unit price for an additional service or product or charge.

udi Unique Device Identifiers associated with this line item.

Implementation

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

  /// [sequence] A number to uniquely identify item entries.
  FhirPositiveInt? sequence,

  /// [sequenceElement] Extensions for sequence
  @JsonKey(name: '_sequence') Element? sequenceElement,

  /// [revenue] The type of revenue or cost center providing the product and/or
  ///  service.
  CodeableConcept? revenue,

  /// [category] Code to identify the general type of benefits under which
  ///  products and services are provided.
  CodeableConcept? category,

  /// [productOrService] When the value is a group code then this item collects
  /// a set of related claim details, otherwise this contains the product,
  ///  service, drug or other billing code for the item.
  required CodeableConcept productOrService,

  /// [modifier] Item typification or modifiers codes to convey additional
  ///  context for the product or service.
  List<CodeableConcept>? modifier,

  /// [programCode] Identifies the program under which this may be recovered.
  List<CodeableConcept>? programCode,

  /// [quantity] The number of repetitions of a service or product.
  Quantity? quantity,

  /// [unitPrice] If the item is not a group then this is the fee for the
  /// product or service, otherwise this is the total of the fees for the
  ///  details of the group.
  Money? unitPrice,

  /// [factor] A real number that represents a multiplier used in determining
  /// the overall value of services delivered and/or goods received. The concept
  /// of a Factor allows for a discount or surcharge multiplier to be applied to
  ///  a monetary amount.
  FhirDecimal? factor,

  /// [factorElement] Extensions for factor
  @JsonKey(name: '_factor') Element? factorElement,

  /// [net] The quantity times the unit price for an additional service or
  ///  product or charge.
  Money? net,

  /// [udi] Unique Device Identifiers associated with this line item.
  List<Reference>? udi,
}) = _ClaimSubDetail;