class Spear::Structure::Application::Create

Attributes

results[RW]
returned_results[R]
total_results[R]

Public Class Methods

new(response) click to toggle source
Calls superclass method Spear::Structure::Base::new
# File lib/spear/structure/application/create.rb, line 9
def initialize(response)
  super(response)

  @total_results = @root["TotalResults"]
  @returned_results = @root["ReturnedResults"]
  @results = @root["Results"]
end