Class: Google::Apis::CloudsearchV1::UpdateBody
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::UpdateBody
- 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
-
#insert_contents ⇒ Array<Google::Apis::CloudsearchV1::InsertContent>
A repeated field that contains a series of content to insert into the draft that the user is currently editing.
-
#type ⇒ String
Corresponds to the JSON property
type
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpdateBody
constructor
A new instance of UpdateBody.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UpdateBody
Returns a new instance of UpdateBody.
21057 21058 21059 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 21057 def initialize(**args) update!(**args) end |
Instance Attribute Details
#insert_contents ⇒ Array<Google::Apis::CloudsearchV1::InsertContent>
A repeated field that contains a series of content to insert into the draft
that the user is currently editing. The content can contain HTML content or
plain text content.
Corresponds to the JSON property insertContents
21050 21051 21052 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 21050 def insert_contents @insert_contents end |
#type ⇒ String
Corresponds to the JSON property type
21055 21056 21057 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 21055 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
21062 21063 21064 21065 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 21062 def update!(**args) @insert_contents = args[:insert_contents] if args.key?(:insert_contents) @type = args[:type] if args.key?(:type) end |