class StructField
Attributes
description[RW]
name[RW]
summary[RW]
type[RW]
Public Class Methods
new(params)
click to toggle source
# File lib/code_generator/api_converter.rb, line 364 def initialize(params) params.each do |k, v| if self.respond_to?(k.to_sym) instance_variable_set("@#{k}".to_sym, v) end end end