Class: HubSpotSDK::Models::Marketing::PublicSingleSendEmail
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- HubSpotSDK::Models::Marketing::PublicSingleSendEmail
- Defined in:
- lib/hubspot_sdk/models/marketing/public_single_send_email.rb
Instance Attribute Summary collapse
-
#bcc ⇒ Array<String>
List of email addresses to send as Bcc.
-
#cc ⇒ Array<String>
List of email addresses to send as Cc.
-
#from ⇒ String?
The From header for the email.
-
#reply_to ⇒ Array<String>
List of Reply-To header values for the email.
-
#send_id ⇒ String?
ID for a particular send.
-
#to ⇒ String?
The recipient of the email.
Instance Method Summary collapse
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(bcc:, cc:, reply_to:, from: nil, send_id: nil, to: nil) ⇒ Object
|
|
# File 'lib/hubspot_sdk/models/marketing/public_single_send_email.rb', line 43
|
Instance Attribute Details
#bcc ⇒ Array<String>
List of email addresses to send as Bcc.
11 |
# File 'lib/hubspot_sdk/models/marketing/public_single_send_email.rb', line 11 required :bcc, HubSpotSDK::Internal::Type::ArrayOf[String] |
#cc ⇒ Array<String>
List of email addresses to send as Cc.
17 |
# File 'lib/hubspot_sdk/models/marketing/public_single_send_email.rb', line 17 required :cc, HubSpotSDK::Internal::Type::ArrayOf[String] |
#from ⇒ String?
The From header for the email.
29 |
# File 'lib/hubspot_sdk/models/marketing/public_single_send_email.rb', line 29 optional :from, String |
#reply_to ⇒ Array<String>
List of Reply-To header values for the email.
23 |
# File 'lib/hubspot_sdk/models/marketing/public_single_send_email.rb', line 23 required :reply_to, HubSpotSDK::Internal::Type::ArrayOf[String], api_name: :replyTo |
#send_id ⇒ String?
ID for a particular send. No more than one email will be sent per sendId.
35 |
# File 'lib/hubspot_sdk/models/marketing/public_single_send_email.rb', line 35 optional :send_id, String, api_name: :sendId |
#to ⇒ String?
The recipient of the email.
41 |
# File 'lib/hubspot_sdk/models/marketing/public_single_send_email.rb', line 41 optional :to, String |