Sha256: cb9a323d4a7de1a26600b2e0e878ce6e0691725575b2caf6d7a2f165289f8275
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 KB
Contents
module AsposeWordsCloud # class BordersResponse < BaseObject attr_accessor :borders, :code, :status # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'borders' => :'Borders', # :'code' => :'Code', # :'status' => :'Status' } end # attribute type def self.swagger_types { :'borders' => :'BordersCollection', :'code' => :'String', :'status' => :'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[:'Borders'] self.borders = attributes[:'Borders'] end if attributes[:'Code'] self.code = attributes[:'Code'] end if attributes[:'Status'] self.status = attributes[:'Status'] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
aspose_words_cloud-1.0.3 | lib/aspose_words_cloud/models/borders_response.rb |