Class: Google::Apis::CloudsearchV1::UpdateDraftActionMarkup
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::UpdateDraftActionMarkup
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Instance Attribute Summary collapse
-
#update_bcc_recipients ⇒ Google::Apis::CloudsearchV1::UpdateBccRecipients
If set, replaces the existing Bcc recipients of the draft the user is currently editing.
-
#update_body ⇒ Google::Apis::CloudsearchV1::UpdateBody
A field that contains a series of update actions to perform on the draft body that the user is currently editing.
-
#update_cc_recipients ⇒ Google::Apis::CloudsearchV1::UpdateCcRecipients
If set, replaces the existing Cc recipients of the draft the user is currently editing.
-
#update_subject ⇒ Google::Apis::CloudsearchV1::UpdateSubject
If set, replaces the existing subject of the draft the user is currently editing.
-
#update_to_recipients ⇒ Google::Apis::CloudsearchV1::UpdateToRecipients
If set, replaces the existing To recipients of the draft the user is currently editing.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpdateDraftActionMarkup
constructor
A new instance of UpdateDraftActionMarkup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UpdateDraftActionMarkup
Returns a new instance of UpdateDraftActionMarkup.
17913 17914 17915 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17913 def initialize(**args) update!(**args) end |
Instance Attribute Details
#update_bcc_recipients ⇒ Google::Apis::CloudsearchV1::UpdateBccRecipients
If set, replaces the existing Bcc recipients of the draft the user is
currently editing.
Corresponds to the JSON property updateBccRecipients
17887 17888 17889 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17887 def update_bcc_recipients @update_bcc_recipients end |
#update_body ⇒ Google::Apis::CloudsearchV1::UpdateBody
A field that contains a series of update actions to perform on the draft body
that the user is currently editing.
Corresponds to the JSON property updateBody
17893 17894 17895 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17893 def update_body @update_body end |
#update_cc_recipients ⇒ Google::Apis::CloudsearchV1::UpdateCcRecipients
If set, replaces the existing Cc recipients of the draft the user is currently
editing.
Corresponds to the JSON property updateCcRecipients
17899 17900 17901 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17899 def update_cc_recipients @update_cc_recipients end |
#update_subject ⇒ Google::Apis::CloudsearchV1::UpdateSubject
If set, replaces the existing subject of the draft the user is currently
editing.
Corresponds to the JSON property updateSubject
17905 17906 17907 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17905 def update_subject @update_subject end |
#update_to_recipients ⇒ Google::Apis::CloudsearchV1::UpdateToRecipients
If set, replaces the existing To recipients of the draft the user is currently
editing.
Corresponds to the JSON property updateToRecipients
17911 17912 17913 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17911 def update_to_recipients @update_to_recipients end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17918 17919 17920 17921 17922 17923 17924 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17918 def update!(**args) @update_bcc_recipients = args[:update_bcc_recipients] if args.key?(:update_bcc_recipients) @update_body = args[:update_body] if args.key?(:update_body) @update_cc_recipients = args[:update_cc_recipients] if args.key?(:update_cc_recipients) @update_subject = args[:update_subject] if args.key?(:update_subject) @update_to_recipients = args[:update_to_recipients] if args.key?(:update_to_recipients) end |