module Skyhook::Core::ISteamRemoteStorage
Public Instance Methods
collection_details()
click to toggle source
TODO finish implementing this
# File lib/skyhook/i_steam_remote_storage.rb, line 9 def collection_details;end
published_file_details()
click to toggle source
# File lib/skyhook/i_steam_remote_storage.rb, line 10 def published_file_details;end
ugcf_file_details( ugcid, appid, options = {} )
click to toggle source
# File lib/skyhook/i_steam_remote_storage.rb, line 12 def ugcf_file_details( ugcid, appid, options = {} ) steamid = Skyhook::Core::ISteamUser.resolve_vanity options[:steamid] unless options.empty? response = parent.request 'ISteamRemoteStorage/GetUGCFileDetails/v1/', ugcid: ugcid, appid: appid, steamid: steamid if response['status']['code'] == 9 raise StandardError else response['data'] end end