payrex-ruby 1.6.0 → 1.7.0

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: 90efef918450a62a19f703909126086dbc6bd7e89fcb7062aeb9c98742eb058c
4
- data.tar.gz: b6bfa138c9539435de50ef30e0442d0b894d076a929ca1e4e384904aaa7c11a3
3
+ metadata.gz: 9e035f153412e1c6a560ae1c35830fd8c68605c7dc7d8bcc2fc2007a46d6b362
4
+ data.tar.gz: ed1b7537e908310ef222f950351731bfed5394986d959f85cefc44c08298b3bf
5
5
  SHA512:
6
- metadata.gz: e473ade720ec50ccd178a2617bee3a4f493fe153c4605127251c02891c2b7f43fb79e4b95368da4c9b7157035c1ed2efaf218f0cf1c031fbc39a81d2dd0ad0bf
7
- data.tar.gz: f10fc1268affe3497a99668b155478c3454ac99bb1a3b6c983aa2ab0e374d4c5120da09fc1d765f9f4a06b3579655bffe14d114b997684a41808fdb6c3669096
6
+ metadata.gz: 4d2566769ee1f4ba7dec2dad2af1387d0ebb22333ea44c4f34ef2e7099d9b2ca8713c0afe336e441e4dde6b6bc1e0c23cc7e4885f7d7619f0064f22e1d5aecee
7
+ data.tar.gz: b901ffd375e6f778229995d5faf1f79641bc9eff9f215f1b5581473976c8cb521cb245868752763642b5625d8adf6603fcced2cab0e6f7c7c89c743f7db57510
@@ -9,6 +9,7 @@ module Payrex
9
9
  :description,
10
10
  :due_at,
11
11
  :finalized_at,
12
+ :billing_statement_merchant_name,
12
13
  :billing_statement_number,
13
14
  :billing_statement_url,
14
15
  :line_items,
@@ -33,6 +34,7 @@ module Payrex
33
34
  @description = data["description"]
34
35
  @due_at = data["due_at"]
35
36
  @finalized_at = data["finalized_at"]
37
+ @billing_statement_merchant_name = data["billing_statement_merchant_name"]
36
38
  @billing_statement_number = data["billing_statement_number"]
37
39
  @billing_statement_url = data["billing_statement_url"]
38
40
  @line_items = data["line_items"]
@@ -3,7 +3,7 @@ module Payrex
3
3
  class PayoutTransaction
4
4
  attr_reader :id,
5
5
  :amount,
6
- :payout_id,
6
+ :net_amount,
7
7
  :transaction_type,
8
8
  :transaction_id,
9
9
  :created_at,
@@ -12,7 +12,7 @@ module Payrex
12
12
  def initialize(api_resource)
13
13
  @id = api_resource.data["id"]
14
14
  @amount = api_resource.data["amount"]
15
- @payout_id = api_resource.data["payout_id"]
15
+ @net_amount = api_resource.data["net_amount"]
16
16
  @transaction_type = api_resource.data["transaction_type"]
17
17
  @transaction_id = api_resource.data["transaction_id"]
18
18
  @created_at = api_resource.data["created_at"]
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: payrex-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - PayRex
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-05-30 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: PayRex Ruby Library
14
13
  email: support@payrexhq.com
@@ -59,7 +58,6 @@ homepage: https://www.payrexhq.com
59
58
  licenses:
60
59
  - MIT
61
60
  metadata: {}
62
- post_install_message:
63
61
  rdoc_options: []
64
62
  require_paths:
65
63
  - lib
@@ -74,8 +72,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
72
  - !ruby/object:Gem::Version
75
73
  version: '0'
76
74
  requirements: []
77
- rubygems_version: 3.5.9
78
- signing_key:
75
+ rubygems_version: 3.6.7
79
76
  specification_version: 4
80
77
  summary: PayRex Ruby
81
78
  test_files: []