Class: Io::Flow::V0::Models::FtpUser

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ FtpUser

Returns a new instance of FtpUser.



33352
33353
33354
33355
33356
33357
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33352

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

#passwordObject (readonly)

Returns the value of attribute password.



33350
33351
33352
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33350

def password
  @password
end

#usernameObject (readonly)

Returns the value of attribute username.



33350
33351
33352
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33350

def username
  @username
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



33363
33364
33365
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33363

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

#to_hashObject



33367
33368
33369
33370
33371
33372
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33367

def to_hash
  {
    :username => username,
    :password => password
  }
end

#to_jsonObject



33359
33360
33361
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33359

def to_json
  JSON.dump(to_hash)
end