Class: CandidApiClient::FeeSchedules::V3::Types::MatchLicenseType
- Inherits:
-
Object
- Object
- CandidApiClient::FeeSchedules::V3::Types::MatchLicenseType
- Defined in:
- lib/candidhealth/fee_schedules/v_3/types/match_license_type.rb
Overview
Match information for rendering provider license type
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
- #explanation ⇒ String readonly
- #match ⇒ Boolean readonly
- #value ⇒ CandidApiClient::OrganizationProviders::V2::Types::LicenseType readonly
Class Method Summary collapse
-
.from_json(json_object:) ⇒ CandidApiClient::FeeSchedules::V3::Types::MatchLicenseType
Deserialize a JSON object to an instance of MatchLicenseType.
-
.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(match:, explanation:, value: OMIT, additional_properties: nil) ⇒ CandidApiClient::FeeSchedules::V3::Types::MatchLicenseType constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of MatchLicenseType to a JSON object.
Constructor Details
#initialize(match:, explanation:, value: OMIT, additional_properties: nil) ⇒ CandidApiClient::FeeSchedules::V3::Types::MatchLicenseType
32 33 34 35 36 37 38 39 40 |
# File 'lib/candidhealth/fee_schedules/v_3/types/match_license_type.rb', line 32 def initialize(match:, explanation:, value: OMIT, additional_properties: nil) @value = value if value != OMIT @match = match @explanation = explanation @additional_properties = additional_properties @_field_set = { "value": value, "match": match, "explanation": explanation }.reject do |_k, v| v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
20 21 22 |
# File 'lib/candidhealth/fee_schedules/v_3/types/match_license_type.rb', line 20 def additional_properties @additional_properties end |
#explanation ⇒ String (readonly)
18 19 20 |
# File 'lib/candidhealth/fee_schedules/v_3/types/match_license_type.rb', line 18 def explanation @explanation end |
#match ⇒ Boolean (readonly)
16 17 18 |
# File 'lib/candidhealth/fee_schedules/v_3/types/match_license_type.rb', line 16 def match @match end |
#value ⇒ CandidApiClient::OrganizationProviders::V2::Types::LicenseType (readonly)
14 15 16 |
# File 'lib/candidhealth/fee_schedules/v_3/types/match_license_type.rb', line 14 def value @value end |
Class Method Details
.from_json(json_object:) ⇒ CandidApiClient::FeeSchedules::V3::Types::MatchLicenseType
Deserialize a JSON object to an instance of MatchLicenseType
46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/candidhealth/fee_schedules/v_3/types/match_license_type.rb', line 46 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) value = struct["value"] match = struct["match"] explanation = struct["explanation"] new( value: value, match: match, explanation: explanation, 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.
72 73 74 75 76 |
# File 'lib/candidhealth/fee_schedules/v_3/types/match_license_type.rb', line 72 def self.validate_raw(obj:) obj.value&.is_a?(CandidApiClient::OrganizationProviders::V2::Types::LicenseType) != false || raise("Passed value for field obj.value is not the expected type, validation failed.") obj.match.is_a?(Boolean) != false || raise("Passed value for field obj.match is not the expected type, validation failed.") obj.explanation.is_a?(String) != false || raise("Passed value for field obj.explanation is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of MatchLicenseType to a JSON object
62 63 64 |
# File 'lib/candidhealth/fee_schedules/v_3/types/match_license_type.rb', line 62 def to_json(*_args) @_field_set&.to_json end |