class ManageIQ::API::Client::ProductInfo

Attributes

name[R]
name_full[R]
support_website[R]
support_website_text[R]

Public Class Methods

new(product_info) click to toggle source
# File lib/manageiq/api/client/product_info.rb, line 11
def initialize(product_info)
  @name, @name_full, @copyright, @support_website, @support_website_text =
    product_info.values_at("name", "name_full", "copyright", "support_website", "support_website_text")
end