Class: FinchAPI::Models::EmploymentEvent::Data
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- FinchAPI::Models::EmploymentEvent::Data
- Defined in:
- lib/finch_api/models/employment_event.rb
Instance Attribute Summary collapse
-
#individual_id ⇒ String?
The ID of the individual related to the event.
Instance Method Summary collapse
- #initialize(data: nil, event_type: nil) ⇒ Object constructor
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(data: nil, event_type: nil) ⇒ Object
20 21 22 23 24 25 26 27 28 29 |
# File 'lib/finch_api/models/employment_event.rb', line 20 class Data < FinchAPI::Internal::Type::BaseModel # @!attribute individual_id # The ID of the individual related to the event. # # @return [String, nil] optional :individual_id, String # @!method initialize(individual_id: nil) # @param individual_id [String] The ID of the individual related to the event. end |
Instance Attribute Details
#individual_id ⇒ String?
The ID of the individual related to the event.
25 |
# File 'lib/finch_api/models/employment_event.rb', line 25 optional :individual_id, String |