class AgridClient::Service
Attributes
id[RW]
Unique Id
online[RW]
Describes if the service is online or not
title[RW]
Service
title
Public Class Methods
attribute_map()
click to toggle source
Attribute mapping from ruby-style variable name to JSON key.
# File lib/agrid_client/models/service.rb, line 33 def self.attribute_map { :'id' => :'id', :'title' => :'title', :'online' => :'online', :'tags' => :'tags' } end
new(attributes = {})
click to toggle source
Initializes the object @param [Hash] attributes Model attributes in the form of hash
# File lib/agrid_client/models/service.rb, line 54 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
swagger_types()
click to toggle source
Attribute type mapping.
# File lib/agrid_client/models/service.rb, line 43 def self.swagger_types { :'id' => :'String', :'title' => :'String', :'online' => :'BOOLEAN', :'tags' => :'Array<String>' } end
Public Instance Methods
==(o)
click to toggle source
Checks equality by comparing each attribute. @param [Object] Object to be compared
# File lib/agrid_client/models/service.rb, line 78 def ==(o) return true if self.equal?(o) self.class == o.class && id == o.id end
eql?(o)
click to toggle source
@see the `==` method @param [Object] Object to be compared
# File lib/agrid_client/models/service.rb, line 86 def eql?(o) self == o end