Class: FHIR::Invoice

Inherits:
Model
  • Object
show all
Includes:
Hashable, Json, Xml
Defined in:
lib/fhir_models/fhir/resources/Invoice.rb

Defined Under Namespace

Classes: LineItem, Participant

Constant Summary collapse

SEARCH_PARAMS =
['account', 'date', 'identifier', 'issuer', 'participant', 'participant-role', 'patient', 'recipient', 'status', 'subject', 'totalgross', 'totalnet', 'type']
METADATA =
{
  'id' => {'type'=>'id', 'path'=>'Invoice.id', 'min'=>0, 'max'=>1},
  'meta' => {'type'=>'Meta', 'path'=>'Invoice.meta', 'min'=>0, 'max'=>1},
  'implicitRules' => {'type'=>'uri', 'path'=>'Invoice.implicitRules', 'min'=>0, 'max'=>1},
  'language' => {'valid_codes'=>{'urn:ietf:bcp:47'=>['ar', 'bn', 'cs', 'da', 'de', 'de-AT', 'de-CH', 'de-DE', 'el', 'en', 'en-AU', 'en-CA', 'en-GB', 'en-IN', 'en-NZ', 'en-SG', 'en-US', 'es', 'es-AR', 'es-ES', 'es-UY', 'fi', 'fr', 'fr-BE', 'fr-CH', 'fr-FR', 'fy', 'fy-NL', 'hi', 'hr', 'it', 'it-CH', 'it-IT', 'ja', 'ko', 'nl', 'nl-BE', 'nl-NL', 'no', 'no-NO', 'pa', 'pl', 'pt', 'pt-BR', 'ru', 'ru-RU', 'sr', 'sr-RS', 'sv', 'sv-SE', 'te', 'zh', 'zh-CN', 'zh-HK', 'zh-SG', 'zh-TW']}, 'type'=>'code', 'path'=>'Invoice.language', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'preferred', 'uri'=>'http://hl7.org/fhir/ValueSet/languages'}},
  'text' => {'type'=>'Narrative', 'path'=>'Invoice.text', 'min'=>0, 'max'=>1},
  'contained' => {'type'=>'Resource', 'path'=>'Invoice.contained', 'min'=>0, 'max'=>Float::INFINITY},
  'extension' => {'type'=>'Extension', 'path'=>'Invoice.extension', 'min'=>0, 'max'=>Float::INFINITY},
  'modifierExtension' => {'type'=>'Extension', 'path'=>'Invoice.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
  'identifier' => {'type'=>'Identifier', 'path'=>'Invoice.identifier', 'min'=>0, 'max'=>Float::INFINITY},
  'status' => {'valid_codes'=>{'http://hl7.org/fhir/invoice-status'=>['draft', 'issued', 'balanced', 'cancelled', 'entered-in-error']}, 'type'=>'code', 'path'=>'Invoice.status', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/invoice-status|4.0.0'}},
  'cancelledReason' => {'type'=>'string', 'path'=>'Invoice.cancelledReason', 'min'=>0, 'max'=>1},
  'type' => {'type'=>'CodeableConcept', 'path'=>'Invoice.type', 'min'=>0, 'max'=>1},
  'subject' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Patient', 'http://hl7.org/fhir/StructureDefinition/Group'], 'type'=>'Reference', 'path'=>'Invoice.subject', 'min'=>0, 'max'=>1},
  'recipient' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Organization', 'http://hl7.org/fhir/StructureDefinition/Patient', 'http://hl7.org/fhir/StructureDefinition/RelatedPerson'], 'type'=>'Reference', 'path'=>'Invoice.recipient', 'min'=>0, 'max'=>1},
  'date' => {'type'=>'dateTime', 'path'=>'Invoice.date', 'min'=>0, 'max'=>1},
  'participant' => {'type'=>'Invoice::Participant', 'path'=>'Invoice.participant', 'min'=>0, 'max'=>Float::INFINITY},
  'issuer' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Organization'], 'type'=>'Reference', 'path'=>'Invoice.issuer', 'min'=>0, 'max'=>1},
  'account' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Account'], 'type'=>'Reference', 'path'=>'Invoice.account', 'min'=>0, 'max'=>1},
  'lineItem' => {'type'=>'Invoice::LineItem', 'path'=>'Invoice.lineItem', 'min'=>0, 'max'=>Float::INFINITY},
  'totalPriceComponent' => {'type'=>'Invoice::LineItem::PriceComponent', 'path'=>'Invoice.totalPriceComponent', 'min'=>0, 'max'=>Float::INFINITY},
  'totalNet' => {'type'=>'Money', 'path'=>'Invoice.totalNet', 'min'=>0, 'max'=>1},
  'totalGross' => {'type'=>'Money', 'path'=>'Invoice.totalGross', 'min'=>0, 'max'=>1},
  'paymentTerms' => {'type'=>'markdown', 'path'=>'Invoice.paymentTerms', 'min'=>0, 'max'=>1},
  'note' => {'type'=>'Annotation', 'path'=>'Invoice.note', 'min'=>0, 'max'=>Float::INFINITY}
}

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Xml

from_xml, #to_xml, valid?, validate

Methods included from Deprecate

#deprecate

Methods included from Json

from_json, #to_json

Methods included from Hashable

#from_hash, #to_hash

Methods inherited from Model

#==, #attribute_mismatch, #compare_attribute, #equals?, #hash, #initialize, #method_missing, #mismatch, #primitive?, #to_reference, #valid?, #validate, #validate_profile

Constructor Details

This class inherits a constructor from FHIR::Model

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class FHIR::Model

Instance Attribute Details

#accountObject

0-1 Reference(Account)



123
124
125
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 123

def 
  @account
end

#cancelledReasonObject

0-1 string



116
117
118
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 116

def cancelledReason
  @cancelledReason
end

#containedObject

0-* [ Resource ]



111
112
113
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 111

def contained
  @contained
end

#dateObject

0-1 dateTime



120
121
122
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 120

def date
  @date
end

#extensionObject

0-* [ Extension ]



112
113
114
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 112

def extension
  @extension
end

#idObject

0-1 id



106
107
108
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 106

def id
  @id
end

#identifierObject

0-* [ Identifier ]



114
115
116
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 114

def identifier
  @identifier
end

#implicitRulesObject

0-1 uri



108
109
110
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 108

def implicitRules
  @implicitRules
end

#issuerObject

0-1 Reference(Organization)



122
123
124
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 122

def issuer
  @issuer
end

#languageObject

0-1 code



109
110
111
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 109

def language
  @language
end

#lineItemObject

0-* [ Invoice::LineItem ]



124
125
126
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 124

def lineItem
  @lineItem
end

#metaObject

0-1 Meta



107
108
109
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 107

def meta
  @meta
end

#modifierExtensionObject

0-* [ Extension ]



113
114
115
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 113

def modifierExtension
  @modifierExtension
end

#noteObject

0-* [ Annotation ]



129
130
131
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 129

def note
  @note
end

#participantObject

0-* [ Invoice::Participant ]



121
122
123
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 121

def participant
  @participant
end

#paymentTermsObject

0-1 markdown



128
129
130
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 128

def paymentTerms
  @paymentTerms
end

#recipientObject

0-1 Reference(Organization|Patient|RelatedPerson)



119
120
121
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 119

def recipient
  @recipient
end

#statusObject

1-1 code



115
116
117
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 115

def status
  @status
end

#subjectObject

0-1 Reference(Patient|Group)



118
119
120
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 118

def subject
  @subject
end

#textObject

0-1 Narrative



110
111
112
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 110

def text
  @text
end

#totalGrossObject

0-1 Money



127
128
129
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 127

def totalGross
  @totalGross
end

#totalNetObject

0-1 Money



126
127
128
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 126

def totalNet
  @totalNet
end

#totalPriceComponentObject

0-* [ Invoice::LineItem::PriceComponent ]



125
126
127
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 125

def totalPriceComponent
  @totalPriceComponent
end

#typeObject

0-1 CodeableConcept



117
118
119
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 117

def type
  @type
end

Instance Method Details

#resourceTypeObject



131
132
133
# File 'lib/fhir_models/fhir/resources/Invoice.rb', line 131

def resourceType
  'Invoice'
end