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)


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

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

Instance Attribute Details

#passwordString? (readonly)

Returns the value of attribute password.

Returns:

  • (String, nil)


414
415
416
# File 'sig/types.rbs', line 414

def password
  @password
end

#urlString (readonly)

Returns the value of attribute url.

Returns:

  • (String)


412
413
414
# File 'sig/types.rbs', line 412

def url
  @url
end

#usernameString? (readonly)

Returns the value of attribute username.

Returns:

  • (String, nil)


413
414
415
# File 'sig/types.rbs', line 413

def username
  @username
end