class LaunchDarklyApi::FeatureFlagConfig
Attributes
Public Class Methods
Returns all the JSON keys this model knows about
# File lib/launchdarkly_api/models/feature_flag_config.rb, line 79 def self.acceptable_attributes attribute_map.values end
Attribute mapping from ruby-style variable name to JSON key.
# File lib/launchdarkly_api/models/feature_flag_config.rb, line 55 def self.attribute_map { :'on' => :'on', :'archived' => :'archived', :'salt' => :'salt', :'sel' => :'sel', :'last_modified' => :'lastModified', :'version' => :'version', :'targets' => :'targets', :'rules' => :'rules', :'fallthrough' => :'fallthrough', :'off_variation' => :'offVariation', :'prerequisites' => :'prerequisites', :'_site' => :'_site', :'_access' => :'_access', :'_environment_name' => :'_environmentName', :'track_events' => :'trackEvents', :'track_events_fallthrough' => :'trackEventsFallthrough', :'_debug_events_until_date' => :'_debugEventsUntilDate', :'_summary' => :'_summary' } end
Builds the object from hash @param [Hash] attributes Model attributes in the form of hash @return [Object] Returns the model itself
# File lib/launchdarkly_api/models/feature_flag_config.rb, line 330 def self.build_from_hash(attributes) new.build_from_hash(attributes) end
Initializes the object @param [Hash] attributes Model attributes in the form of hash
# File lib/launchdarkly_api/models/feature_flag_config.rb, line 115 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `LaunchDarklyApi::FeatureFlagConfig` initialize method" end # check to see if the attribute exists and convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| if (!self.class.attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `LaunchDarklyApi::FeatureFlagConfig`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect end h[k.to_sym] = v } if attributes.key?(:'on') self.on = attributes[:'on'] end if attributes.key?(:'archived') self.archived = attributes[:'archived'] end if attributes.key?(:'salt') self.salt = attributes[:'salt'] end if attributes.key?(:'sel') self.sel = attributes[:'sel'] end if attributes.key?(:'last_modified') self.last_modified = attributes[:'last_modified'] end if attributes.key?(:'version') self.version = attributes[:'version'] end if attributes.key?(:'targets') if (value = attributes[:'targets']).is_a?(Array) self.targets = value end end if attributes.key?(:'rules') if (value = attributes[:'rules']).is_a?(Array) self.rules = value end end if attributes.key?(:'fallthrough') self.fallthrough = attributes[:'fallthrough'] end if attributes.key?(:'off_variation') self.off_variation = attributes[:'off_variation'] end if attributes.key?(:'prerequisites') if (value = attributes[:'prerequisites']).is_a?(Array) self.prerequisites = value end end if attributes.key?(:'_site') self._site = attributes[:'_site'] end if attributes.key?(:'_access') self._access = attributes[:'_access'] end if attributes.key?(:'_environment_name') self._environment_name = attributes[:'_environment_name'] end if attributes.key?(:'track_events') self.track_events = attributes[:'track_events'] end if attributes.key?(:'track_events_fallthrough') self.track_events_fallthrough = attributes[:'track_events_fallthrough'] end if attributes.key?(:'_debug_events_until_date') self._debug_events_until_date = attributes[:'_debug_events_until_date'] end if attributes.key?(:'_summary') self._summary = attributes[:'_summary'] end end
List of attributes with nullable: true
# File lib/launchdarkly_api/models/feature_flag_config.rb, line 108 def self.openapi_nullable Set.new([ ]) end
Attribute type mapping.
# File lib/launchdarkly_api/models/feature_flag_config.rb, line 84 def self.openapi_types { :'on' => :'Boolean', :'archived' => :'Boolean', :'salt' => :'String', :'sel' => :'String', :'last_modified' => :'Integer', :'version' => :'Integer', :'targets' => :'Array<Target>', :'rules' => :'Array<Rule>', :'fallthrough' => :'VariationOrRolloutRep', :'off_variation' => :'Integer', :'prerequisites' => :'Array<Prerequisite>', :'_site' => :'Link', :'_access' => :'AccessRep', :'_environment_name' => :'String', :'track_events' => :'Boolean', :'track_events_fallthrough' => :'Boolean', :'_debug_events_until_date' => :'Integer', :'_summary' => :'FlagSummary' } end
Public Instance Methods
Checks equality by comparing each attribute. @param [Object] Object to be compared
# File lib/launchdarkly_api/models/feature_flag_config.rb, line 292 def ==(o) return true if self.equal?(o) self.class == o.class && on == o.on && archived == o.archived && salt == o.salt && sel == o.sel && last_modified == o.last_modified && version == o.version && targets == o.targets && rules == o.rules && fallthrough == o.fallthrough && off_variation == o.off_variation && prerequisites == o.prerequisites && _site == o._site && _access == o._access && _environment_name == o._environment_name && track_events == o.track_events && track_events_fallthrough == o.track_events_fallthrough && _debug_events_until_date == o._debug_events_until_date && _summary == o._summary end
Deserializes the data based on type @param string type Data type @param string value Value to be deserialized @return [Object] Deserialized data
# File lib/launchdarkly_api/models/feature_flag_config.rb, line 360 def _deserialize(type, value) case type.to_sym when :Time Time.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :Boolean if value.to_s =~ /\A(true|t|yes|y|1)\z/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end else # model # models (e.g. Pet) or oneOf klass = LaunchDarklyApi.const_get(type) klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value) end end
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value @param [Object] value Any valid value @return [Hash] Returns the value in the form of hash
# File lib/launchdarkly_api/models/feature_flag_config.rb, line 431 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end
Builds the object from hash @param [Hash] attributes Model attributes in the form of hash @return [Object] Returns the model itself
# File lib/launchdarkly_api/models/feature_flag_config.rb, line 337 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.openapi_types.each_pair do |key, type| if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key) self.send("#{key}=", nil) elsif type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]])) end end self end
@see the `==` method @param [Object] Object to be compared
# File lib/launchdarkly_api/models/feature_flag_config.rb, line 317 def eql?(o) self == o end
Calculates hash code according to all attributes. @return [Integer] Hash code
# File lib/launchdarkly_api/models/feature_flag_config.rb, line 323 def hash [on, archived, salt, sel, last_modified, version, targets, rules, fallthrough, off_variation, prerequisites, _site, _access, _environment_name, track_events, track_events_fallthrough, _debug_events_until_date, _summary].hash end
Show invalid properties with the reasons. Usually used together with valid? @return Array for valid properties with the reasons
# File lib/launchdarkly_api/models/feature_flag_config.rb, line 209 def list_invalid_properties invalid_properties = Array.new if @on.nil? invalid_properties.push('invalid value for "on", on cannot be nil.') end if @archived.nil? invalid_properties.push('invalid value for "archived", archived cannot be nil.') end if @salt.nil? invalid_properties.push('invalid value for "salt", salt cannot be nil.') end if @sel.nil? invalid_properties.push('invalid value for "sel", sel cannot be nil.') end if @last_modified.nil? invalid_properties.push('invalid value for "last_modified", last_modified cannot be nil.') end if @version.nil? invalid_properties.push('invalid value for "version", version cannot be nil.') end if @targets.nil? invalid_properties.push('invalid value for "targets", targets cannot be nil.') end if @rules.nil? invalid_properties.push('invalid value for "rules", rules cannot be nil.') end if @fallthrough.nil? invalid_properties.push('invalid value for "fallthrough", fallthrough cannot be nil.') end if @prerequisites.nil? invalid_properties.push('invalid value for "prerequisites", prerequisites cannot be nil.') end if @_site.nil? invalid_properties.push('invalid value for "_site", _site cannot be nil.') end if @_environment_name.nil? invalid_properties.push('invalid value for "_environment_name", _environment_name cannot be nil.') end if @track_events.nil? invalid_properties.push('invalid value for "track_events", track_events cannot be nil.') end if @track_events_fallthrough.nil? invalid_properties.push('invalid value for "track_events_fallthrough", track_events_fallthrough cannot be nil.') end invalid_properties end
Returns the object in the form of hash @return [Hash] Returns the object in the form of hash
# File lib/launchdarkly_api/models/feature_flag_config.rb, line 413 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) if value.nil? is_nullable = self.class.openapi_nullable.include?(attr) next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) end hash[param] = _to_hash(value) end hash end
Returns the string representation of the object @return [String] String presentation of the object
# File lib/launchdarkly_api/models/feature_flag_config.rb, line 401 def to_s to_hash.to_s end
Check to see if the all the properties in the model are valid @return true if the model is valid
# File lib/launchdarkly_api/models/feature_flag_config.rb, line 272 def valid? return false if @on.nil? return false if @archived.nil? return false if @salt.nil? return false if @sel.nil? return false if @last_modified.nil? return false if @version.nil? return false if @targets.nil? return false if @rules.nil? return false if @fallthrough.nil? return false if @prerequisites.nil? return false if @_site.nil? return false if @_environment_name.nil? return false if @track_events.nil? return false if @track_events_fallthrough.nil? true end