Class: Io::Flow::V0::Models::FtpAccount
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::FtpAccount
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
The FTP Account is your username and password to access this FTP server.
Instance Attribute Summary collapse
-
#server ⇒ Object
readonly
Returns the value of attribute server.
-
#user ⇒ Object
readonly
Returns the value of attribute user.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ FtpAccount
constructor
A new instance of FtpAccount.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ FtpAccount
Returns a new instance of FtpAccount.
33657 33658 33659 33660 33661 33662 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33657 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:server, :user], 'FtpAccount') @server = (x = opts.delete(:server); x.is_a?(::Io::Flow::V0::Models::FtpServer) ? x : ::Io::Flow::V0::Models::FtpServer.new(x)) @user = (x = opts.delete(:user); x.is_a?(::Io::Flow::V0::Models::FtpUser) ? x : ::Io::Flow::V0::Models::FtpUser.new(x)) end |
Instance Attribute Details
#server ⇒ Object (readonly)
Returns the value of attribute server.
33655 33656 33657 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33655 def server @server end |
#user ⇒ Object (readonly)
Returns the value of attribute user.
33655 33656 33657 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33655 def user @user end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
33668 33669 33670 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33668 def copy(incoming={}) FtpAccount.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
33672 33673 33674 33675 33676 33677 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33672 def to_hash { :server => server.to_hash, :user => user.to_hash } end |
#to_json ⇒ Object
33664 33665 33666 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33664 def to_json JSON.dump(to_hash) end |