Class: Frame::ChargeIntent
Constant Summary
collapse
- OBJECT_NAME =
"charge_intent"
Instance Attribute Summary
Attributes inherited from FrameObject
#id, #original_values
Class Method Summary
collapse
-
.cancel(id, params = {}, opts = {}) ⇒ Object
-
.capture(id, params = {}, opts = {}) ⇒ Object
-
.confirm(id, params = {}, opts = {}) ⇒ Object
-
.create(params = {}, opts = {}) ⇒ Object
-
.list(params = {}, opts = {}) ⇒ Object
-
.object_name ⇒ Object
-
.retrieve(id, opts = {}) ⇒ Object
-
.void_remaining(id, params = {}, opts = {}) ⇒ Object
Instance Method Summary
collapse
create
list
#serialize_params
Methods inherited from APIResource
class_name, #refresh, resource_url, #resource_url
included
Methods inherited from FrameObject
#[], #[]=, construct_from, #each, #initialize, #initialize_from, #inspect, #keys, #serialize_params, #to_hash, #to_s, #update_attributes, #values
Class Method Details
.cancel(id, params = {}, opts = {}) ⇒ Object
88
89
90
91
92
93
94
95
|
# File 'lib/frame/resources/charge_intent.rb', line 88
def self.cancel(id, params = {}, opts = {})
request_object(
:post,
"/v1/charge_intents/#{CGI.escape(id)}/cancel",
params,
opts
)
end
|
.capture(id, params = {}, opts = {}) ⇒ Object
70
71
72
73
74
75
76
77
|
# File 'lib/frame/resources/charge_intent.rb', line 70
def self.capture(id, params = {}, opts = {})
request_object(
:post,
"/v1/charge_intents/#{CGI.escape(id)}/capture",
params,
opts
)
end
|
.confirm(id, params = {}, opts = {}) ⇒ Object
52
53
54
55
56
57
58
59
|
# File 'lib/frame/resources/charge_intent.rb', line 52
def self.confirm(id, params = {}, opts = {})
request_object(
:post,
"/v1/charge_intents/#{CGI.escape(id)}/confirm",
params,
opts
)
end
|
.create(params = {}, opts = {}) ⇒ Object
15
16
17
18
19
20
21
22
|
# File 'lib/frame/resources/charge_intent.rb', line 15
def self.create(params = {}, opts = {})
request_object(
:post,
"/v1/charge_intents",
params,
opts
)
end
|
.list(params = {}, opts = {}) ⇒ Object
24
25
26
27
28
29
30
31
|
# File 'lib/frame/resources/charge_intent.rb', line 24
def self.list(params = {}, opts = {})
request_object(
:get,
"/v1/charge_intents",
params,
opts
)
end
|
.object_name ⇒ Object
11
12
13
|
# File 'lib/frame/resources/charge_intent.rb', line 11
def self.object_name
OBJECT_NAME
end
|
.retrieve(id, opts = {}) ⇒ Object
33
34
35
36
37
38
39
40
41
|
# File 'lib/frame/resources/charge_intent.rb', line 33
def self.retrieve(id, opts = {})
id = Util.normalize_id(id)
request_object(
:get,
"/v1/charge_intents/#{CGI.escape(id)}",
{},
opts
)
end
|
.void_remaining(id, params = {}, opts = {}) ⇒ Object
106
107
108
109
110
111
112
113
|
# File 'lib/frame/resources/charge_intent.rb', line 106
def self.void_remaining(id, params = {}, opts = {})
request_object(
:post,
"/v1/charge_intents/#{CGI.escape(id)}/void_remaining",
params,
opts
)
end
|
Instance Method Details
#cancel(params = {}, opts = {}) ⇒ Object
79
80
81
82
83
84
85
86
|
# File 'lib/frame/resources/charge_intent.rb', line 79
def cancel(params = {}, opts = {})
request_object(
:post,
"/v1/charge_intents/#{CGI.escape(self["id"])}/cancel",
params,
opts
)
end
|
#capture(params = {}, opts = {}) ⇒ Object
61
62
63
64
65
66
67
68
|
# File 'lib/frame/resources/charge_intent.rb', line 61
def capture(params = {}, opts = {})
request_object(
:post,
"/v1/charge_intents/#{CGI.escape(self["id"])}/capture",
params,
opts
)
end
|
#confirm(params = {}, opts = {}) ⇒ Object
43
44
45
46
47
48
49
50
|
# File 'lib/frame/resources/charge_intent.rb', line 43
def confirm(params = {}, opts = {})
request_object(
:post,
"/v1/charge_intents/#{CGI.escape(self["id"])}/confirm",
params,
opts
)
end
|
#save(params = {}, opts = {}) ⇒ Object
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
# File 'lib/frame/resources/charge_intent.rb', line 115
def save(params = {}, opts = {})
values = serialize_params(self).merge(params)
if values.empty?
return self
end
updated = request_object(
:patch,
"/v1/charge_intents/#{CGI.escape(self["id"])}",
values,
opts
)
initialize_from(updated)
self
end
|
#void_remaining(params = {}, opts = {}) ⇒ Object
97
98
99
100
101
102
103
104
|
# File 'lib/frame/resources/charge_intent.rb', line 97
def void_remaining(params = {}, opts = {})
request_object(
:post,
"/v1/charge_intents/#{CGI.escape(self["id"])}/void_remaining",
params,
opts
)
end
|