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.
29257 29258 29259 29260 29261 29262 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29257 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.
29255 29256 29257 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29255 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.
29255 29256 29257 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29255 def days_until_purge_used @days_until_purge_used end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
29268 29269 29270 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29268 def copy(incoming={}) CustomerPurgeSettingsForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
29272 29273 29274 29275 29276 29277 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29272 def to_hash { :days_until_purge_unused => days_until_purge_unused, :days_until_purge_used => days_until_purge_used } end |
#to_json ⇒ Object
29264 29265 29266 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29264 def to_json JSON.dump(to_hash) end |