Class: MasterCard::API::Qkr::Beneficiary
- Inherits:
-
Core::Model::BaseObject
- Object
- Core::Model::BaseObject
- MasterCard::API::Qkr::Beneficiary
- Includes:
- Core::Model
- Defined in:
- lib/mastercard/api/qkr/beneficiary.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/beneficiary.rb', line 63 def self.create(mapObj) # #Creates object of type Beneficiary # #@param Dict mapObj, containing the required parameters to create a new object #@return [Beneficiary] of the response of created instance. #@raise [APIException] an exception from the response status return self.execute("ceef4eca-f757-4b0d-a9b9-4681f48007be", Beneficiary.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/beneficiary.rb', line 82 def self.deleteById(id, map = nil) #Delete object of type Beneficiary by id #@param [String] id #@param [Dict] map, containing additional parameters #@return [Beneficiary] of the response of the deleted instance. #@raise [APIException] an exception from the response status mapObj = Beneficiary.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("48200200-18f0-4393-b32e-1837cd1ba78c", mapObj) end |
.query(criteria) ⇒ Object
127 128 129 130 131 132 133 134 135 136 |
# File 'lib/mastercard/api/qkr/beneficiary.rb', line 127 def self.query(criteria) # #Query objects of type Beneficiary by id and optional criteria #@param [Dict] criteria #@return [Beneficiary] object representing the response. #@raise [APIException] an exception from the response status # return self.execute("45f93f11-e3be-474e-a097-642aeae0e184",Beneficiary.new(criteria)) end |
Instance Method Details
#delete ⇒ Object
107 108 109 110 111 112 113 114 115 116 117 |
# File 'lib/mastercard/api/qkr/beneficiary.rb', line 107 def delete # #Delete object of type Beneficiary #@param [String] id #@return [Beneficiary] of the response of the deleted instance. #@raise [APIException] an exception from the response status # return self.class.execute("48200200-18f0-4393-b32e-1837cd1ba78c", self) end |
#update ⇒ Object
140 141 142 143 144 145 146 147 148 |
# File 'lib/mastercard/api/qkr/beneficiary.rb', line 140 def update # #Updates an object of type Beneficiary # #@return [Beneficiary] object representing the response. #@raise [APIException] an exception from the response status # return self.class.execute("73c94ecd-720f-448d-8a1f-82ce5083b34a",self) end |