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.
38569 38570 38571 38572 38573 38574 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38569 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.
38567 38568 38569 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38567 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.
38567 38568 38569 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38567 def days_until_purge_used @days_until_purge_used end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
38580 38581 38582 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38580 def copy(incoming={}) CustomerPurgeSettingsForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
38584 38585 38586 38587 38588 38589 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38584 def to_hash { :days_until_purge_unused => days_until_purge_unused, :days_until_purge_used => days_until_purge_used } end |
#to_json ⇒ Object
38576 38577 38578 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38576 def to_json JSON.dump(to_hash) end |