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)


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

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

Instance Attribute Details

#passwordString?

Returns the value of attribute password.

Returns:

  • (String, nil)


2088
2089
2090
# File 'sig/types.rbs', line 2088

def password
  @password
end

#urlString?

Returns the value of attribute url.

Returns:

  • (String, nil)


2086
2087
2088
# File 'sig/types.rbs', line 2086

def url
  @url
end

#usernameString?

Returns the value of attribute username.

Returns:

  • (String, nil)


2087
2088
2089
# File 'sig/types.rbs', line 2087

def username
  @username
end