Class: Increase::Models::Entity::GovernmentAuthority::AuthorizedPerson
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::Entity::GovernmentAuthority::AuthorizedPerson
- Defined in:
- lib/increase/models/entity.rb,
sig/increase/models/entity.rbs
Instance Attribute Summary collapse
-
#authorized_person_id ⇒ String
The identifier of this authorized person.
-
#name ⇒ String
The person's legal name.
Instance Method Summary collapse
-
#initialize ⇒ AuthorizedPerson
constructor
A new instance of AuthorizedPerson.
- #to_hash ⇒ { authorized_person_id: String, name: String }
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 ⇒ AuthorizedPerson
Returns a new instance of AuthorizedPerson.
528 |
# File 'sig/increase/models/entity.rbs', line 528
def initialize: (authorized_person_id: String, name: String) -> void
|
Instance Attribute Details
#authorized_person_id ⇒ String
The identifier of this authorized person.
716 |
# File 'lib/increase/models/entity.rb', line 716 required :authorized_person_id, String |
#name ⇒ String
The person's legal name.
722 |
# File 'lib/increase/models/entity.rb', line 722 required :name, String |
Instance Method Details
#to_hash ⇒ { authorized_person_id: String, name: String }
530 |
# File 'sig/increase/models/entity.rbs', line 530
def to_hash: -> { authorized_person_id: String, name: String }
|