module AsposeCellsCloud # class ImportDataTaskParameter < BaseObject attr_accessor :workbook, :import_batch_data_option # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'workbook' => :'Workbook', # :'import_batch_data_option' => :'ImportBatchDataOption' } end # attribute type def self.swagger_types { :'workbook' => :'ImportSource', :'import_batch_data_option' => :'ImportBatchDataOption' } end def initialize(attributes = {}) return if !attributes.is_a?(Hash) || attributes.empty? # convert string to symbol for hash key attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo} if attributes[:'Workbook'] self.workbook = attributes[:'Workbook'] end if attributes[:'ImportBatchDataOption'] self.import_batch_data_option = attributes[:'ImportBatchDataOption'] end end end end