Class: Io::Flow::V0::Models::ScheduledExportForm

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 = {}) ⇒ ScheduledExportForm

Returns a new instance of ScheduledExportForm.



60389
60390
60391
60392
60393
60394
60395
60396
60397
60398
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60389

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:user_id, :organization_q, :hour, :minute, :timezone, :types], 'ScheduledExportForm')
  @user_id = HttpClient::Preconditions.assert_class('user_id', opts.delete(:user_id), String)
  @organization_q = HttpClient::Preconditions.assert_class('organization_q', opts.delete(:organization_q), String)
  @hour = HttpClient::Preconditions.assert_class('hour', opts.delete(:hour), Integer)
  @minute = HttpClient::Preconditions.assert_class('minute', opts.delete(:minute), Integer)
  @timezone = HttpClient::Preconditions.assert_class('timezone', opts.delete(:timezone), String)
  @types = HttpClient::Preconditions.assert_class('types', opts.delete(:types), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::ExportType) ? x : ::Io::Flow::V0::Models::ExportType.from_json(x)) }
end

Instance Attribute Details

#hourObject (readonly)

Returns the value of attribute hour.



60387
60388
60389
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60387

def hour
  @hour
end

#minuteObject (readonly)

Returns the value of attribute minute.



60387
60388
60389
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60387

def minute
  @minute
end

#organization_qObject (readonly)

Returns the value of attribute organization_q.



60387
60388
60389
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60387

def organization_q
  @organization_q
end

#timezoneObject (readonly)

Returns the value of attribute timezone.



60387
60388
60389
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60387

def timezone
  @timezone
end

#typesObject (readonly)

Returns the value of attribute types.



60387
60388
60389
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60387

def types
  @types
end

#user_idObject (readonly)

Returns the value of attribute user_id.



60387
60388
60389
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60387

def user_id
  @user_id
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



60404
60405
60406
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60404

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

#to_hashObject



60408
60409
60410
60411
60412
60413
60414
60415
60416
60417
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60408

def to_hash
  {
    :user_id => user_id,
    :organization_q => organization_q,
    :hour => hour,
    :minute => minute,
    :timezone => timezone,
    :types => types.map { |o| o.to_hash }
  }
end

#to_jsonObject



60400
60401
60402
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 60400

def to_json
  JSON.dump(to_hash)
end