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