Class: Google::Apis::SlidesV1::Dimension

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

Overview

A magnitude in a single direction in the specified units.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Dimension

Returns a new instance of Dimension

[View source]

532
533
534
# File 'generated/google/apis/slides_v1/classes.rb', line 532

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

Instance Attribute Details

#magnitudeFloat

The magnitude. Corresponds to the JSON property magnitude

Returns:

  • (Float)

525
526
527
# File 'generated/google/apis/slides_v1/classes.rb', line 525

def magnitude
  @magnitude
end

#unitString

The units for magnitude. Corresponds to the JSON property unit

Returns:

  • (String)

530
531
532
# File 'generated/google/apis/slides_v1/classes.rb', line 530

def unit
  @unit
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

537
538
539
540
# File 'generated/google/apis/slides_v1/classes.rb', line 537

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