Class: Crawlberg::ProxyConfig

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeProxyConfig

Returns a new instance of ProxyConfig.

Parameters:

  • url: (String)
  • username: (String)
  • password: (String)


27
# File 'sig/types.rbs', line 27

def initialize: (?url: String, ?username: String, ?password: String) -> void

Instance Attribute Details

#passwordString?

Returns the value of attribute password.

Returns:

  • (String, nil)


25
26
27
# File 'sig/types.rbs', line 25

def password
  @password
end

#urlString?

Returns the value of attribute url.

Returns:

  • (String, nil)


23
24
25
# File 'sig/types.rbs', line 23

def url
  @url
end

#usernameString?

Returns the value of attribute username.

Returns:

  • (String, nil)


24
25
26
# File 'sig/types.rbs', line 24

def username
  @username
end