Class: Moonbase::Models::Organizer
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Moonbase::Models::Organizer
- Defined in:
- lib/moonbase/models/organizer.rb
Instance Attribute Summary collapse
-
#email ⇒ String
The email address of the organizer.
-
#id ⇒ String
Unique identifier for the object.
-
#organization ⇒ Moonbase::Models::ItemPointer?
A reference to an ‘Item` within a specific `Collection`, providing the context needed to locate the item.
-
#person ⇒ Moonbase::Models::ItemPointer?
A reference to an ‘Item` within a specific `Collection`, providing the context needed to locate the item.
-
#type ⇒ Symbol, :meeting_organizer
String representing the object’s type.
Instance Method Summary collapse
-
#initialize(id:, email:, organization: nil, person: nil, type: :meeting_organizer) ⇒ Object
constructor
Some parameter documentations has been truncated, see Organizer for more details.
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(id:, email:, organization: nil, person: nil, type: :meeting_organizer) ⇒ Object
Some parameter documentations has been truncated, see Moonbase::Models::Organizer for more details.
Represents the organizer of a meeting.
|
|
# File 'lib/moonbase/models/organizer.rb', line 39
|
Instance Attribute Details
#email ⇒ String
The email address of the organizer.
16 |
# File 'lib/moonbase/models/organizer.rb', line 16 required :email, String |
#id ⇒ String
Unique identifier for the object.
10 |
# File 'lib/moonbase/models/organizer.rb', line 10 required :id, String |
#organization ⇒ Moonbase::Models::ItemPointer?
A reference to an ‘Item` within a specific `Collection`, providing the context needed to locate the item.
30 |
# File 'lib/moonbase/models/organizer.rb', line 30 optional :organization, -> { Moonbase::ItemPointer } |
#person ⇒ Moonbase::Models::ItemPointer?
A reference to an ‘Item` within a specific `Collection`, providing the context needed to locate the item.
37 |
# File 'lib/moonbase/models/organizer.rb', line 37 optional :person, -> { Moonbase::ItemPointer } |
#type ⇒ Symbol, :meeting_organizer
String representing the object’s type. Always ‘meeting_organizer` for this object.
23 |
# File 'lib/moonbase/models/organizer.rb', line 23 required :type, const: :meeting_organizer |