Class: CandidApiClient::InsuranceRefunds::V1::Types::InsuranceRefund
- Inherits:
-
Object
- Object
- CandidApiClient::InsuranceRefunds::V1::Types::InsuranceRefund
- Defined in:
- lib/candidhealth/insurance_refunds/v_1/types/insurance_refund.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
- #allocations ⇒ Array<CandidApiClient::Financials::Types::Allocation> readonly
- #amount_cents ⇒ Integer readonly
- #insurance_refund_id ⇒ String readonly
- #payer ⇒ CandidApiClient::Payers::V3::Types::Payer readonly
- #refund_note ⇒ String readonly
- #refund_reason ⇒ CandidApiClient::Financials::Types::RefundReason readonly
- #refund_timestamp ⇒ DateTime readonly
Class Method Summary collapse
-
.from_json(json_object:) ⇒ CandidApiClient::InsuranceRefunds::V1::Types::InsuranceRefund
Deserialize a JSON object to an instance of InsuranceRefund.
-
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given hash and check each fields type against the current object’s property definitions.
Instance Method Summary collapse
- #initialize(insurance_refund_id:, payer:, amount_cents:, allocations:, refund_timestamp: OMIT, refund_note: OMIT, refund_reason: OMIT, additional_properties: nil) ⇒ CandidApiClient::InsuranceRefunds::V1::Types::InsuranceRefund constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of InsuranceRefund to a JSON object.
Constructor Details
#initialize(insurance_refund_id:, payer:, amount_cents:, allocations:, refund_timestamp: OMIT, refund_note: OMIT, refund_reason: OMIT, additional_properties: nil) ⇒ CandidApiClient::InsuranceRefunds::V1::Types::InsuranceRefund
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/candidhealth/insurance_refunds/v_1/types/insurance_refund.rb', line 46 def initialize(insurance_refund_id:, payer:, amount_cents:, allocations:, refund_timestamp: OMIT, refund_note: OMIT, refund_reason: OMIT, additional_properties: nil) @insurance_refund_id = insurance_refund_id @payer = payer @amount_cents = amount_cents @refund_timestamp = if != OMIT @refund_note = refund_note if refund_note != OMIT @allocations = allocations @refund_reason = refund_reason if refund_reason != OMIT @additional_properties = additional_properties @_field_set = { "insurance_refund_id": insurance_refund_id, "payer": payer, "amount_cents": amount_cents, "refund_timestamp": , "refund_note": refund_note, "allocations": allocations, "refund_reason": refund_reason }.reject do |_k, v| v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
30 31 32 |
# File 'lib/candidhealth/insurance_refunds/v_1/types/insurance_refund.rb', line 30 def additional_properties @additional_properties end |
#allocations ⇒ Array<CandidApiClient::Financials::Types::Allocation> (readonly)
26 27 28 |
# File 'lib/candidhealth/insurance_refunds/v_1/types/insurance_refund.rb', line 26 def allocations @allocations end |
#amount_cents ⇒ Integer (readonly)
20 21 22 |
# File 'lib/candidhealth/insurance_refunds/v_1/types/insurance_refund.rb', line 20 def amount_cents @amount_cents end |
#insurance_refund_id ⇒ String (readonly)
16 17 18 |
# File 'lib/candidhealth/insurance_refunds/v_1/types/insurance_refund.rb', line 16 def insurance_refund_id @insurance_refund_id end |
#payer ⇒ CandidApiClient::Payers::V3::Types::Payer (readonly)
18 19 20 |
# File 'lib/candidhealth/insurance_refunds/v_1/types/insurance_refund.rb', line 18 def payer @payer end |
#refund_note ⇒ String (readonly)
24 25 26 |
# File 'lib/candidhealth/insurance_refunds/v_1/types/insurance_refund.rb', line 24 def refund_note @refund_note end |
#refund_reason ⇒ CandidApiClient::Financials::Types::RefundReason (readonly)
28 29 30 |
# File 'lib/candidhealth/insurance_refunds/v_1/types/insurance_refund.rb', line 28 def refund_reason @refund_reason end |
#refund_timestamp ⇒ DateTime (readonly)
22 23 24 |
# File 'lib/candidhealth/insurance_refunds/v_1/types/insurance_refund.rb', line 22 def @refund_timestamp end |
Class Method Details
.from_json(json_object:) ⇒ CandidApiClient::InsuranceRefunds::V1::Types::InsuranceRefund
Deserialize a JSON object to an instance of InsuranceRefund
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/candidhealth/insurance_refunds/v_1/types/insurance_refund.rb', line 73 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) insurance_refund_id = struct["insurance_refund_id"] if parsed_json["payer"].nil? payer = nil else payer = parsed_json["payer"].to_json payer = CandidApiClient::Payers::V3::Types::Payer.from_json(json_object: payer) end amount_cents = struct["amount_cents"] = unless parsed_json["refund_timestamp"].nil? DateTime.parse(parsed_json["refund_timestamp"]) end refund_note = struct["refund_note"] allocations = parsed_json["allocations"]&.map do |item| item = item.to_json CandidApiClient::Financials::Types::Allocation.from_json(json_object: item) end refund_reason = struct["refund_reason"] new( insurance_refund_id: insurance_refund_id, payer: payer, amount_cents: amount_cents, refund_timestamp: , refund_note: refund_note, allocations: allocations, refund_reason: refund_reason, additional_properties: struct ) end |
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given
hash and check each fields type against the current object's property
definitions.
118 119 120 121 122 123 124 125 126 |
# File 'lib/candidhealth/insurance_refunds/v_1/types/insurance_refund.rb', line 118 def self.validate_raw(obj:) obj.insurance_refund_id.is_a?(String) != false || raise("Passed value for field obj.insurance_refund_id is not the expected type, validation failed.") CandidApiClient::Payers::V3::Types::Payer.validate_raw(obj: obj.payer) obj.amount_cents.is_a?(Integer) != false || raise("Passed value for field obj.amount_cents is not the expected type, validation failed.") obj.&.is_a?(DateTime) != false || raise("Passed value for field obj.refund_timestamp is not the expected type, validation failed.") obj.refund_note&.is_a?(String) != false || raise("Passed value for field obj.refund_note is not the expected type, validation failed.") obj.allocations.is_a?(Array) != false || raise("Passed value for field obj.allocations is not the expected type, validation failed.") obj.refund_reason&.is_a?(CandidApiClient::Financials::Types::RefundReason) != false || raise("Passed value for field obj.refund_reason is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of InsuranceRefund to a JSON object
108 109 110 |
# File 'lib/candidhealth/insurance_refunds/v_1/types/insurance_refund.rb', line 108 def to_json(*_args) @_field_set&.to_json end |