Sha256: 8bd26882ff904e4042e88560e31c064f21a831fb8a29738a67ea2571350739fb
Contents?: true
Size: 1.17 KB
Versions: 1
Compression:
Stored size: 1.17 KB
Contents
module AsposeCellsCloud # class PivotFiltersResponse < BaseObject attr_accessor :pivot_filters, :code, :status # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'pivot_filters' => :'PivotFilters', # :'code' => :'Code', # :'status' => :'Status' } end # attribute type def self.swagger_types { :'pivot_filters' => :'Array<PivotFilter>', :'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[:'PivotFilters'] if (value = attributes[:'PivotFilters']).is_a?(Array) self.pivot_filters = value end 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_cells_cloud-1.0.10 | lib/aspose_cells_cloud/models/pivot_filters_response.rb |