Class: CandidApiClient::Commons::Types::DateRangeOptionalEnd

Inherits:
Object
  • Object
show all
Defined in:
lib/candidhealth/commons/types/date_range_optional_end.rb

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(start_date:, end_date: OMIT, additional_properties: nil) ⇒ CandidApiClient::Commons::Types::DateRangeOptionalEnd

Parameters:

  • start_date (String)
  • end_date (String) (defaults to: OMIT)
  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



26
27
28
29
30
31
32
33
# File 'lib/candidhealth/commons/types/date_range_optional_end.rb', line 26

def initialize(start_date:, end_date: OMIT, additional_properties: nil)
  @start_date = start_date
  @end_date = end_date if end_date != OMIT
  @additional_properties = additional_properties
  @_field_set = { "start_date": start_date, "end_date": end_date }.reject do |_k, v|
    v == OMIT
  end
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/commons/types/date_range_optional_end.rb', line 15

def additional_properties
  @additional_properties
end

#end_dateString (readonly)

Returns:

  • (String)


13
14
15
# File 'lib/candidhealth/commons/types/date_range_optional_end.rb', line 13

def end_date
  @end_date
end

#start_dateString (readonly)

Returns:

  • (String)


11
12
13
# File 'lib/candidhealth/commons/types/date_range_optional_end.rb', line 11

def start_date
  @start_date
end

Class Method Details

.from_json(json_object:) ⇒ CandidApiClient::Commons::Types::DateRangeOptionalEnd

Deserialize a JSON object to an instance of DateRangeOptionalEnd

Parameters:

  • json_object (String)

Returns:



39
40
41
42
43
44
45
46
47
48
# File 'lib/candidhealth/commons/types/date_range_optional_end.rb', line 39

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  start_date = struct["start_date"]
  end_date = struct["end_date"]
  new(
    start_date: start_date,
    end_date: end_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)


63
64
65
66
# File 'lib/candidhealth/commons/types/date_range_optional_end.rb', line 63

def self.validate_raw(obj:)
  obj.start_date.is_a?(String) != false || raise("Passed value for field obj.start_date is not the expected type, validation failed.")
  obj.end_date&.is_a?(String) != false || raise("Passed value for field obj.end_date is not the expected type, validation failed.")
end

Instance Method Details

#to_json(*_args) ⇒ String

Serialize an instance of DateRangeOptionalEnd to a JSON object

Returns:

  • (String)


53
54
55
# File 'lib/candidhealth/commons/types/date_range_optional_end.rb', line 53

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