Class: Sentdm::Models::Profiles::BaseDto

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/sentdm/models/profiles/base_dto.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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(id: nil, created_at: nil, updated_at: nil) ⇒ Object

Parameters:

  • id (String) (defaults to: nil)

    Unique identifier

  • created_at (Time) (defaults to: nil)
  • updated_at (Time, nil) (defaults to: nil)


# File 'lib/sentdm/models/profiles/base_dto.rb', line 23

Instance Attribute Details

#created_atTime?

Returns:

  • (Time, nil)


16
# File 'lib/sentdm/models/profiles/base_dto.rb', line 16

optional :created_at, Time, api_name: :createdAt

#idString?

Unique identifier

Returns:

  • (String, nil)


11
# File 'lib/sentdm/models/profiles/base_dto.rb', line 11

optional :id, String

#updated_atTime?

Returns:

  • (Time, nil)


21
# File 'lib/sentdm/models/profiles/base_dto.rb', line 21

optional :updated_at, Time, api_name: :updatedAt, nil?: true