class ATSD::PropertiesQuery

Class for building and executing Properties Query @see axibase.com/atsd/api/#properties:-query

Constants

TO_ISO_LAMBDA

Public Instance Methods

execute() click to toggle source

@return (see result)

# File lib/atsd/queries/properties_query.rb, line 25
def execute
  result = @client.properties_query to_request_hash
  @result = result.map { |json| Property.new json }
end
result() click to toggle source

@return [Array<Property>]

Calls superclass method ATSD::BaseQuery#result
# File lib/atsd/queries/properties_query.rb, line 20
def result
  super
end