module AsposeCellsCloud # class ImportSource < BaseObject attr_accessor :file_source_type, :file_path # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'file_source_type' => :'FileSourceType', # :'file_path' => :'FilePath' } end # attribute type def self.swagger_types { :'file_source_type' => :'String', :'file_path' => :'String' } 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[:'FileSourceType'] self.file_source_type = attributes[:'FileSourceType'] end if attributes[:'FilePath'] self.file_path = attributes[:'FilePath'] end end end end