@@ -41,6 +41,8 @@ class DocumentWithDriverVerificationReportAllOfProperties
4141
4242 attr_accessor :issuing_date
4343
44+ attr_accessor :valid_from
45+
4446 attr_accessor :categorisation
4547
4648 attr_accessor :mrz_line1
@@ -163,6 +165,7 @@ def self.attribute_map
163165 :'nationality' => :'nationality' ,
164166 :'issuing_state' => :'issuing_state' ,
165167 :'issuing_date' => :'issuing_date' ,
168+ :'valid_from' => :'valid_from' ,
166169 :'categorisation' => :'categorisation' ,
167170 :'mrz_line1' => :'mrz_line1' ,
168171 :'mrz_line2' => :'mrz_line2' ,
@@ -226,6 +229,7 @@ def self.openapi_types
226229 :'nationality' => :'String' ,
227230 :'issuing_state' => :'String' ,
228231 :'issuing_date' => :'Date' ,
232+ :'valid_from' => :'Date' ,
229233 :'categorisation' => :'String' ,
230234 :'mrz_line1' => :'String' ,
231235 :'mrz_line2' => :'String' ,
@@ -350,6 +354,10 @@ def initialize(attributes = {})
350354 self . issuing_date = attributes [ :'issuing_date' ]
351355 end
352356
357+ if attributes . key? ( :'valid_from' )
358+ self . valid_from = attributes [ :'valid_from' ]
359+ end
360+
353361 if attributes . key? ( :'categorisation' )
354362 self . categorisation = attributes [ :'categorisation' ]
355363 end
@@ -582,6 +590,7 @@ def ==(o)
582590 nationality == o . nationality &&
583591 issuing_state == o . issuing_state &&
584592 issuing_date == o . issuing_date &&
593+ valid_from == o . valid_from &&
585594 categorisation == o . categorisation &&
586595 mrz_line1 == o . mrz_line1 &&
587596 mrz_line2 == o . mrz_line2 &&
@@ -632,7 +641,7 @@ def eql?(o)
632641 # Calculates hash code according to all attributes.
633642 # @return [Integer] Hash code
634643 def hash
635- [ date_of_birth , date_of_expiry , personal_number , document_numbers , document_type , first_name , middle_name , last_name , gender , issuing_country , nationality , issuing_state , issuing_date , categorisation , mrz_line1 , mrz_line2 , mrz_line3 , address , place_of_birth , spouse_name , widow_name , alias_name , issuing_authority , remarks , civil_state , expatriation , father_name , mother_name , religion , type_of_permit , version_number , document_subtype , profession , security_document_number , tax_number , nist_identity_evidence_strength , has_issuance_confirmation , real_id_compliance , security_tier , address_lines , barcode , nfc , driving_licence_information , document_classification , extracted_data , drivers_licence , restricted_licence , raw_licence_category , raw_vehicle_classes , manual_transmission_restriction , vehicle_class_details , passenger_vehicle ] . hash
644+ [ date_of_birth , date_of_expiry , personal_number , document_numbers , document_type , first_name , middle_name , last_name , gender , issuing_country , nationality , issuing_state , issuing_date , valid_from , categorisation , mrz_line1 , mrz_line2 , mrz_line3 , address , place_of_birth , spouse_name , widow_name , alias_name , issuing_authority , remarks , civil_state , expatriation , father_name , mother_name , religion , type_of_permit , version_number , document_subtype , profession , security_document_number , tax_number , nist_identity_evidence_strength , has_issuance_confirmation , real_id_compliance , security_tier , address_lines , barcode , nfc , driving_licence_information , document_classification , extracted_data , drivers_licence , restricted_licence , raw_licence_category , raw_vehicle_classes , manual_transmission_restriction , vehicle_class_details , passenger_vehicle ] . hash
636645 end
637646
638647 # Builds the object from hash
0 commit comments