Sha256: c2b32165d2a1b53de4a434142af56752ef2e2363def5a32f5790f98bd5a1eb7b
Contents?: true
Size: 1.19 KB
Versions: 6
Compression:
Stored size: 1.19 KB
Contents
module AsposeCellsCloud # class ResultDestination < BaseObject attr_accessor :destination_type, :input_file, :output_file # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'destination_type' => :'DestinationType', # :'input_file' => :'InputFile', # :'output_file' => :'OutputFile' } end # attribute type def self.swagger_types { :'destination_type' => :'String', :'input_file' => :'String', :'output_file' => :'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[:'DestinationType'] self.destination_type = attributes[:'DestinationType'] end if attributes[:'InputFile'] self.input_file = attributes[:'InputFile'] end if attributes[:'OutputFile'] self.output_file = attributes[:'OutputFile'] end end end end
Version data entries
6 entries across 6 versions & 1 rubygems