class Laximo::Respond::VehicleWithListCategories

Public Class Methods

parsing_result(str) click to toggle source
# File lib/laximo/respond/oem/vehicle_with_list_categories.rb, line 8
def self.parsing_result(str)

  {

    get_catalog_info: GetCatalogInfo.parsing_result(str),
    get_vehicle_info: GetVehicleInfo.parsing_result(str),
    list_categories:  ListCategories.parsing_result(str)

  }

end