Class: GpWebpay::Http::ExternalUrl

Inherits:
Object
  • Object
show all
Defined in:
lib/gp_webpay/http/external_url.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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_urlObject

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

#paramsObject

Returns the value of attribute params.



4
5
6
# File 'lib/gp_webpay/http/external_url.rb', line 4

def params
  @params
end

#urlObject

Returns the value of attribute url.



4
5
6
# File 'lib/gp_webpay/http/external_url.rb', line 4

def url
  @url
end