module ThriftClient::Simple::ComplexType::Includes

Public Instance Methods

to_i() click to toggle source
# File lib/thrift_client/simple.rb, line 44
def to_i
  self.class.type_id
end
to_s() click to toggle source
# File lib/thrift_client/simple.rb, line 48
def to_s
  args = self.values.map { |v| self.class.type_id == STRUCT ? v.name : v.to_s }.join(", ")
  "#{self.class.name}.new(#{args})"
end