Class: GpWebpay::Http::ExternalUrl
- Inherits:
-
Object
- Object
- GpWebpay::Http::ExternalUrl
- Defined in:
- lib/gp_webpay/http/external_url.rb
Instance Attribute Summary collapse
-
#full_url ⇒ Object
Returns the value of attribute full_url.
-
#params ⇒ Object
Returns the value of attribute params.
-
#url ⇒ Object
Returns the value of attribute url.
Instance Method Summary collapse
-
#initialize(url:, full_url:, params:) ⇒ ExternalUrl
constructor
A new instance of ExternalUrl.
Constructor Details
#initialize(url:, full_url:, params:) ⇒ ExternalUrl
Returns a new instance of ExternalUrl.
6 7 8 9 10 |
# File 'lib/gp_webpay/http/external_url.rb', line 6 def initialize(url:, full_url:, params:) @url = url @full_url = full_url @params = params end |
Instance Attribute Details
#full_url ⇒ Object
Returns the value of attribute full_url.
4 5 6 |
# File 'lib/gp_webpay/http/external_url.rb', line 4 def full_url @full_url end |
#params ⇒ Object
Returns the value of attribute params.
4 5 6 |
# File 'lib/gp_webpay/http/external_url.rb', line 4 def params @params end |
#url ⇒ Object
Returns the value of attribute url.
4 5 6 |
# File 'lib/gp_webpay/http/external_url.rb', line 4 def url @url end |