Class: Google::Apis::CloudsearchV1::AppsDynamiteStorageColumnsColumn

Inherits:
Object
  • Object
show all
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

Overview

Represents a Column that consists of widgets stacked vertically.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AppsDynamiteStorageColumnsColumn

Returns a new instance of AppsDynamiteStorageColumnsColumn.



2875
2876
2877
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2875

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

Instance Attribute Details

#horizontal_alignmentString

The horizontal alignment of the column. Corresponds to the JSON property horizontalAlignment

Returns:

  • (String)


2857
2858
2859
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2857

def horizontal_alignment
  @horizontal_alignment
end

#horizontal_size_styleString

Specifies how the column content is sized horizontally. Corresponds to the JSON property horizontalSizeStyle

Returns:

  • (String)


2862
2863
2864
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2862

def horizontal_size_style
  @horizontal_size_style
end

#vertical_alignmentString

The vertical alignment of the column. Corresponds to the JSON property verticalAlignment

Returns:

  • (String)


2867
2868
2869
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2867

def vertical_alignment
  @vertical_alignment
end

#widgetsArray<Google::Apis::CloudsearchV1::AppsDynamiteStorageColumnsColumnWidgets>

LINT.ThenChange(//depot/google3/google/apps/card/v1/card.proto) Array of widgets included in the column. Corresponds to the JSON property widgets



2873
2874
2875
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2873

def widgets
  @widgets
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2880
2881
2882
2883
2884
2885
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 2880

def update!(**args)
  @horizontal_alignment = args[:horizontal_alignment] if args.key?(:horizontal_alignment)
  @horizontal_size_style = args[:horizontal_size_style] if args.key?(:horizontal_size_style)
  @vertical_alignment = args[:vertical_alignment] if args.key?(:vertical_alignment)
  @widgets = args[:widgets] if args.key?(:widgets)
end