Method: OCI::ObjectStorage::Models::RetentionRuleDetails#initialize
- Defined in:
- lib/oci/object_storage/models/retention_rule_details.rb
#initialize(attributes = {}) ⇒ RetentionRuleDetails
Initializes the object
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/oci/object_storage/models/retention_rule_details.rb', line 58 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.display_name = attributes[:'displayName'] if attributes[:'displayName'] raise 'You cannot provide both :displayName and :display_name' if attributes.key?(:'displayName') && attributes.key?(:'display_name') self.display_name = attributes[:'display_name'] if attributes[:'display_name'] self.duration = attributes[:'duration'] if attributes[:'duration'] self.time_rule_locked = attributes[:'timeRuleLocked'] if attributes[:'timeRuleLocked'] raise 'You cannot provide both :timeRuleLocked and :time_rule_locked' if attributes.key?(:'timeRuleLocked') && attributes.key?(:'time_rule_locked') self.time_rule_locked = attributes[:'time_rule_locked'] if attributes[:'time_rule_locked'] end |