=begin #Datadog API V2 Collection #Collection of all Datadog Public endpoints. The version of the OpenAPI document: 1.0 Contact: support@datadoghq.com Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2020-Present Datadog, Inc. =end require 'date' require 'time' module DatadogAPIClient::V2 # Team update attributes class TeamUpdateAttributes include BaseGenericModel # Whether the object has unparsed attributes # @!visibility private attr_accessor :_unparsed # An identifier for the color representing the team attr_reader :color # Free-form markdown description/content for the team's homepage attr_accessor :description # The team's identifier attr_reader :handle # The number of links belonging to the team attr_reader :link_count # The name of the team attr_reader :name # Attribute mapping from ruby-style variable name to JSON key. # @!visibility private def self.attribute_map { :'color' => :'color', :'description' => :'description', :'handle' => :'handle', :'link_count' => :'link_count', :'name' => :'name' } end # Attribute type mapping. # @!visibility private def self.openapi_types { :'color' => :'Integer', :'description' => :'String', :'handle' => :'String', :'link_count' => :'Integer', :'name' => :'String' } end # Initializes the object # @param attributes [Hash] Model attributes in the form of hash # @!visibility private def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::TeamUpdateAttributes` 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 `DatadogAPIClient::V2::TeamUpdateAttributes`. 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?(:'color') self.color = attributes[:'color'] end if attributes.key?(:'description') self.description = attributes[:'description'] end if attributes.key?(:'handle') self.handle = attributes[:'handle'] end if attributes.key?(:'link_count') self.link_count = attributes[:'link_count'] end if attributes.key?(:'name') self.name = attributes[:'name'] end end # Check to see if the all the properties in the model are valid # @return true if the model is valid # @!visibility private def valid? return false if !@color.nil? && @color > 13 return false if !@color.nil? && @color < 0 return false if @handle.nil? return false if @handle.to_s.length > 64 return false if !@link_count.nil? && @link_count > 2147483647 return false if @name.nil? return false if @name.to_s.length > 64 true end # Custom attribute writer method with validation # @param color [Object] Object to be assigned # @!visibility private def color=(color) if !color.nil? && color > 13 fail ArgumentError, 'invalid value for "color", must be smaller than or equal to 13.' end if !color.nil? && color < 0 fail ArgumentError, 'invalid value for "color", must be greater than or equal to 0.' end @color = color end # Custom attribute writer method with validation # @param handle [Object] Object to be assigned # @!visibility private def handle=(handle) if handle.nil? fail ArgumentError, 'invalid value for "handle", handle cannot be nil.' end if handle.to_s.length > 64 fail ArgumentError, 'invalid value for "handle", the character length must be smaller than or equal to 64.' end @handle = handle end # Custom attribute writer method with validation # @param link_count [Object] Object to be assigned # @!visibility private def link_count=(link_count) if !link_count.nil? && link_count > 2147483647 fail ArgumentError, 'invalid value for "link_count", must be smaller than or equal to 2147483647.' end @link_count = link_count end # Custom attribute writer method with validation # @param name [Object] Object to be assigned # @!visibility private def name=(name) if name.nil? fail ArgumentError, 'invalid value for "name", name cannot be nil.' end if name.to_s.length > 64 fail ArgumentError, 'invalid value for "name", the character length must be smaller than or equal to 64.' end @name = name end # Checks equality by comparing each attribute. # @param o [Object] Object to be compared # @!visibility private def ==(o) return true if self.equal?(o) self.class == o.class && color == o.color && description == o.description && handle == o.handle && link_count == o.link_count && name == o.name end # Calculates hash code according to all attributes. # @return [Integer] Hash code # @!visibility private def hash [color, description, handle, link_count, name].hash end end end