Class: SurgeAPI::Models::Blast
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- SurgeAPI::Models::Blast
- Defined in:
- lib/surge_api/models/blast.rb
Overview
Defined Under Namespace
Classes: Attachment
Instance Attribute Summary collapse
- #attachments ⇒ Array<SurgeAPI::Models::Blast::Attachment>?
-
#body ⇒ String?
The message body.
-
#id ⇒ String?
Unique identifier for the object.
-
#name ⇒ String?
Optional name for the blast.
-
#send_at ⇒ Time?
When the blast will be or was sent.
Method Summary
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, #initialize, 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
This class inherits a constructor from SurgeAPI::Internal::Type::BaseModel
Instance Attribute Details
#attachments ⇒ Array<SurgeAPI::Models::Blast::Attachment>?
16 |
# File 'lib/surge_api/models/blast.rb', line 16 optional :attachments, -> { SurgeAPI::Internal::Type::ArrayOf[SurgeAPI::Blast::Attachment] } |
#body ⇒ String?
The message body.
22 |
# File 'lib/surge_api/models/blast.rb', line 22 optional :body, String, nil?: true |
#id ⇒ String?
Unique identifier for the object.
11 |
# File 'lib/surge_api/models/blast.rb', line 11 optional :id, String |
#name ⇒ String?
Optional name for the blast.
28 |
# File 'lib/surge_api/models/blast.rb', line 28 optional :name, String |
#send_at ⇒ Time?
When the blast will be or was sent.
34 |
# File 'lib/surge_api/models/blast.rb', line 34 optional :send_at, Time |