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)


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

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

Instance Attribute Details

#passwordString?

Returns the value of attribute password.

Returns:

  • (String, nil)


2192
2193
2194
# File 'sig/types.rbs', line 2192

def password
  @password
end

#urlString?

Returns the value of attribute url.

Returns:

  • (String, nil)


2190
2191
2192
# File 'sig/types.rbs', line 2190

def url
  @url
end

#usernameString?

Returns the value of attribute username.

Returns:

  • (String, nil)


2191
2192
2193
# File 'sig/types.rbs', line 2191

def username
  @username
end