Class: Google::Apis::DocsV1::PositionedObjectProperties

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

Overview

Properties of a PositionedObject.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PositionedObjectProperties

Returns a new instance of PositionedObjectProperties.



4246
4247
4248
# File 'lib/google/apis/docs_v1/classes.rb', line 4246

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

Instance Attribute Details

#embedded_objectGoogle::Apis::DocsV1::EmbeddedObject

An embedded object in the document. Corresponds to the JSON property embeddedObject



4238
4239
4240
# File 'lib/google/apis/docs_v1/classes.rb', line 4238

def embedded_object
  @embedded_object
end

#positioningGoogle::Apis::DocsV1::PositionedObjectPositioning

The positioning of a PositionedObject. The positioned object is positioned relative to the beginning of the Paragraph it's tethered to. Corresponds to the JSON property positioning



4244
4245
4246
# File 'lib/google/apis/docs_v1/classes.rb', line 4244

def positioning
  @positioning
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4251
4252
4253
4254
# File 'lib/google/apis/docs_v1/classes.rb', line 4251

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