Class: FHIR::PaymentNotice

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

Constant Summary collapse

SEARCH_PARAMS =
['created', 'identifier', 'payment-status', 'provider', 'request', 'response', 'status']
METADATA =
{
  'id' => {'type'=>'id', 'path'=>'PaymentNotice.id', 'min'=>0, 'max'=>1},
  'meta' => {'type'=>'Meta', 'path'=>'PaymentNotice.meta', 'min'=>0, 'max'=>1},
  'implicitRules' => {'type'=>'uri', 'path'=>'PaymentNotice.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'=>'PaymentNotice.language', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'preferred', 'uri'=>'http://hl7.org/fhir/ValueSet/languages'}},
  'text' => {'type'=>'Narrative', 'path'=>'PaymentNotice.text', 'min'=>0, 'max'=>1},
  'contained' => {'type'=>'Resource', 'path'=>'PaymentNotice.contained', 'min'=>0, 'max'=>Float::INFINITY},
  'extension' => {'type'=>'Extension', 'path'=>'PaymentNotice.extension', 'min'=>0, 'max'=>Float::INFINITY},
  'modifierExtension' => {'type'=>'Extension', 'path'=>'PaymentNotice.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
  'identifier' => {'type'=>'Identifier', 'path'=>'PaymentNotice.identifier', 'min'=>0, 'max'=>Float::INFINITY},
  'status' => {'valid_codes'=>{'http://hl7.org/fhir/fm-status'=>['active', 'cancelled', 'draft', 'entered-in-error']}, 'type'=>'code', 'path'=>'PaymentNotice.status', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/fm-status|4.0.0'}},
  'request' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Resource'], 'type'=>'Reference', 'path'=>'PaymentNotice.request', 'min'=>0, 'max'=>1},
  'response' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Resource'], 'type'=>'Reference', 'path'=>'PaymentNotice.response', 'min'=>0, 'max'=>1},
  'created' => {'type'=>'dateTime', 'path'=>'PaymentNotice.created', 'min'=>1, 'max'=>1},
  'provider' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Practitioner', 'http://hl7.org/fhir/StructureDefinition/PractitionerRole', 'http://hl7.org/fhir/StructureDefinition/Organization'], 'type'=>'Reference', 'path'=>'PaymentNotice.provider', 'min'=>0, 'max'=>1},
  'payment' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/PaymentReconciliation'], 'type'=>'Reference', 'path'=>'PaymentNotice.payment', 'min'=>1, 'max'=>1},
  'paymentDate' => {'type'=>'date', 'path'=>'PaymentNotice.paymentDate', 'min'=>0, 'max'=>1},
  'payee' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Practitioner', 'http://hl7.org/fhir/StructureDefinition/PractitionerRole', 'http://hl7.org/fhir/StructureDefinition/Organization'], 'type'=>'Reference', 'path'=>'PaymentNotice.payee', 'min'=>0, 'max'=>1},
  'recipient' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Organization'], 'type'=>'Reference', 'path'=>'PaymentNotice.recipient', 'min'=>1, 'max'=>1},
  'amount' => {'type'=>'Money', 'path'=>'PaymentNotice.amount', 'min'=>1, 'max'=>1},
  'paymentStatus' => {'valid_codes'=>{'http://terminology.hl7.org/CodeSystem/paymentstatus'=>['paid', 'cleared']}, 'type'=>'CodeableConcept', 'path'=>'PaymentNotice.paymentStatus', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/payment-status'}}
}

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

#amountObject

1-1 Money



49
50
51
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 49

def amount
  @amount
end

#containedObject

0-* [ Resource ]



36
37
38
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 36

def contained
  @contained
end

#createdObject

1-1 dateTime



43
44
45
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 43

def created
  @created
end

#extensionObject

0-* [ Extension ]



37
38
39
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 37

def extension
  @extension
end

#idObject

0-1 id



31
32
33
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 31

def id
  @id
end

#identifierObject

0-* [ Identifier ]



39
40
41
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 39

def identifier
  @identifier
end

#implicitRulesObject

0-1 uri



33
34
35
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 33

def implicitRules
  @implicitRules
end

#languageObject

0-1 code



34
35
36
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 34

def language
  @language
end

#metaObject

0-1 Meta



32
33
34
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 32

def meta
  @meta
end

#modifierExtensionObject

0-* [ Extension ]



38
39
40
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 38

def modifierExtension
  @modifierExtension
end

#payeeObject

0-1 Reference(Practitioner|PractitionerRole|Organization)



47
48
49
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 47

def payee
  @payee
end

#paymentObject

1-1 Reference(PaymentReconciliation)



45
46
47
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 45

def payment
  @payment
end

#paymentDateObject

0-1 date



46
47
48
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 46

def paymentDate
  @paymentDate
end

#paymentStatusObject

0-1 CodeableConcept



50
51
52
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 50

def paymentStatus
  @paymentStatus
end

#providerObject

0-1 Reference(Practitioner|PractitionerRole|Organization)



44
45
46
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 44

def provider
  @provider
end

#recipientObject

1-1 Reference(Organization)



48
49
50
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 48

def recipient
  @recipient
end

#requestObject

0-1 Reference(Resource)



41
42
43
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 41

def request
  @request
end

#responseObject

0-1 Reference(Resource)



42
43
44
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 42

def response
  @response
end

#statusObject

1-1 code



40
41
42
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 40

def status
  @status
end

#textObject

0-1 Narrative



35
36
37
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 35

def text
  @text
end

Instance Method Details

#resourceTypeObject



52
53
54
# File 'lib/fhir_models/fhir/resources/PaymentNotice.rb', line 52

def resourceType
  'PaymentNotice'
end