Class: Io::Flow::V0::Models::FtpUser
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::FtpUser
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#password ⇒ Object
readonly
Returns the value of attribute password.
-
#username ⇒ Object
readonly
Returns the value of attribute username.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ FtpUser
constructor
A new instance of FtpUser.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ FtpUser
Returns a new instance of FtpUser.
29204 29205 29206 29207 29208 29209 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29204 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:username], 'FtpUser') @username = HttpClient::Preconditions.assert_class('username', opts.delete(:username), String) @password = (x = opts.delete(:password); x.nil? ? nil : HttpClient::Preconditions.assert_class('password', x, String)) end |
Instance Attribute Details
#password ⇒ Object (readonly)
Returns the value of attribute password.
29202 29203 29204 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29202 def password @password end |
#username ⇒ Object (readonly)
Returns the value of attribute username.
29202 29203 29204 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29202 def username @username end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
29215 29216 29217 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29215 def copy(incoming={}) FtpUser.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
29219 29220 29221 29222 29223 29224 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29219 def to_hash { :username => username, :password => password } end |
#to_json ⇒ Object
29211 29212 29213 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29211 def to_json JSON.dump(to_hash) end |