Class: FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Company
- Inherits:
-
BaseModel
- Object
- FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Company
- Defined in:
- lib/finch-api/models/account_update_event.rb
Overview
def initialize: (Hash | FinchAPI::BaseModel) -> void
Defined Under Namespace
Classes: Accounts, Departments, Entity, Locations
Instance Attribute Summary collapse
- #accounts ⇒ FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Company::Accounts?
- #departments ⇒ FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Company::Departments?
- #ein ⇒ Boolean?
- #entity ⇒ FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Company::Entity?
- #id ⇒ Boolean?
- #legal_name ⇒ Boolean?
- #locations ⇒ FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Company::Locations?
- #name ⇒ Boolean writeonly
- #primary_email ⇒ Boolean?
- #primary_phone_number ⇒ Boolean?
- #routing_number ⇒ Boolean writeonly
- #type ⇒ Boolean writeonly
Instance Method Summary collapse
-
#initialize(subtype: nil, type: nil) ⇒ Company
constructor
A new instance of Company.
Constructor Details
#initialize(subtype: nil, type: nil) ⇒ Company
Returns a new instance of Company.
11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/finch-api/models/account_update_event.rb', line 11 def initialize( id: nil, accounts: nil, departments: nil, ein: nil, entity: nil, legal_name: nil, locations: nil, primary_email: nil, primary_phone_number: nil, ** ) super end |
Instance Attribute Details
#accounts ⇒ FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Company::Accounts?
196 197 |
# File 'lib/finch-api/models/account_update_event.rb', line 196 optional :accounts, -> { FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Company::Accounts } |
#departments ⇒ FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Company::Departments?
206 207 |
# File 'lib/finch-api/models/account_update_event.rb', line 206 optional :departments, -> { FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Company::Departments } |
#ein ⇒ Boolean?
216 |
# File 'lib/finch-api/models/account_update_event.rb', line 216 optional :ein, FinchAPI::BooleanModel |
#entity ⇒ FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Company::Entity?
225 226 |
# File 'lib/finch-api/models/account_update_event.rb', line 225 optional :entity, -> { FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Company::Entity } |
#id ⇒ Boolean?
187 |
# File 'lib/finch-api/models/account_update_event.rb', line 187 optional :id, FinchAPI::BooleanModel |
#legal_name ⇒ Boolean?
235 |
# File 'lib/finch-api/models/account_update_event.rb', line 235 optional :legal_name, FinchAPI::BooleanModel |
#locations ⇒ FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Company::Locations?
244 245 |
# File 'lib/finch-api/models/account_update_event.rb', line 244 optional :locations, -> { FinchAPI::Models::AccountUpdateEvent::Data::AuthenticationMethod::SupportedFields::Company::Locations } |
#name=(value) ⇒ Boolean (writeonly)
2 3 4 |
# File 'lib/finch-api/models/account_update_event.rb', line 2 def name=(value) @name = value end |
#primary_email ⇒ Boolean?
254 |
# File 'lib/finch-api/models/account_update_event.rb', line 254 optional :primary_email, FinchAPI::BooleanModel |
#primary_phone_number ⇒ Boolean?
263 |
# File 'lib/finch-api/models/account_update_event.rb', line 263 optional :primary_phone_number, FinchAPI::BooleanModel |
#routing_number=(value) ⇒ Boolean (writeonly)
2 3 4 |
# File 'lib/finch-api/models/account_update_event.rb', line 2 def routing_number=(value) @routing_number = value end |
#type=(value) ⇒ Boolean (writeonly)
2 3 4 |
# File 'lib/finch-api/models/account_update_event.rb', line 2 def type=(value) @type = value end |