Class: Etna::Clients::Metis::FindRequest

Inherits:
Struct
  • Object
show all
Includes:
JsonSerializableStruct
Defined in:
lib/etna/clients/metis/models.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from JsonSerializableStruct

#as_json, included, #to_json

Constructor Details

#initialize(**args) ⇒ FindRequest

Returns a new instance of FindRequest.



116
117
118
# File 'lib/etna/clients/metis/models.rb', line 116

def initialize(**args)
  super({params: []}.update(args))
end

Instance Attribute Details

#bucket_nameObject

Returns the value of attribute bucket_name

Returns:

  • (Object)

    the current value of bucket_name



113
114
115
# File 'lib/etna/clients/metis/models.rb', line 113

def bucket_name
  @bucket_name
end

#limitObject

Returns the value of attribute limit

Returns:

  • (Object)

    the current value of limit



113
114
115
# File 'lib/etna/clients/metis/models.rb', line 113

def limit
  @limit
end

#offsetObject

Returns the value of attribute offset

Returns:

  • (Object)

    the current value of offset



113
114
115
# File 'lib/etna/clients/metis/models.rb', line 113

def offset
  @offset
end

#paramsObject

Returns the value of attribute params

Returns:

  • (Object)

    the current value of params



113
114
115
# File 'lib/etna/clients/metis/models.rb', line 113

def params
  @params
end

#project_nameObject

Returns the value of attribute project_name

Returns:

  • (Object)

    the current value of project_name



113
114
115
# File 'lib/etna/clients/metis/models.rb', line 113

def project_name
  @project_name
end

Instance Method Details

#add_param(param) ⇒ Object



120
121
122
# File 'lib/etna/clients/metis/models.rb', line 120

def add_param(param)
  params << param
end

#to_hObject



124
125
126
127
128
# File 'lib/etna/clients/metis/models.rb', line 124

def to_h
  # The nested :params values don't get converted correctly with transform_values, so it's
  #   easier to do from a JSON string
  JSON.parse(to_json, :symbolize_names => true)
end