Class: Google::Apis::PagespeedonlineV5::StackPack

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

Overview

Message containing Stack Pack information.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StackPack

Returns a new instance of StackPack.



1149
1150
1151
# File 'lib/google/apis/pagespeedonline_v5/classes.rb', line 1149

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

Instance Attribute Details

#descriptionsHash<String,String>

The stack pack advice strings. Corresponds to the JSON property descriptions

Returns:

  • (Hash<String,String>)


1132
1133
1134
# File 'lib/google/apis/pagespeedonline_v5/classes.rb', line 1132

def descriptions
  @descriptions
end

#icon_data_urlString

The stack pack icon data uri. Corresponds to the JSON property iconDataURL

Returns:

  • (String)


1137
1138
1139
# File 'lib/google/apis/pagespeedonline_v5/classes.rb', line 1137

def icon_data_url
  @icon_data_url
end

#idString

The stack pack id. Corresponds to the JSON property id

Returns:

  • (String)


1142
1143
1144
# File 'lib/google/apis/pagespeedonline_v5/classes.rb', line 1142

def id
  @id
end

#titleString

The stack pack title. Corresponds to the JSON property title

Returns:

  • (String)


1147
1148
1149
# File 'lib/google/apis/pagespeedonline_v5/classes.rb', line 1147

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1154
1155
1156
1157
1158
1159
# File 'lib/google/apis/pagespeedonline_v5/classes.rb', line 1154

def update!(**args)
  @descriptions = args[:descriptions] if args.key?(:descriptions)
  @icon_data_url = args[:icon_data_url] if args.key?(:icon_data_url)
  @id = args[:id] if args.key?(:id)
  @title = args[:title] if args.key?(:title)
end