Class: MasterCard::API::Qkr::Order

Inherits:
Core::Model::BaseObject
  • Object
show all
Includes:
Core::Model
Defined in:
lib/mastercard/api/qkr/order.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.create(mapObj) ⇒ Object



63
64
65
66
67
68
69
70
71
# File 'lib/mastercard/api/qkr/order.rb', line 63

def self.create(mapObj)
    #
    #Creates object of type Order
    #
    #@param Dict mapObj, containing the required parameters to create a new object
    #@return [Order] of the response of created instance.
    #@raise [APIException] an exception from the response status
    return self.execute("e0a0b4a1-1805-4a52-a731-8bf7ab448fc9", Order.new(mapObj))
end

.deleteById(id, map = nil) ⇒ Object



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# File 'lib/mastercard/api/qkr/order.rb', line 82

def self.deleteById(id, map = nil)
    #Delete object of type Order by id

    #@param [String] id
    #@param [Dict] map, containing additional parameters
    #@return [Order] of the response of the deleted instance.
    #@raise [APIException] an exception from the response status


    mapObj = Order.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("e4d30151-a10f-43d8-b803-42ef41881237", mapObj)
end

.read(id, criteria = nil) ⇒ Object



126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# File 'lib/mastercard/api/qkr/order.rb', line 126

def self.read(id, criteria = nil)
    #
    #Returns objects of type Order by id and optional criteria
    #@param [String] id
    #@param [Dict] criteria
    #@return [Order] object representing the response
    #@raise [APIException] an exception from the response status

    mapObj = Order.new
    if !(id.nil? || id.to_s.empty?)
      mapObj.set("id", id)
    end
    if !criteria.nil?
        if criteria.instance_of? RequestMap
          mapObj.setAll(criteria.getObject())
        else
          mapObj.setAll(criteria)
        end
    end

    return self.execute("6062912f-d4d3-4c28-9c50-f7ec56b29df6",Order.new(mapObj))
end

Instance Method Details

#deleteObject



107
108
109
110
111
112
113
114
115
116
117
# File 'lib/mastercard/api/qkr/order.rb', line 107

def delete
    #
    #Delete object of type Order

    #@param [String] id
    #@return [Order] of the response of the deleted instance.
    #@raise [APIException] an exception from the response status
    #

    return self.class.execute("e4d30151-a10f-43d8-b803-42ef41881237", self)
end

#updateObject



152
153
154
155
156
157
158
159
160
# File 'lib/mastercard/api/qkr/order.rb', line 152

def update
    #
    #Updates an object of type Order
    #
    #@return [Order] object representing the response.
    #@raise [APIException] an exception from the response status
    #
    return self.class.execute("ca1fe4a4-7139-4f00-bf3d-a78e68facd32",self)
end