apimatic-ci-cd-test 1.0.1 → 1.0.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8cfbbd073fb6ad7ffec3a77b23449e3e9b630d78b85cb34efed9158a6ce0fbb2
4
- data.tar.gz: a67af5d1cc81d2974d421704c86b3446957b2ea9a745f31c4fa075adc3d94ee9
3
+ metadata.gz: d0867ee9fe3c5208aaec5e864f144346eb8e4509aaf0c3826f51fb34533fb0e8
4
+ data.tar.gz: e94ff978891a599d67c55da7f8ac43a7e8bff94e7436599751e1406e9d0ba6c8
5
5
  SHA512:
6
- metadata.gz: b143321f1d3ef6a62d18ceb7d8aa3ecfee8dc81b06001abc46df54397a46cbe612afd9a52756c2f6c0e0bff107660f5522001a6b022bd3aeb8dbf9fae5f38d71
7
- data.tar.gz: 2354076fb30ee05b863889a88f3cd7436348e53d59bd9536103b5ac72a07e67d4a374c8485054e895c2dd6a36e6a3a13e5f3afce4d96c924461ba7cd66d24d17
6
+ metadata.gz: 9201eb586bee5011aaa62246ef3f9682ad07ae87cefd84b864d4e39cc921b959d05d3ef9a6d8d6cd24779d4abfc3eef3284328427c49dbc82d6ba7b3ad2be713
7
+ data.tar.gz: 629c729efd99aa23e704143fb25ffec09ec0bb43d6f34ab4d158e8c5d2315937912fa0d7ddcb57458eefbb9176c28f79728e237b7b8fd321e9ad4ff948553ca5
data/README.md CHANGED
@@ -11,16 +11,16 @@ API for sending and managing payments
11
11
  Install the gem from the command line:
12
12
 
13
13
  ```ruby
14
- gem install apimatic-ci-cd-test -v 1.0.1
14
+ gem install apimatic-ci-cd-test -v 1.0.22
15
15
  ```
16
16
 
17
17
  Or add the gem to your Gemfile and run `bundle`:
18
18
 
19
19
  ```ruby
20
- gem 'apimatic-ci-cd-test', '1.0.1'
20
+ gem 'apimatic-ci-cd-test', '1.0.22'
21
21
  ```
22
22
 
23
- For additional gem details, see the [RubyGems page for the apimatic-ci-cd-test gem](https://rubygems.org/gems/apimatic-ci-cd-test/versions/1.0.1).
23
+ For additional gem details, see the [RubyGems page for the apimatic-ci-cd-test gem](https://rubygems.org/gems/apimatic-ci-cd-test/versions/1.0.22).
24
24
 
25
25
  ### Initialize the API Client
26
26
 
@@ -82,13 +82,13 @@ An instance of the `QuotesController` class can be accessed from the API Client.
82
82
  quotes_controller = client.quotes
83
83
  ```
84
84
 
85
- #### Create Quote
85
+ #### Create New Quote
86
86
 
87
87
  Create new Quote
88
88
 
89
89
  ```ruby
90
- def create_quote(bank_id,
91
- body)
90
+ def create_new_quote(bank_id,
91
+ body)
92
92
  ```
93
93
 
94
94
  ##### Parameters
@@ -116,7 +116,7 @@ body.exchange_rate = 1.2345
116
116
  body.locked = false
117
117
  body.revision = 1
118
118
 
119
- result = quotes_controller.create_quote(bank_id, body)
119
+ result = quotes_controller.create_new_quote(bank_id, body)
120
120
  ```
121
121
 
122
122
  ##### Example Response *(as JSON)*
@@ -14,8 +14,8 @@ module PaymentsApi
14
14
  # @param [String] bank_id Required parameter: Bank ID (Routing Number)
15
15
  # @param [Quote] body Required parameter: Quote data
16
16
  # @return [Quote] response from the API call
17
- def create_quote(bank_id,
18
- body)
17
+ def create_new_quote(bank_id,
18
+ body)
19
19
  # Prepare query url.
20
20
  _query_builder = config.get_base_uri
21
21
  _query_builder << '/quotes'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apimatic-ci-cd-test
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - APIMatic SDK Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-01 00:00:00.000000000 Z
11
+ date: 2021-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logging