Class: Io::Flow::V0::Models::FtpAccount

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ FtpAccount

Returns a new instance of FtpAccount.



33057
33058
33059
33060
33061
33062
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33057

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

#serverObject (readonly)

Returns the value of attribute server.



33055
33056
33057
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33055

def server
  @server
end

#userObject (readonly)

Returns the value of attribute user.



33055
33056
33057
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33055

def user
  @user
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



33068
33069
33070
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33068

def copy(incoming={})
  FtpAccount.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



33072
33073
33074
33075
33076
33077
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33072

def to_hash
  {
    :server => server.to_hash,
    :user => user.to_hash
  }
end

#to_jsonObject



33064
33065
33066
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33064

def to_json
  JSON.dump(to_hash)
end