Class: Google::Apis::DocsV1::DeleteHeaderRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/docs_v1/classes.rb,
generated/google/apis/docs_v1/representations.rb,
generated/google/apis/docs_v1/representations.rb

Overview

Deletes a Header from the document.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DeleteHeaderRequest

Returns a new instance of DeleteHeaderRequest.



725
726
727
# File 'generated/google/apis/docs_v1/classes.rb', line 725

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#header_idString

The id of the header to delete. If this header is defined on DocumentStyle, the reference to this header is removed, resulting in no header of that type for the first section of the document. If this header is defined on a SectionStyle, the reference to this header is removed and the header of that type is now continued from the previous section. Corresponds to the JSON property headerId

Returns:

  • (String)


723
724
725
# File 'generated/google/apis/docs_v1/classes.rb', line 723

def header_id
  @header_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



730
731
732
# File 'generated/google/apis/docs_v1/classes.rb', line 730

def update!(**args)
  @header_id = args[:header_id] if args.key?(:header_id)
end