class MasterCard::API::Qkr::UserImage
Public Class Methods
create(mapObj)
click to toggle source
# File lib/mastercard/api/qkr/userimage.rb, line 61 def self.create(mapObj) # #Creates object of type UserImage # #@param Dict mapObj, containing the required parameters to create a new object #@return [UserImage] of the response of created instance. #@raise [APIException] an exception from the response status return self.execute("e12bcc2e-fd1b-4099-8c46-2e3ad43bf270", UserImage.new(mapObj)) end
deleteById(id, map = nil)
click to toggle source
# File lib/mastercard/api/qkr/userimage.rb, line 80 def self.deleteById(id, map = nil) #Delete object of type UserImage by id #@param [String] id #@param [Dict] map, containing additional parameters #@return [UserImage] of the response of the deleted instance. #@raise [APIException] an exception from the response status mapObj = UserImage.new if !(id.nil? || id.to_s.empty?) mapObj.set("id", id) end if !map.nil? if map.instance_of? RequestMap mapObj.setAll(map.getObject()) else mapObj.setAll(map) end end return self.execute("c66023a7-edfc-41b6-8367-0af59ed80369", mapObj) end
Protected Class Methods
getOperationConfig(operationUUID)
click to toggle source
# File lib/mastercard/api/qkr/userimage.rb, line 47 def self.getOperationConfig(operationUUID) if @__store.key?(operationUUID) return @__store[operationUUID] end raise NotImplementedError.new("Invalid operationUUID supplied:"+ operationUUID) end
getOperationMetadata()
click to toggle source
# File lib/mastercard/api/qkr/userimage.rb, line 54 def self.getOperationMetadata() return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext(), ResourceConfig.instance.getJsonNative(), ResourceConfig.instance.getContentTypeOverride()) end
Public Instance Methods
delete()
click to toggle source
# File lib/mastercard/api/qkr/userimage.rb, line 105 def delete # #Delete object of type UserImage #@param [String] id #@return [UserImage] of the response of the deleted instance. #@raise [APIException] an exception from the response status # return self.class.execute("c66023a7-edfc-41b6-8367-0af59ed80369", self) end