Class: CandidApiClient::NonInsurancePayers::V1::Types::CreateNonInsurancePayerRequest
- Inherits:
-
Object
- Object
- CandidApiClient::NonInsurancePayers::V1::Types::CreateNonInsurancePayerRequest
- Defined in:
- lib/candidhealth/non_insurance_payers/v_1/types/create_non_insurance_payer_request.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
- #address ⇒ CandidApiClient::Commons::Types::StreetAddressShortZip readonly
-
#category ⇒ String
readonly
Max 255 characters allowed.
-
#description ⇒ String
readonly
Max 255 characters allowed.
-
#name ⇒ String
readonly
Max 50 characters allowed.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ CandidApiClient::NonInsurancePayers::V1::Types::CreateNonInsurancePayerRequest
Deserialize a JSON object to an instance of CreateNonInsurancePayerRequest.
-
.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(name:, description: OMIT, category: OMIT, address: OMIT, additional_properties: nil) ⇒ CandidApiClient::NonInsurancePayers::V1::Types::CreateNonInsurancePayerRequest constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of CreateNonInsurancePayerRequest to a JSON object.
Constructor Details
#initialize(name:, description: OMIT, category: OMIT, address: OMIT, additional_properties: nil) ⇒ CandidApiClient::NonInsurancePayers::V1::Types::CreateNonInsurancePayerRequest
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/create_non_insurance_payer_request.rb', line 34 def initialize(name:, description: OMIT, category: OMIT, address: OMIT, additional_properties: nil) @name = name @description = description if description != OMIT @category = category if category != OMIT @address = address if address != OMIT @additional_properties = additional_properties @_field_set = { "name": name, "description": description, "category": category, "address": address }.reject do |_k, v| v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
21 22 23 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/create_non_insurance_payer_request.rb', line 21 def additional_properties @additional_properties end |
#address ⇒ CandidApiClient::Commons::Types::StreetAddressShortZip (readonly)
19 20 21 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/create_non_insurance_payer_request.rb', line 19 def address @address end |
#category ⇒ String (readonly)
Returns Max 255 characters allowed.
17 18 19 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/create_non_insurance_payer_request.rb', line 17 def category @category end |
#description ⇒ String (readonly)
Returns Max 255 characters allowed.
15 16 17 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/create_non_insurance_payer_request.rb', line 15 def description @description end |
#name ⇒ String (readonly)
Returns Max 50 characters allowed.
13 14 15 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/create_non_insurance_payer_request.rb', line 13 def name @name end |
Class Method Details
.from_json(json_object:) ⇒ CandidApiClient::NonInsurancePayers::V1::Types::CreateNonInsurancePayerRequest
Deserialize a JSON object to an instance of CreateNonInsurancePayerRequest
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/create_non_insurance_payer_request.rb', line 54 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) name = struct["name"] description = struct["description"] category = struct["category"] if parsed_json["address"].nil? address = nil else address = parsed_json["address"].to_json address = CandidApiClient::Commons::Types::StreetAddressShortZip.from_json(json_object: address) end new( name: name, description: description, category: category, address: address, 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.
88 89 90 91 92 93 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/create_non_insurance_payer_request.rb', line 88 def self.validate_raw(obj:) obj.name.is_a?(String) != false || raise("Passed value for field obj.name is not the expected type, validation failed.") obj.description&.is_a?(String) != false || raise("Passed value for field obj.description is not the expected type, validation failed.") obj.category&.is_a?(String) != false || raise("Passed value for field obj.category is not the expected type, validation failed.") obj.address.nil? || CandidApiClient::Commons::Types::StreetAddressShortZip.validate_raw(obj: obj.address) end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of CreateNonInsurancePayerRequest to a JSON object
78 79 80 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/create_non_insurance_payer_request.rb', line 78 def to_json(*_args) @_field_set&.to_json end |