Class: CandidApiClient::Era::Types::EraBase

Inherits:
Object
  • Object
show all
Defined in:
lib/candidhealth/era/types/era_base.rb

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(check_number:, check_date:, additional_properties: nil) ⇒ CandidApiClient::Era::Types::EraBase

Parameters:

  • check_number (String)
  • check_date (String)
  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



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_propertiesOpenStruct (readonly)

Returns Additional properties unmapped to the current class definition.

Returns:

  • (OpenStruct)

    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_dateString (readonly)

Returns:

  • (String)


13
14
15
# File 'lib/candidhealth/era/types/era_base.rb', line 13

def check_date
  @check_date
end

#check_numberString (readonly)

Returns:

  • (String)


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

Parameters:

  • json_object (String)

Returns:



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.

Parameters:

  • obj (Object)

Returns:

  • (Void)


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

Returns:

  • (String)


51
52
53
# File 'lib/candidhealth/era/types/era_base.rb', line 51

def to_json(*_args)
  @_field_set&.to_json
end