Class: CandidApiClient::Commons::Types::RemovableDateRangeOptionalEnd
- Inherits:
-
Object
- Object
- CandidApiClient::Commons::Types::RemovableDateRangeOptionalEnd
- Defined in:
- lib/candidhealth/commons/types/removable_date_range_optional_end.rb
Instance Attribute Summary collapse
- #discriminant ⇒ String readonly
- #member ⇒ Object readonly
Class Method Summary collapse
- .date_range(member:) ⇒ CandidApiClient::Commons::Types::RemovableDateRangeOptionalEnd
-
.from_json(json_object:) ⇒ CandidApiClient::Commons::Types::RemovableDateRangeOptionalEnd
Deserialize a JSON object to an instance of RemovableDateRangeOptionalEnd.
- .remove ⇒ CandidApiClient::Commons::Types::RemovableDateRangeOptionalEnd
-
.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(member:, discriminant:) ⇒ CandidApiClient::Commons::Types::RemovableDateRangeOptionalEnd constructor
-
#is_a?(obj) ⇒ Boolean
For Union Types, is_a? functionality is delegated to the wrapped member.
- #kind_of? ⇒ Object
-
#to_json(*_args) ⇒ String
For Union Types, to_json functionality is delegated to the wrapped member.
Constructor Details
#initialize(member:, discriminant:) ⇒ CandidApiClient::Commons::Types::RemovableDateRangeOptionalEnd
21 22 23 24 |
# File 'lib/candidhealth/commons/types/removable_date_range_optional_end.rb', line 21 def initialize(member:, discriminant:) @member = member @discriminant = discriminant end |
Instance Attribute Details
#discriminant ⇒ String (readonly)
13 14 15 |
# File 'lib/candidhealth/commons/types/removable_date_range_optional_end.rb', line 13 def discriminant @discriminant end |
#member ⇒ Object (readonly)
11 12 13 |
# File 'lib/candidhealth/commons/types/removable_date_range_optional_end.rb', line 11 def member @member end |
Class Method Details
.date_range(member:) ⇒ CandidApiClient::Commons::Types::RemovableDateRangeOptionalEnd
85 86 87 |
# File 'lib/candidhealth/commons/types/removable_date_range_optional_end.rb', line 85 def self.date_range(member:) new(member: member, discriminant: "date_range") end |
.from_json(json_object:) ⇒ CandidApiClient::Commons::Types::RemovableDateRangeOptionalEnd
Deserialize a JSON object to an instance of RemovableDateRangeOptionalEnd
30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/candidhealth/commons/types/removable_date_range_optional_end.rb', line 30 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) member = case struct.type when "date_range" CandidApiClient::Commons::Types::DateRangeOptionalEnd.from_json(json_object: json_object) when "remove" nil else CandidApiClient::Commons::Types::DateRangeOptionalEnd.from_json(json_object: json_object) end new(member: member, discriminant: struct.type) end |
.remove ⇒ CandidApiClient::Commons::Types::RemovableDateRangeOptionalEnd
90 91 92 |
# File 'lib/candidhealth/commons/types/removable_date_range_optional_end.rb', line 90 def self.remove new(member: nil, discriminant: "remove") 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.
64 65 66 67 68 69 70 71 72 73 |
# File 'lib/candidhealth/commons/types/removable_date_range_optional_end.rb', line 64 def self.validate_raw(obj:) case obj.type when "date_range" CandidApiClient::Commons::Types::DateRangeOptionalEnd.validate_raw(obj: obj) when "remove" # noop else raise("Passed value matched no type within the union, validation failed.") end end |
Instance Method Details
#is_a?(obj) ⇒ Boolean
For Union Types, is_a? functionality is delegated to the wrapped member.
79 80 81 |
# File 'lib/candidhealth/commons/types/removable_date_range_optional_end.rb', line 79 def is_a?(obj) @member.is_a?(obj) end |
#kind_of? ⇒ Object
16 |
# File 'lib/candidhealth/commons/types/removable_date_range_optional_end.rb', line 16 alias kind_of? is_a? |
#to_json(*_args) ⇒ String
For Union Types, to_json functionality is delegated to the wrapped member.
46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/candidhealth/commons/types/removable_date_range_optional_end.rb', line 46 def to_json(*_args) case @discriminant when "date_range" { **@member.to_json, type: @discriminant }.to_json when "remove" { type: @discriminant }.to_json else { "type": @discriminant, value: @member }.to_json end @member.to_json end |