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.
27540 27541 27542 27543 27544 27545 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27540 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.
27538 27539 27540 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27538 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.
27538 27539 27540 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27538 def days_until_purge_used @days_until_purge_used end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
27551 27552 27553 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27551 def copy(incoming={}) CustomerPurgeSettingsForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
27555 27556 27557 27558 27559 27560 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27555 def to_hash { :days_until_purge_unused => days_until_purge_unused, :days_until_purge_used => days_until_purge_used } end |
#to_json ⇒ Object
27547 27548 27549 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27547 def to_json JSON.dump(to_hash) end |