Sha256: 37d5ee34f2e079c0cae841619f5a984fa5dd1e1f92df96badebd6acf8f87d343
Contents?: true
Size: 1.88 KB
Versions: 7
Compression:
Stored size: 1.88 KB
Contents
=begin Agrid Quotes API OpenAPI spec version: 1.0 Generated by: https://github.com/swagger-api/swagger-codegen.git =end require 'date' require_relative 'concerns/swagger_model' module AgridClient class Service include SwaggerModel # Unique Id attr_accessor :id # Service title attr_accessor :title # Describes if the service is online or not attr_accessor :online # Tags used to categorize service attr_accessor :tags # Attribute mapping from ruby-style variable name to JSON key. def self.attribute_map { :'id' => :'id', :'title' => :'title', :'online' => :'online', :'tags' => :'tags' } end # Attribute type mapping. def self.swagger_types { :'id' => :'String', :'title' => :'String', :'online' => :'BOOLEAN', :'tags' => :'Array<String>' } end # Initializes the object # @param [Hash] attributes Model attributes in the form of hash 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} if attributes[:'id'] self.id = attributes[:'id'] end if attributes[:'title'] self.title = attributes[:'title'] end if attributes[:'online'] self.online = attributes[:'online'] end if attributes[:'tags'] if (value = attributes[:'tags']).is_a?(Array) self.tags = value end end end # Checks equality by comparing each attribute. # @param [Object] Object to be compared def ==(o) return true if self.equal?(o) self.class == o.class && id == o.id end # @see the `==` method # @param [Object] Object to be compared def eql?(o) self == o end end end
Version data entries
7 entries across 7 versions & 1 rubygems