mercadopago-sdk 1.2.0 → 2.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.editorconfig +10 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +28 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +19 -0
- data/.github/workflows/ruby.yml +35 -0
- data/.rubocop.yml +1 -0
- data/.rubocop_todo.yml +104 -0
- data/.ruby-version +1 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/CODING_GUIDELINES.md +70 -0
- data/CONTRIBUTING.md +57 -0
- data/Gemfile +8 -0
- data/Gemfile.lock +51 -12
- data/LICENSE.txt +21 -0
- data/README.md +45 -117
- data/Rakefile +3 -1
- data/docs/CODE_OF_CONDUCT_md.html +154 -0
- data/docs/CODING_GUIDELINES_md.html +188 -0
- data/docs/CONTRIBUTING_md.html +165 -0
- data/docs/LICENSE_txt.html +96 -0
- data/docs/Mercadopago/AdvancedPayment.html +279 -0
- data/docs/Mercadopago/Card.html +204 -0
- data/docs/Mercadopago/CardToken.html +160 -0
- data/docs/Mercadopago/Config.html +266 -0
- data/docs/Mercadopago/Customer.html +228 -0
- data/docs/Mercadopago/DisbursementRefund.html +183 -0
- data/docs/Mercadopago/HttpClient.html +249 -0
- data/docs/Mercadopago/IdentificationType.html +136 -0
- data/docs/Mercadopago/MPBase.html +316 -0
- data/docs/Mercadopago/MerchantOrder.html +209 -0
- data/docs/Mercadopago/Payment.html +208 -0
- data/docs/Mercadopago/PaymentMethods.html +136 -0
- data/docs/Mercadopago/Preference.html +184 -0
- data/docs/Mercadopago/Refund.html +160 -0
- data/docs/Mercadopago/RequestOptions.html +433 -0
- data/docs/Mercadopago/SDK.html +528 -0
- data/docs/Mercadopago/User.html +136 -0
- data/docs/Mercadopago.html +123 -0
- data/docs/README_md.html +181 -0
- data/docs/created.rid +25 -0
- data/docs/css/fonts.css +167 -0
- data/docs/css/rdoc.css +619 -0
- data/docs/fonts/Lato-Light.ttf +0 -0
- data/docs/fonts/Lato-LightItalic.ttf +0 -0
- data/docs/fonts/Lato-Regular.ttf +0 -0
- data/docs/fonts/Lato-RegularItalic.ttf +0 -0
- data/docs/fonts/SourceCodePro-Bold.ttf +0 -0
- data/docs/fonts/SourceCodePro-Regular.ttf +0 -0
- data/docs/images/add.png +0 -0
- data/docs/images/arrow_up.png +0 -0
- data/docs/images/brick.png +0 -0
- data/docs/images/brick_link.png +0 -0
- data/docs/images/bug.png +0 -0
- data/docs/images/bullet_black.png +0 -0
- data/docs/images/bullet_toggle_minus.png +0 -0
- data/docs/images/bullet_toggle_plus.png +0 -0
- data/docs/images/date.png +0 -0
- data/docs/images/delete.png +0 -0
- data/docs/images/find.png +0 -0
- data/docs/images/loadingAnimation.gif +0 -0
- data/docs/images/macFFBgHack.png +0 -0
- data/docs/images/package.png +0 -0
- data/docs/images/page_green.png +0 -0
- data/docs/images/page_white_text.png +0 -0
- data/docs/images/page_white_width.png +0 -0
- data/docs/images/plugin.png +0 -0
- data/docs/images/ruby.png +0 -0
- data/docs/images/tag_blue.png +0 -0
- data/docs/images/tag_green.png +0 -0
- data/docs/images/transparent.png +0 -0
- data/docs/images/wrench.png +0 -0
- data/docs/images/wrench_orange.png +0 -0
- data/docs/images/zoom.png +0 -0
- data/docs/index.html +109 -0
- data/docs/js/darkfish.js +84 -0
- data/docs/js/navigation.js +105 -0
- data/docs/js/navigation.js.gz +0 -0
- data/docs/js/search.js +110 -0
- data/docs/js/search_index.js +1 -0
- data/docs/js/search_index.js.gz +0 -0
- data/docs/js/searcher.js +229 -0
- data/docs/js/searcher.js.gz +0 -0
- data/docs/table_of_contents.html +562 -0
- data/lib/mercadopago/config/config.rb +42 -0
- data/lib/mercadopago/config/request_options.rb +85 -0
- data/lib/mercadopago/core/mp_base.rb +77 -0
- data/lib/mercadopago/http/http_client.rb +74 -0
- data/lib/mercadopago/resources/advanced_payment.rb +48 -0
- data/lib/mercadopago/resources/card.rb +31 -0
- data/lib/mercadopago/resources/card_token.rb +19 -0
- data/lib/mercadopago/resources/customer.rb +36 -0
- data/lib/mercadopago/resources/disbursement_refund.rb +24 -0
- data/lib/mercadopago/resources/identification_type.rb +13 -0
- data/lib/mercadopago/resources/merchant_order.rb +32 -0
- data/lib/mercadopago/resources/payment.rb +35 -0
- data/lib/mercadopago/resources/payment_methods.rb +13 -0
- data/lib/mercadopago/resources/preference.rb +26 -0
- data/lib/mercadopago/resources/refund.rb +24 -0
- data/lib/mercadopago/resources/user.rb +13 -0
- data/lib/mercadopago/sdk.rb +85 -0
- data/lib/mercadopago.rb +24 -389
- data/mercadopago.gemspec +15 -15
- data/tests/test_card.rb +78 -0
- data/tests/test_card_token.rb +39 -0
- data/tests/test_customer.rb +54 -0
- data/tests/test_identification_type.rb +16 -0
- data/tests/test_merchant_order.rb +94 -0
- data/tests/test_payment.rb +102 -0
- data/tests/test_payment_methods.rb +14 -0
- data/tests/test_preference.rb +49 -0
- data/tests/test_refund.rb +88 -0
- data/tests/test_refund_with_custom_headers.rb +97 -0
- data/tests/test_user.rb +17 -0
- data/tests/tests.rb +13 -56
- metadata +155 -36
- data/.travis.yml +0 -14
- data/examples/checkout-buttons/basic_preference/button.rb +0 -28
- data/examples/instant-payment-notifications/receive-ipn.rb +0 -25
- data/examples/payment-search/search-approved-payments.rb +0 -23
- data/examples/payment-search/search-creditcard-payments.rb +0 -23
- data/examples/payment-search/search-funded-payments-by-name.rb +0 -23
- data/examples/payment-search/search-payments-from-email-and-date.rb +0 -23
- data/examples/payment-search/search-payments.rb +0 -23
- data/examples/preapproval-payments/button.rb +0 -42
- data/lib/ssl_options_patch.rb +0 -15
- data/lib/version.rb +0 -2
- data/travis_Gemfile +0 -4
@@ -0,0 +1,165 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta charset="UTF-8">
|
6
|
+
|
7
|
+
<title>CONTRIBUTING - RDoc Documentation</title>
|
8
|
+
|
9
|
+
<script type="text/javascript">
|
10
|
+
var rdoc_rel_prefix = "./";
|
11
|
+
var index_rel_prefix = "./";
|
12
|
+
</script>
|
13
|
+
|
14
|
+
<script src="./js/navigation.js" defer></script>
|
15
|
+
<script src="./js/search.js" defer></script>
|
16
|
+
<script src="./js/search_index.js" defer></script>
|
17
|
+
<script src="./js/searcher.js" defer></script>
|
18
|
+
<script src="./js/darkfish.js" defer></script>
|
19
|
+
|
20
|
+
<link href="./css/fonts.css" rel="stylesheet">
|
21
|
+
<link href="./css/rdoc.css" rel="stylesheet">
|
22
|
+
|
23
|
+
|
24
|
+
<body id="top" role="document" class="file">
|
25
|
+
<nav role="navigation">
|
26
|
+
<div id="project-navigation">
|
27
|
+
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
|
28
|
+
<h2>
|
29
|
+
<a href="./index.html" rel="home">Home</a>
|
30
|
+
</h2>
|
31
|
+
|
32
|
+
<div id="table-of-contents-navigation">
|
33
|
+
<a href="./table_of_contents.html#pages">Pages</a>
|
34
|
+
<a href="./table_of_contents.html#classes">Classes</a>
|
35
|
+
<a href="./table_of_contents.html#methods">Methods</a>
|
36
|
+
</div>
|
37
|
+
</div>
|
38
|
+
|
39
|
+
<div id="search-section" role="search" class="project-section initially-hidden">
|
40
|
+
<form action="#" method="get" accept-charset="utf-8">
|
41
|
+
<div id="search-field-wrapper">
|
42
|
+
<input id="search-field" role="combobox" aria-label="Search"
|
43
|
+
aria-autocomplete="list" aria-controls="search-results"
|
44
|
+
type="text" name="search" placeholder="Search" spellcheck="false"
|
45
|
+
title="Type to search, Up and Down to navigate, Enter to load">
|
46
|
+
</div>
|
47
|
+
|
48
|
+
<ul id="search-results" aria-label="Search Results"
|
49
|
+
aria-busy="false" aria-expanded="false"
|
50
|
+
aria-atomic="false" class="initially-hidden"></ul>
|
51
|
+
</form>
|
52
|
+
</div>
|
53
|
+
|
54
|
+
</div>
|
55
|
+
|
56
|
+
|
57
|
+
<div class="nav-section">
|
58
|
+
<h3>Table of Contents</h3>
|
59
|
+
|
60
|
+
<ul class="link-list" role="directory">
|
61
|
+
<li><a href="#label-Contributing+to+the+Mercado+Pago+Ruby+SDK">Contributing to the Mercado Pago Ruby SDK</a>
|
62
|
+
<li><a href="#label-How+to+contribute">How to contribute</a>
|
63
|
+
<li><a href="#label-Coding+Guidance">Coding Guidance</a>
|
64
|
+
<li><a href="#label-Request+For+Change+-2F+Feature+Request">Request For Change / Feature Request</a>
|
65
|
+
<li><a href="#label-Bug+Reports">Bug Reports</a>
|
66
|
+
<li><a href="#label-Pull+Request">Pull Request</a>
|
67
|
+
</ul>
|
68
|
+
</div>
|
69
|
+
|
70
|
+
|
71
|
+
<div id="project-metadata">
|
72
|
+
|
73
|
+
<div id="fileindex-section" class="nav-section">
|
74
|
+
<h3>Pages</h3>
|
75
|
+
|
76
|
+
<ul class="link-list">
|
77
|
+
<li><a href="./CODE_OF_CONDUCT_md.html">CODE_OF_CONDUCT</a>
|
78
|
+
<li><a href="./CODING_GUIDELINES_md.html">CODING_GUIDELINES</a>
|
79
|
+
<li><a href="./CONTRIBUTING_md.html">CONTRIBUTING</a>
|
80
|
+
<li><a href="./LICENSE_txt.html">LICENSE</a>
|
81
|
+
<li><a href="./README_md.html">README</a>
|
82
|
+
</ul>
|
83
|
+
</div>
|
84
|
+
|
85
|
+
</div>
|
86
|
+
</nav>
|
87
|
+
|
88
|
+
<main role="main" aria-label="Page CONTRIBUTING.md">
|
89
|
+
|
90
|
+
<h1 id="label-Contributing+to+the+Mercado+Pago+Ruby+SDK">Contributing to the Mercado Pago Ruby SDK<span><a href="#label-Contributing+to+the+Mercado+Pago+Ruby+SDK">¶</a> <a href="#top">↑</a></span></h1>
|
91
|
+
|
92
|
+
<p>Thank you for your interest in contributing to the Mercado Pago Ruby SDK!</p>
|
93
|
+
|
94
|
+
<h2 id="label-How+to+contribute">How to contribute<span><a href="#label-How+to+contribute">¶</a> <a href="#top">↑</a></span></h2>
|
95
|
+
|
96
|
+
<p>In order to contribute to the Mercado Pago Ruby SDK effectively we provide guidelines to address common case for contributions. Presently we have guides for the following type of changes.</p>
|
97
|
+
<ul><li>
|
98
|
+
<p>Request For Change (RFC) / Feature Request: These are suggestions / requests for features the SDK currently does not have. The SDK team evaluates these requests for adequacy / relevance / capacity and overall architectural consistency.</p>
|
99
|
+
</li><li>
|
100
|
+
<p>Bug Reports: These are reports of non compliant behavior with the SDK specification and other blatantly wrong behavior of the Mercado Pago Ruby SDK.</p>
|
101
|
+
</li></ul>
|
102
|
+
|
103
|
+
<p>In addition to contributing in the form of Bug Reports and RFCs it is also possible to contribute directly in code with a Pull Request (PR). In the case of a Pull Request you should also indicate the nature of the Pull Request (Feature/Bug/etc.) to help the team asses the Pull Request. If you are enthusiastic about a particular Feature being added or a bug being fixed, a PR is often the quickest way to promote your change as the team does not have to allocate as much resources to process the contribution.</p>
|
104
|
+
|
105
|
+
<p>In the case of PRs it is often best to consult with the SDK team before embarking on a PR, specially if it's a beefy one. Spending time on a PR that might later be rejected because major discrepancies with vision or competing contributions is an uncomfortable outcome for all involved people. Remember the SDK team with privilege overall consistency and progress over any one particular contribution.</p>
|
106
|
+
|
107
|
+
<h2 id="label-Coding+Guidance">Coding Guidance<span><a href="#label-Coding+Guidance">¶</a> <a href="#top">↑</a></span></h2>
|
108
|
+
|
109
|
+
<p>All contributions <em>MUST</em> follow the <a href="CODING_GUIDELINES.md">Coding Guidelines</a>. Contributions that fail to follow this guidelines will be disregarded and told to make the required modifications to do so.</p>
|
110
|
+
|
111
|
+
<h2 id="label-Request+For+Change+-2F+Feature+Request">Request For Change / Feature Request<span><a href="#label-Request+For+Change+-2F+Feature+Request">¶</a> <a href="#top">↑</a></span></h2>
|
112
|
+
|
113
|
+
<p>Generally speaking an RFC is needed when you want to add a new feature or change an existing one in an incompatible way that might result in a major version bump to the toolkit.</p>
|
114
|
+
|
115
|
+
<p>Though it seems a little bureaucratic, the process is in place in order to avoid frustration of a potential contributor by making the discussions take place before any code is written. Once the design and direction is fully agreed then the contributor can work peacefully knowing that their change will be committed.</p>
|
116
|
+
|
117
|
+
<p>As of this moment all you need to do is create an issue and use the <a href=".github/ISSUE_TEMPLATE/feature_request.md">Feature Request Template</a>.</p>
|
118
|
+
|
119
|
+
<p>Please prepend your issue title with <code>[RFC]</code> so that's easier to filter.</p>
|
120
|
+
|
121
|
+
<h2 id="label-Bug+Reports">Bug Reports<span><a href="#label-Bug+Reports">¶</a> <a href="#top">↑</a></span></h2>
|
122
|
+
|
123
|
+
<p>Bugs are a reality in software. We can't fix what we don't know about, so please report liberally. If you're not sure if something is a bug or not, feel free to file it anyway.</p>
|
124
|
+
|
125
|
+
<p>Before reporting a bug, please search existing issues and pull requests, as it's possible that someone else has already reported your error. In the off case that you find your issue as fixed/closed, please add a reference to it on your new one.</p>
|
126
|
+
|
127
|
+
<p>Your issue should contain a title and a clear description of the issue. You should also include as much relevant information as possible and a code sample that demonstrates the issue. The goal of a bug report is to make it easy for yourself - and others - to replicate the bug and develop a fix.</p>
|
128
|
+
|
129
|
+
<p>Opening an issue is as easy as following <a href="https://github.com/mercadopago/sdk-dotnet/issues/new">this link</a> and filling out the given template.</p>
|
130
|
+
|
131
|
+
<p>Bug reports may also be sent in the form of a <a href="#pull-request">pull request</a> containing a failing test.</p>
|
132
|
+
|
133
|
+
<h2 id="label-Pull+Request">Pull Request<span><a href="#label-Pull+Request">¶</a> <a href="#top">↑</a></span></h2>
|
134
|
+
|
135
|
+
<p>First and foremost: Source code, documentation, commit messages, review comments, and any other kind of contribution must <em>MUST</em> follow the <a href="CODING_GUIDELINES.md">Coding Guidelines</a>.</p>
|
136
|
+
|
137
|
+
<p>We use the “fork and pull” model <a href="https://help.github.com/articles/about-collaborative-development-models/">described here</a>, where contributors push changes to their personal fork and create pull requests to bring those changes into the source repository.</p>
|
138
|
+
|
139
|
+
<p>Your basic steps to get going:</p>
|
140
|
+
<ul><li>
|
141
|
+
<p>Fork the corresponding toolkit repository and create a branch from master for the issue you are working on.</p>
|
142
|
+
</li><li>
|
143
|
+
<p>Commit as you go following our git conventions.</p>
|
144
|
+
</li><li>
|
145
|
+
<p>Include tests that cover all non-trivial code. The existing tests should provide a template on how to test the toolkit correctly.</p>
|
146
|
+
</li><li>
|
147
|
+
<p>Make sure all test passes.</p>
|
148
|
+
</li><li>
|
149
|
+
<p>All code changes are expected to comply with the formatting style.</p>
|
150
|
+
</li><li>
|
151
|
+
<p>Push your commits to GitHub and create a pull request against the corresponding toolkit component master branch.</p>
|
152
|
+
</li></ul>
|
153
|
+
|
154
|
+
<p>If taking to much time to deliver code, <strong>always</strong> <a href="https://git-scm.com/docs/git-rebase">rebase</a> towards <code>master</code> before asking for a review, and avoid reverse merge commits.</p>
|
155
|
+
|
156
|
+
</main>
|
157
|
+
|
158
|
+
|
159
|
+
|
160
|
+
<footer id="validator-badges" role="contentinfo">
|
161
|
+
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
162
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.0.
|
163
|
+
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
164
|
+
</footer>
|
165
|
+
|
@@ -0,0 +1,96 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta charset="UTF-8">
|
6
|
+
|
7
|
+
<title>LICENSE - RDoc Documentation</title>
|
8
|
+
|
9
|
+
<script type="text/javascript">
|
10
|
+
var rdoc_rel_prefix = "./";
|
11
|
+
var index_rel_prefix = "./";
|
12
|
+
</script>
|
13
|
+
|
14
|
+
<script src="./js/navigation.js" defer></script>
|
15
|
+
<script src="./js/search.js" defer></script>
|
16
|
+
<script src="./js/search_index.js" defer></script>
|
17
|
+
<script src="./js/searcher.js" defer></script>
|
18
|
+
<script src="./js/darkfish.js" defer></script>
|
19
|
+
|
20
|
+
<link href="./css/fonts.css" rel="stylesheet">
|
21
|
+
<link href="./css/rdoc.css" rel="stylesheet">
|
22
|
+
|
23
|
+
|
24
|
+
<body id="top" role="document" class="file">
|
25
|
+
<nav role="navigation">
|
26
|
+
<div id="project-navigation">
|
27
|
+
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
|
28
|
+
<h2>
|
29
|
+
<a href="./index.html" rel="home">Home</a>
|
30
|
+
</h2>
|
31
|
+
|
32
|
+
<div id="table-of-contents-navigation">
|
33
|
+
<a href="./table_of_contents.html#pages">Pages</a>
|
34
|
+
<a href="./table_of_contents.html#classes">Classes</a>
|
35
|
+
<a href="./table_of_contents.html#methods">Methods</a>
|
36
|
+
</div>
|
37
|
+
</div>
|
38
|
+
|
39
|
+
<div id="search-section" role="search" class="project-section initially-hidden">
|
40
|
+
<form action="#" method="get" accept-charset="utf-8">
|
41
|
+
<div id="search-field-wrapper">
|
42
|
+
<input id="search-field" role="combobox" aria-label="Search"
|
43
|
+
aria-autocomplete="list" aria-controls="search-results"
|
44
|
+
type="text" name="search" placeholder="Search" spellcheck="false"
|
45
|
+
title="Type to search, Up and Down to navigate, Enter to load">
|
46
|
+
</div>
|
47
|
+
|
48
|
+
<ul id="search-results" aria-label="Search Results"
|
49
|
+
aria-busy="false" aria-expanded="false"
|
50
|
+
aria-atomic="false" class="initially-hidden"></ul>
|
51
|
+
</form>
|
52
|
+
</div>
|
53
|
+
|
54
|
+
</div>
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
<div id="project-metadata">
|
59
|
+
|
60
|
+
<div id="fileindex-section" class="nav-section">
|
61
|
+
<h3>Pages</h3>
|
62
|
+
|
63
|
+
<ul class="link-list">
|
64
|
+
<li><a href="./CODE_OF_CONDUCT_md.html">CODE_OF_CONDUCT</a>
|
65
|
+
<li><a href="./CODING_GUIDELINES_md.html">CODING_GUIDELINES</a>
|
66
|
+
<li><a href="./CONTRIBUTING_md.html">CONTRIBUTING</a>
|
67
|
+
<li><a href="./LICENSE_txt.html">LICENSE</a>
|
68
|
+
<li><a href="./README_md.html">README</a>
|
69
|
+
</ul>
|
70
|
+
</div>
|
71
|
+
|
72
|
+
</div>
|
73
|
+
</nav>
|
74
|
+
|
75
|
+
<main role="main" aria-label="Page LICENSE.txt">
|
76
|
+
|
77
|
+
<p>The MIT License (MIT)</p>
|
78
|
+
|
79
|
+
<p>Copyright © 2021 Mercado Pago</p>
|
80
|
+
|
81
|
+
<p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</p>
|
82
|
+
|
83
|
+
<p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</p>
|
84
|
+
|
85
|
+
<p>THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>
|
86
|
+
|
87
|
+
</main>
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
<footer id="validator-badges" role="contentinfo">
|
92
|
+
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
93
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.0.
|
94
|
+
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
95
|
+
</footer>
|
96
|
+
|
@@ -0,0 +1,279 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta charset="UTF-8">
|
6
|
+
|
7
|
+
<title>class Mercadopago::AdvancedPayment - RDoc Documentation</title>
|
8
|
+
|
9
|
+
<script type="text/javascript">
|
10
|
+
var rdoc_rel_prefix = "../";
|
11
|
+
var index_rel_prefix = "../";
|
12
|
+
</script>
|
13
|
+
|
14
|
+
<script src="../js/navigation.js" defer></script>
|
15
|
+
<script src="../js/search.js" defer></script>
|
16
|
+
<script src="../js/search_index.js" defer></script>
|
17
|
+
<script src="../js/searcher.js" defer></script>
|
18
|
+
<script src="../js/darkfish.js" defer></script>
|
19
|
+
|
20
|
+
<link href="../css/fonts.css" rel="stylesheet">
|
21
|
+
<link href="../css/rdoc.css" rel="stylesheet">
|
22
|
+
|
23
|
+
|
24
|
+
<body id="top" role="document" class="class">
|
25
|
+
<nav role="navigation">
|
26
|
+
<div id="project-navigation">
|
27
|
+
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
|
28
|
+
<h2>
|
29
|
+
<a href="../index.html" rel="home">Home</a>
|
30
|
+
</h2>
|
31
|
+
|
32
|
+
<div id="table-of-contents-navigation">
|
33
|
+
<a href="../table_of_contents.html#pages">Pages</a>
|
34
|
+
<a href="../table_of_contents.html#classes">Classes</a>
|
35
|
+
<a href="../table_of_contents.html#methods">Methods</a>
|
36
|
+
</div>
|
37
|
+
</div>
|
38
|
+
|
39
|
+
<div id="search-section" role="search" class="project-section initially-hidden">
|
40
|
+
<form action="#" method="get" accept-charset="utf-8">
|
41
|
+
<div id="search-field-wrapper">
|
42
|
+
<input id="search-field" role="combobox" aria-label="Search"
|
43
|
+
aria-autocomplete="list" aria-controls="search-results"
|
44
|
+
type="text" name="search" placeholder="Search" spellcheck="false"
|
45
|
+
title="Type to search, Up and Down to navigate, Enter to load">
|
46
|
+
</div>
|
47
|
+
|
48
|
+
<ul id="search-results" aria-label="Search Results"
|
49
|
+
aria-busy="false" aria-expanded="false"
|
50
|
+
aria-atomic="false" class="initially-hidden"></ul>
|
51
|
+
</form>
|
52
|
+
</div>
|
53
|
+
|
54
|
+
</div>
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
<div id="class-metadata">
|
59
|
+
|
60
|
+
|
61
|
+
<div id="parent-class-section" class="nav-section">
|
62
|
+
<h3>Parent</h3>
|
63
|
+
|
64
|
+
<p class="link"><a href="MPBase.html">Mercadopago::MPBase</a>
|
65
|
+
</div>
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
|
70
|
+
<!-- Method Quickref -->
|
71
|
+
<div id="method-list-section" class="nav-section">
|
72
|
+
<h3>Methods</h3>
|
73
|
+
|
74
|
+
<ul class="link-list" role="directory">
|
75
|
+
<li ><a href="#method-i-cancel">#cancel</a>
|
76
|
+
<li ><a href="#method-i-capture">#capture</a>
|
77
|
+
<li ><a href="#method-i-create">#create</a>
|
78
|
+
<li ><a href="#method-i-get">#get</a>
|
79
|
+
<li ><a href="#method-i-search">#search</a>
|
80
|
+
<li ><a href="#method-i-update">#update</a>
|
81
|
+
<li ><a href="#method-i-update_release_date">#update_release_date</a>
|
82
|
+
</ul>
|
83
|
+
</div>
|
84
|
+
|
85
|
+
</div>
|
86
|
+
</nav>
|
87
|
+
|
88
|
+
<main role="main" aria-labelledby="class-Mercadopago::AdvancedPayment">
|
89
|
+
<h1 id="class-Mercadopago::AdvancedPayment" class="class">
|
90
|
+
class Mercadopago::AdvancedPayment
|
91
|
+
</h1>
|
92
|
+
|
93
|
+
<section class="description">
|
94
|
+
|
95
|
+
<p>Access to Advanced Payments</p>
|
96
|
+
|
97
|
+
</section>
|
98
|
+
|
99
|
+
<section id="5Buntitled-5D" class="documentation-section">
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
<section id="public-instance-5Buntitled-5D-method-details" class="method-section">
|
106
|
+
<header>
|
107
|
+
<h3>Public Instance Methods</h3>
|
108
|
+
</header>
|
109
|
+
|
110
|
+
<div id="method-i-cancel" class="method-detail ">
|
111
|
+
<div class="method-heading">
|
112
|
+
<span class="method-name">cancel</span><span
|
113
|
+
class="method-args">(advanced_payment_id, request_options: nil)</span>
|
114
|
+
<span class="method-click-advice">click to toggle source</span>
|
115
|
+
</div>
|
116
|
+
|
117
|
+
<div class="method-description">
|
118
|
+
|
119
|
+
|
120
|
+
<div class="method-source-code" id="cancel-source">
|
121
|
+
<pre><span class="ruby-comment"># File lib/mercadopago/resources/advanced_payment.rb, line 37</span>
|
122
|
+
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">cancel</span>(<span class="ruby-identifier">advanced_payment_id</span>, <span class="ruby-value">request_options:</span> <span class="ruby-keyword">nil</span>)
|
123
|
+
<span class="ruby-identifier">cancel_data</span> = { <span class="ruby-value">status:</span> <span class="ruby-string">'cancelled'</span> }
|
124
|
+
<span class="ruby-identifier">_put</span>(<span class="ruby-value">uri:</span> <span class="ruby-node">"/v1/advanced_payments/#{advanced_payment_id}"</span>, <span class="ruby-value">data:</span> <span class="ruby-identifier">cancel_data</span>, <span class="ruby-value">request_options:</span> <span class="ruby-identifier">request_options</span>)
|
125
|
+
<span class="ruby-keyword">end</span></pre>
|
126
|
+
</div>
|
127
|
+
</div>
|
128
|
+
|
129
|
+
|
130
|
+
</div>
|
131
|
+
|
132
|
+
<div id="method-i-capture" class="method-detail ">
|
133
|
+
<div class="method-heading">
|
134
|
+
<span class="method-name">capture</span><span
|
135
|
+
class="method-args">(advanced_payment_id, request_options: nil)</span>
|
136
|
+
<span class="method-click-advice">click to toggle source</span>
|
137
|
+
</div>
|
138
|
+
|
139
|
+
<div class="method-description">
|
140
|
+
|
141
|
+
|
142
|
+
<div class="method-source-code" id="capture-source">
|
143
|
+
<pre><span class="ruby-comment"># File lib/mercadopago/resources/advanced_payment.rb, line 25</span>
|
144
|
+
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">capture</span>(<span class="ruby-identifier">advanced_payment_id</span>, <span class="ruby-value">request_options:</span> <span class="ruby-keyword">nil</span>)
|
145
|
+
<span class="ruby-identifier">capture_data</span> = { <span class="ruby-value">capture:</span> <span class="ruby-keyword">true</span> }
|
146
|
+
<span class="ruby-identifier">_put</span>(<span class="ruby-value">uri:</span> <span class="ruby-node">"/v1/advanced_payments/#{advanced_payment_id}"</span>, <span class="ruby-value">data:</span> <span class="ruby-identifier">capture_data</span>, <span class="ruby-value">request_options:</span> <span class="ruby-identifier">request_options</span>)
|
147
|
+
<span class="ruby-keyword">end</span></pre>
|
148
|
+
</div>
|
149
|
+
</div>
|
150
|
+
|
151
|
+
|
152
|
+
</div>
|
153
|
+
|
154
|
+
<div id="method-i-create" class="method-detail ">
|
155
|
+
<div class="method-heading">
|
156
|
+
<span class="method-name">create</span><span
|
157
|
+
class="method-args">(advanced_payment_data, request_options: nil)</span>
|
158
|
+
<span class="method-click-advice">click to toggle source</span>
|
159
|
+
</div>
|
160
|
+
|
161
|
+
<div class="method-description">
|
162
|
+
|
163
|
+
|
164
|
+
<div class="method-source-code" id="create-source">
|
165
|
+
<pre><span class="ruby-comment"># File lib/mercadopago/resources/advanced_payment.rb, line 19</span>
|
166
|
+
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">create</span>(<span class="ruby-identifier">advanced_payment_data</span>, <span class="ruby-value">request_options:</span> <span class="ruby-keyword">nil</span>)
|
167
|
+
<span class="ruby-identifier">raise</span> <span class="ruby-constant">TypeError</span>, <span class="ruby-string">'Param advanced_payment_data must be a Hash'</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">advanced_payment_data</span>.<span class="ruby-identifier">is_a?</span>(<span class="ruby-constant">Hash</span>)
|
168
|
+
|
169
|
+
<span class="ruby-identifier">_post</span>(<span class="ruby-value">uri:</span> <span class="ruby-string">'/v1/advanced_payments'</span>, <span class="ruby-value">data:</span> <span class="ruby-identifier">advanced_payment_data</span>, <span class="ruby-value">request_options:</span> <span class="ruby-identifier">request_options</span>)
|
170
|
+
<span class="ruby-keyword">end</span></pre>
|
171
|
+
</div>
|
172
|
+
</div>
|
173
|
+
|
174
|
+
|
175
|
+
</div>
|
176
|
+
|
177
|
+
<div id="method-i-get" class="method-detail ">
|
178
|
+
<div class="method-heading">
|
179
|
+
<span class="method-name">get</span><span
|
180
|
+
class="method-args">(advanced_payment_id, request_options: nil)</span>
|
181
|
+
<span class="method-click-advice">click to toggle source</span>
|
182
|
+
</div>
|
183
|
+
|
184
|
+
<div class="method-description">
|
185
|
+
|
186
|
+
|
187
|
+
<div class="method-source-code" id="get-source">
|
188
|
+
<pre><span class="ruby-comment"># File lib/mercadopago/resources/advanced_payment.rb, line 15</span>
|
189
|
+
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">get</span>(<span class="ruby-identifier">advanced_payment_id</span>, <span class="ruby-value">request_options:</span> <span class="ruby-keyword">nil</span>)
|
190
|
+
<span class="ruby-identifier">_get</span>(<span class="ruby-value">uri:</span> <span class="ruby-node">"/v1/advanced_payments/#{advanced_payment_id}"</span>, <span class="ruby-value">request_options:</span> <span class="ruby-identifier">request_options</span>)
|
191
|
+
<span class="ruby-keyword">end</span></pre>
|
192
|
+
</div>
|
193
|
+
</div>
|
194
|
+
|
195
|
+
|
196
|
+
</div>
|
197
|
+
|
198
|
+
<div id="method-i-search" class="method-detail ">
|
199
|
+
<div class="method-heading">
|
200
|
+
<span class="method-name">search</span><span
|
201
|
+
class="method-args">(filters: nil, request_options: nil)</span>
|
202
|
+
<span class="method-click-advice">click to toggle source</span>
|
203
|
+
</div>
|
204
|
+
|
205
|
+
<div class="method-description">
|
206
|
+
|
207
|
+
|
208
|
+
<div class="method-source-code" id="search-source">
|
209
|
+
<pre><span class="ruby-comment"># File lib/mercadopago/resources/advanced_payment.rb, line 9</span>
|
210
|
+
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">search</span>(<span class="ruby-value">filters:</span> <span class="ruby-keyword">nil</span>, <span class="ruby-value">request_options:</span> <span class="ruby-keyword">nil</span>)
|
211
|
+
<span class="ruby-identifier">raise</span> <span class="ruby-constant">TypeError</span>, <span class="ruby-string">'Param filters must be a Hash'</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">filters</span>.<span class="ruby-identifier">nil?</span> <span class="ruby-operator">||</span> <span class="ruby-identifier">filters</span>.<span class="ruby-identifier">is_a?</span>(<span class="ruby-constant">Hash</span>)
|
212
|
+
|
213
|
+
<span class="ruby-identifier">_get</span>(<span class="ruby-value">uri:</span> <span class="ruby-string">'/v1/advanced_payments/search'</span>, <span class="ruby-value">filters:</span> <span class="ruby-identifier">filters</span>, <span class="ruby-value">request_options:</span> <span class="ruby-identifier">request_options</span>)
|
214
|
+
<span class="ruby-keyword">end</span></pre>
|
215
|
+
</div>
|
216
|
+
</div>
|
217
|
+
|
218
|
+
|
219
|
+
</div>
|
220
|
+
|
221
|
+
<div id="method-i-update" class="method-detail ">
|
222
|
+
<div class="method-heading">
|
223
|
+
<span class="method-name">update</span><span
|
224
|
+
class="method-args">(advanced_payment_id, advanced_payment_data, request_options: nil)</span>
|
225
|
+
<span class="method-click-advice">click to toggle source</span>
|
226
|
+
</div>
|
227
|
+
|
228
|
+
<div class="method-description">
|
229
|
+
|
230
|
+
|
231
|
+
<div class="method-source-code" id="update-source">
|
232
|
+
<pre><span class="ruby-comment"># File lib/mercadopago/resources/advanced_payment.rb, line 30</span>
|
233
|
+
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">update</span>(<span class="ruby-identifier">advanced_payment_id</span>, <span class="ruby-identifier">advanced_payment_data</span>, <span class="ruby-value">request_options:</span> <span class="ruby-keyword">nil</span>)
|
234
|
+
<span class="ruby-identifier">raise</span> <span class="ruby-constant">TypeError</span>, <span class="ruby-string">'Param advanced_payment_data must be a Hash'</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">advanced_payment_data</span>.<span class="ruby-identifier">is_a?</span>(<span class="ruby-constant">Hash</span>)
|
235
|
+
|
236
|
+
<span class="ruby-identifier">_put</span>(<span class="ruby-value">uri:</span> <span class="ruby-node">"/v1/advanced_payments/#{advanced_payment_id}"</span>, <span class="ruby-value">data:</span> <span class="ruby-identifier">advanced_payment_data</span>,
|
237
|
+
<span class="ruby-value">request_options:</span> <span class="ruby-identifier">request_options</span>)
|
238
|
+
<span class="ruby-keyword">end</span></pre>
|
239
|
+
</div>
|
240
|
+
</div>
|
241
|
+
|
242
|
+
|
243
|
+
</div>
|
244
|
+
|
245
|
+
<div id="method-i-update_release_date" class="method-detail ">
|
246
|
+
<div class="method-heading">
|
247
|
+
<span class="method-name">update_release_date</span><span
|
248
|
+
class="method-args">(advanced_payment_id, release_date, request_options: nil)</span>
|
249
|
+
<span class="method-click-advice">click to toggle source</span>
|
250
|
+
</div>
|
251
|
+
|
252
|
+
<div class="method-description">
|
253
|
+
|
254
|
+
|
255
|
+
<div class="method-source-code" id="update_release_date-source">
|
256
|
+
<pre><span class="ruby-comment"># File lib/mercadopago/resources/advanced_payment.rb, line 42</span>
|
257
|
+
<span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">update_release_date</span>(<span class="ruby-identifier">advanced_payment_id</span>, <span class="ruby-identifier">release_date</span>, <span class="ruby-value">request_options:</span> <span class="ruby-keyword">nil</span>)
|
258
|
+
<span class="ruby-identifier">disbursement_data</span> = { <span class="ruby-value">money_release_date:</span> <span class="ruby-identifier">release_date</span>.<span class="ruby-identifier">strftime</span>(<span class="ruby-string">'%Y-%m-%d %H:%M:%S.%f'</span>) }
|
259
|
+
<span class="ruby-identifier">_post</span>(<span class="ruby-value">uri:</span> <span class="ruby-node">"/v1/advanced_payments/#{advanced_payment_id}/disburses"</span>, <span class="ruby-value">data:</span> <span class="ruby-identifier">disbursement_data</span>,
|
260
|
+
<span class="ruby-value">request_options:</span> <span class="ruby-identifier">request_options</span>)
|
261
|
+
<span class="ruby-keyword">end</span></pre>
|
262
|
+
</div>
|
263
|
+
</div>
|
264
|
+
|
265
|
+
|
266
|
+
</div>
|
267
|
+
|
268
|
+
</section>
|
269
|
+
|
270
|
+
</section>
|
271
|
+
</main>
|
272
|
+
|
273
|
+
|
274
|
+
<footer id="validator-badges" role="contentinfo">
|
275
|
+
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
276
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.0.
|
277
|
+
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
278
|
+
</footer>
|
279
|
+
|