Class: Io::Flow::V0::Models::CustomerPurgeSettingsForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::CustomerPurgeSettingsForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Represent settings for when to purge customer data
Instance Attribute Summary collapse
-
#days_until_purge_unused ⇒ Object
readonly
Returns the value of attribute days_until_purge_unused.
-
#days_until_purge_used ⇒ Object
readonly
Returns the value of attribute days_until_purge_used.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ CustomerPurgeSettingsForm
constructor
A new instance of CustomerPurgeSettingsForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ CustomerPurgeSettingsForm
Returns a new instance of CustomerPurgeSettingsForm.
27982 27983 27984 27985 27986 27987 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27982 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:days_until_purge_unused, :days_until_purge_used], 'CustomerPurgeSettingsForm') @days_until_purge_unused = HttpClient::Preconditions.assert_class('days_until_purge_unused', opts.delete(:days_until_purge_unused), Integer) @days_until_purge_used = HttpClient::Preconditions.assert_class('days_until_purge_used', opts.delete(:days_until_purge_used), Integer) end |
Instance Attribute Details
#days_until_purge_unused ⇒ Object (readonly)
Returns the value of attribute days_until_purge_unused.
27980 27981 27982 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27980 def days_until_purge_unused @days_until_purge_unused end |
#days_until_purge_used ⇒ Object (readonly)
Returns the value of attribute days_until_purge_used.
27980 27981 27982 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27980 def days_until_purge_used @days_until_purge_used end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
27993 27994 27995 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27993 def copy(incoming={}) CustomerPurgeSettingsForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
27997 27998 27999 28000 28001 28002 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27997 def to_hash { :days_until_purge_unused => days_until_purge_unused, :days_until_purge_used => days_until_purge_used } end |
#to_json ⇒ Object
27989 27990 27991 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27989 def to_json JSON.dump(to_hash) end |