Class: Io::Flow::V0::Models::FtpFileForm

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Overview

Create a file that will be uploaded to this organization’s FTP Server

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ FtpFileForm

Returns a new instance of FtpFileForm.



40443
40444
40445
40446
40447
40448
40449
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40443

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:url, :directory], 'FtpFileForm')
  @url = HttpClient::Preconditions.assert_class('url', opts.delete(:url), String)
  @directory = HttpClient::Preconditions.assert_class('directory', opts.delete(:directory), String)
  @name = (x = opts.delete(:name); x.nil? ? nil : HttpClient::Preconditions.assert_class('name', x, String))
end

Instance Attribute Details

#directoryObject (readonly)

Returns the value of attribute directory.



40441
40442
40443
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40441

def directory
  @directory
end

#nameObject (readonly)

Returns the value of attribute name.



40441
40442
40443
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40441

def name
  @name
end

#urlObject (readonly)

Returns the value of attribute url.



40441
40442
40443
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40441

def url
  @url
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



40455
40456
40457
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40455

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

#to_hashObject



40459
40460
40461
40462
40463
40464
40465
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40459

def to_hash
  {
    :url => url,
    :directory => directory,
    :name => name
  }
end

#to_jsonObject



40451
40452
40453
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40451

def to_json
  JSON.dump(to_hash)
end