Module: ModernTreasury::Models::LegalEntity::Address::AddressType
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/modern_treasury/models/legal_entity.rb
Constant Summary collapse
- BUSINESS =
:business- MAILING =
:mailing- OTHER =
:other- PO_BOX =
:po_box- RESIDENTIAL =
:residential
Instance Method Summary collapse
-
#initialize(id: , address_types: , country: , created_at: , discarded_at: , line1: , line2: , live_mode: , locality: , object: , postal_code: , region: , updated_at: ) ⇒ Object
Some parameter documentations has been truncated, see ModernTreasury::Models::LegalEntity::Address for more details.
Methods included from Internal::Type::Enum
==, ===, coerce, dump, hash, inspect, to_sorbet_type, values
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Instance Method Details
#initialize(id: , address_types: , country: , created_at: , discarded_at: , line1: , line2: , live_mode: , locality: , object: , postal_code: , region: , updated_at: ) ⇒ Object
Some parameter documentations has been truncated, see ModernTreasury::Models::LegalEntity::Address for more details.
370 371 372 373 374 375 376 377 378 379 380 381 |
# File 'lib/modern_treasury/models/legal_entity.rb', line 370 module AddressType extend ModernTreasury::Internal::Type::Enum BUSINESS = :business MAILING = :mailing OTHER = :other PO_BOX = :po_box RESIDENTIAL = :residential # @!method self.values # @return [Array<Symbol>] end |