Class: Io::Flow::V0::Models::RateForm

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

Overview

Represents the parts of an organization rate that can be updated.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ RateForm

Returns a new instance of RateForm.



56974
56975
56976
56977
56978
56979
56980
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 56974

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:base, :target, :effective_at], 'RateForm')
  @base = HttpClient::Preconditions.assert_class('base', opts.delete(:base), String)
  @target = HttpClient::Preconditions.assert_class('target', opts.delete(:target), String)
  @effective_at = HttpClient::Preconditions.assert_class('effective_at', HttpClient::Helper.to_date_time_iso8601(opts.delete(:effective_at)), DateTime)
end

Instance Attribute Details

#baseObject (readonly)

Returns the value of attribute base.



56972
56973
56974
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 56972

def base
  @base
end

#effective_atObject (readonly)

Returns the value of attribute effective_at.



56972
56973
56974
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 56972

def effective_at
  @effective_at
end

#targetObject (readonly)

Returns the value of attribute target.



56972
56973
56974
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 56972

def target
  @target
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



56986
56987
56988
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 56986

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

#to_hashObject



56990
56991
56992
56993
56994
56995
56996
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 56990

def to_hash
  {
    :base => base,
    :target => target,
    :effective_at => effective_at
  }
end

#to_jsonObject



56982
56983
56984
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 56982

def to_json
  JSON.dump(to_hash)
end