Class: CandidApiClient::Era::Types::EraBase
- Inherits:
-
Object
- Object
- CandidApiClient::Era::Types::EraBase
- Defined in:
- lib/candidhealth/era/types/era_base.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
- #check_date ⇒ String readonly
- #check_number ⇒ String readonly
Class Method Summary collapse
-
.from_json(json_object:) ⇒ CandidApiClient::Era::Types::EraBase
Deserialize a JSON object to an instance of EraBase.
-
.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(check_number:, check_date:, additional_properties: nil) ⇒ CandidApiClient::Era::Types::EraBase constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of EraBase to a JSON object.
Constructor Details
#initialize(check_number:, check_date:, additional_properties: nil) ⇒ CandidApiClient::Era::Types::EraBase
26 27 28 29 30 31 |
# File 'lib/candidhealth/era/types/era_base.rb', line 26 def initialize(check_number:, check_date:, additional_properties: nil) @check_number = check_number @check_date = check_date @additional_properties = additional_properties @_field_set = { "check_number": check_number, "check_date": check_date } end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
15 16 17 |
# File 'lib/candidhealth/era/types/era_base.rb', line 15 def additional_properties @additional_properties end |
#check_date ⇒ String (readonly)
13 14 15 |
# File 'lib/candidhealth/era/types/era_base.rb', line 13 def check_date @check_date end |
#check_number ⇒ String (readonly)
11 12 13 |
# File 'lib/candidhealth/era/types/era_base.rb', line 11 def check_number @check_number end |
Class Method Details
.from_json(json_object:) ⇒ CandidApiClient::Era::Types::EraBase
Deserialize a JSON object to an instance of EraBase
37 38 39 40 41 42 43 44 45 46 |
# File 'lib/candidhealth/era/types/era_base.rb', line 37 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) check_number = struct["check_number"] check_date = struct["check_date"] new( check_number: check_number, check_date: check_date, 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.
61 62 63 64 |
# File 'lib/candidhealth/era/types/era_base.rb', line 61 def self.validate_raw(obj:) obj.check_number.is_a?(String) != false || raise("Passed value for field obj.check_number is not the expected type, validation failed.") obj.check_date.is_a?(String) != false || raise("Passed value for field obj.check_date is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of EraBase to a JSON object
51 52 53 |
# File 'lib/candidhealth/era/types/era_base.rb', line 51 def to_json(*_args) @_field_set&.to_json end |