class Google::Apis::DocsV1::Footnote
A document footnote.
Attributes
content[RW]
The contents of the footnote. The indexes for a footnote's content begin at zero. Corresponds to the JSON property `content` @return [Array<Google::Apis::DocsV1::StructuralElement>]
footnote_id[RW]
The ID of the footnote. Corresponds to the JSON property `footnoteId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/docs_v1/classes.rb, line 1649 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/docs_v1/classes.rb, line 1654 def update!(**args) @content = args[:content] if args.key?(:content) @footnote_id = args[:footnote_id] if args.key?(:footnote_id) end