Class: ProcessOut::Coupon
- Inherits:
-
Object
- Object
- ProcessOut::Coupon
- Defined in:
- lib/processout/coupon.rb
Instance Attribute Summary collapse
-
#amount_off ⇒ Object
Returns the value of attribute amount_off.
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#currency ⇒ Object
Returns the value of attribute currency.
-
#expires_at ⇒ Object
Returns the value of attribute expires_at.
-
#id ⇒ Object
Returns the value of attribute id.
-
#iteration_count ⇒ Object
Returns the value of attribute iteration_count.
-
#max_redemptions ⇒ Object
Returns the value of attribute max_redemptions.
-
#metadata ⇒ Object
Returns the value of attribute metadata.
-
#name ⇒ Object
Returns the value of attribute name.
-
#percent_off ⇒ Object
Returns the value of attribute percent_off.
-
#project ⇒ Object
Returns the value of attribute project.
-
#redeemed_number ⇒ Object
Returns the value of attribute redeemed_number.
-
#sandbox ⇒ Object
Returns the value of attribute sandbox.
Instance Method Summary collapse
-
#all(options = nil) ⇒ Object
Get all the coupons.
-
#create(options = nil) ⇒ Object
Create a new coupon.
-
#delete(options = nil) ⇒ Object
Delete the coupon.
-
#fill_with_data(data) ⇒ Object
- Fills the object with data coming from the API Params:
data -
Hashof data coming from the API.
- Fills the object with data coming from the API Params:
-
#find(coupon_id, options = nil) ⇒ Object
Find a coupon by its ID.
-
#initialize(client) ⇒ Coupon
constructor
- Initializes the Coupon object Params:
client -
ProcessOutclient instance.
- Initializes the Coupon object Params:
-
#save(options = nil) ⇒ Object
Save the updated coupon attributes.
Constructor Details
#initialize(client) ⇒ Coupon
Initializes the Coupon object Params:
client-
ProcessOutclient instance
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
# File 'lib/processout/coupon.rb', line 88 def initialize(client) @client = client @id = "" @project = nil @name = "" @amount_off = "" @percent_off = 0 @currency = "" @max_redemptions = 0 @expires_at = "" = Hash.new @iteration_count = 0 @redeemed_number = 0 @sandbox = false @created_at = "" end |
Instance Attribute Details
#amount_off ⇒ Object
Returns the value of attribute amount_off.
13 14 15 |
# File 'lib/processout/coupon.rb', line 13 def amount_off @amount_off end |
#created_at ⇒ Object
Returns the value of attribute created_at.
22 23 24 |
# File 'lib/processout/coupon.rb', line 22 def created_at @created_at end |
#currency ⇒ Object
Returns the value of attribute currency.
15 16 17 |
# File 'lib/processout/coupon.rb', line 15 def currency @currency end |
#expires_at ⇒ Object
Returns the value of attribute expires_at.
17 18 19 |
# File 'lib/processout/coupon.rb', line 17 def expires_at @expires_at end |
#id ⇒ Object
Returns the value of attribute id.
10 11 12 |
# File 'lib/processout/coupon.rb', line 10 def id @id end |
#iteration_count ⇒ Object
Returns the value of attribute iteration_count.
19 20 21 |
# File 'lib/processout/coupon.rb', line 19 def iteration_count @iteration_count end |
#max_redemptions ⇒ Object
Returns the value of attribute max_redemptions.
16 17 18 |
# File 'lib/processout/coupon.rb', line 16 def max_redemptions @max_redemptions end |
#metadata ⇒ Object
Returns the value of attribute metadata.
18 19 20 |
# File 'lib/processout/coupon.rb', line 18 def end |
#name ⇒ Object
Returns the value of attribute name.
12 13 14 |
# File 'lib/processout/coupon.rb', line 12 def name @name end |
#percent_off ⇒ Object
Returns the value of attribute percent_off.
14 15 16 |
# File 'lib/processout/coupon.rb', line 14 def percent_off @percent_off end |
#project ⇒ Object
Returns the value of attribute project.
11 12 13 |
# File 'lib/processout/coupon.rb', line 11 def project @project end |
#redeemed_number ⇒ Object
Returns the value of attribute redeemed_number.
20 21 22 |
# File 'lib/processout/coupon.rb', line 20 def redeemed_number @redeemed_number end |
#sandbox ⇒ Object
Returns the value of attribute sandbox.
21 22 23 |
# File 'lib/processout/coupon.rb', line 21 def sandbox @sandbox end |
Instance Method Details
#all(options = nil) ⇒ Object
Get all the coupons. Params:
options-
Hashof options
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'lib/processout/coupon.rb', line 157 def all( = nil) request = Request.new(@client) path = "/coupons" data = { } response = Response.new(request.get(path, data, )) return_values = Array.new a = Array.new body = response.body for v in body['coupons'] tmp = Coupon(@client) tmp.fill_with_data(v) a.push(tmp) end return_values.push(a) return_values[0] end |
#create(options = nil) ⇒ Object
Create a new coupon. Params:
options-
Hashof options
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
# File 'lib/processout/coupon.rb', line 185 def create( = nil) request = Request.new(@client) path = "/coupons" data = { "id": @id, "amount_off": @amount_off, "percent_off": @percent_off, "currency": @currency, "iteration_count": @iteration_count, "max_redemptions": @max_redemptions, "expires_at": @expires_at, "metadata": } response = Response.new(request.post(path, data, )) return_values = Array.new body = response.body body = body["coupon"] return_values.push(self.fill_with_data(body)) return_values[0] end |
#delete(options = nil) ⇒ Object
Delete the coupon. Params:
options-
Hashof options
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 |
# File 'lib/processout/coupon.rb', line 266 def delete( = nil) request = Request.new(@client) path = "/coupons/" + CGI.escape(@id) + "" data = { } response = Response.new(request.delete(path, data, )) return_values = Array.new return_values.push(response.success) return_values[0] end |
#fill_with_data(data) ⇒ Object
Fills the object with data coming from the API Params:
data-
Hashof data coming from the API
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
# File 'lib/processout/coupon.rb', line 110 def fill_with_data(data) if data.include? "id" @id = data["id"] end if data.include? "project" @project = data["project"] end if data.include? "name" @name = data["name"] end if data.include? "amount_off" @amount_off = data["amount_off"] end if data.include? "percent_off" @percent_off = data["percent_off"] end if data.include? "currency" @currency = data["currency"] end if data.include? "max_redemptions" @max_redemptions = data["max_redemptions"] end if data.include? "expires_at" @expires_at = data["expires_at"] end if data.include? "metadata" = data["metadata"] end if data.include? "iteration_count" @iteration_count = data["iteration_count"] end if data.include? "redeemed_number" @redeemed_number = data["redeemed_number"] end if data.include? "sandbox" @sandbox = data["sandbox"] end if data.include? "created_at" @created_at = data["created_at"] end self end |
#find(coupon_id, options = nil) ⇒ Object
Find a coupon by its ID. Params:
coupon_id-
ID of the coupon
options-
Hashof options
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 |
# File 'lib/processout/coupon.rb', line 217 def find(coupon_id, = nil) request = Request.new(@client) path = "/coupons/" + CGI.escape(coupon_id) + "" data = { } response = Response.new(request.get(path, data, )) return_values = Array.new body = response.body body = body["coupon"] obj = Coupon.new(@client) return_values.push(obj.fill_with_data(body)) return_values[0] end |
#save(options = nil) ⇒ Object
Save the updated coupon attributes. Params:
options-
Hashof options
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'lib/processout/coupon.rb', line 242 def save( = nil) request = Request.new(@client) path = "/coupons/" + CGI.escape(@id) + "" data = { "metadata": } response = Response.new(request.put(path, data, )) return_values = Array.new body = response.body body = body["coupon"] return_values.push(self.fill_with_data(body)) return_values[0] end |