Class: Xberg::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)


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

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

Instance Attribute Details

#passwordString? (readonly)

Returns the value of attribute password.

Returns:

  • (String, nil)


2200
2201
2202
# File 'sig/types.rbs', line 2200

def password
  @password
end

#urlString (readonly)

Returns the value of attribute url.

Returns:

  • (String)


2198
2199
2200
# File 'sig/types.rbs', line 2198

def url
  @url
end

#usernameString? (readonly)

Returns the value of attribute username.

Returns:

  • (String, nil)


2199
2200
2201
# File 'sig/types.rbs', line 2199

def username
  @username
end