Module: ModernTreasury::Models::LegalEntity::Address::AddressType
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/modern_treasury/models/legal_entity.rb,
sig/modern_treasury/models/legal_entity.rbs
Constant Summary collapse
- BUSINESS =
:business- BUSINESS_PHYSICAL =
:business_physical- BUSINESS_REGISTERED =
:business_registered- 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:, primary:, region:, updated_at:) ⇒ Object
Some parameter documentations has been truncated, see ModernTreasury::Models::LegalEntity::Address for more details.
- #self?.values ⇒ ::Array[ModernTreasury::Models::LegalEntity::Address::address_type]
Methods included from Internal::Type::Enum
==, ===, coerce, dump, hash, inspect, to_sorbet_type, values, 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:, primary:, region:, updated_at:) ⇒ Object
Some parameter documentations has been truncated, see ModernTreasury::Models::LegalEntity::Address for more details.
528 529 530 531 532 533 534 535 536 537 538 539 540 541 |
# File 'lib/modern_treasury/models/legal_entity.rb', line 528 module AddressType extend ModernTreasury::Internal::Type::Enum BUSINESS = :business BUSINESS_PHYSICAL = :business_physical BUSINESS_REGISTERED = :business_registered MAILING = :mailing OTHER = :other PO_BOX = :po_box RESIDENTIAL = :residential # @!method self.values # @return [Array<Symbol>] end |
#self?.values ⇒ ::Array[ModernTreasury::Models::LegalEntity::Address::address_type]
360 |
# File 'sig/modern_treasury/models/legal_entity.rbs', line 360
def self?.values: -> ::Array[ModernTreasury::Models::LegalEntity::Address::address_type]
|