Module: Ovh::Api::Models::EmailExchangePublicFolderTypeEnum
- Defined in:
- lib/ovh-api/models/email_exchange_public_folder_type_enum.rb
Constant Summary collapse
- CALENDAR =
'calendar'- CONTACTS =
'contacts'- PLAIN =
'plain'- TASKS =
'tasks'
Class Method Summary collapse
Class Method Details
.all ⇒ Object
16 17 18 19 20 21 22 23 |
# File 'lib/ovh-api/models/email_exchange_public_folder_type_enum.rb', line 16 def self.all @all ||= [ CALENDAR, CONTACTS, PLAIN, TASKS, ].freeze end |
.valid?(value) ⇒ Boolean
25 26 27 |
# File 'lib/ovh-api/models/email_exchange_public_folder_type_enum.rb', line 25 def self.valid?(value) all.include?(value) end |