class Tataru::Representations::OutputRepresentation

internal representation of output

Attributes

output_field_name[R]
resource_name[R]

Public Class Methods

new(resource_name, output_field_name) click to toggle source
# File lib/tataru/representations/output_representation.rb, line 9
def initialize(resource_name, output_field_name)
  @resource_name = resource_name
  @output_field_name = output_field_name
end

Public Instance Methods

dependencies() click to toggle source
# File lib/tataru/representations/output_representation.rb, line 14
def dependencies
  [@resource_name]
end