class LabelsSummaryResponse::LabelsSummaryResultsItem

Public Class Methods

new(json_hash) click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/labels_summary_response.rb, line 32
def initialize(json_hash)
  @json_hash = json_hash
end

Public Instance Methods

criteria() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/labels_summary_response.rb, line 52
def criteria
  return @json_hash[:criteria]
end
description() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/labels_summary_response.rb, line 44
def description
  return @json_hash[:description]
end
device_count() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/labels_summary_response.rb, line 56
def device_count
  return @json_hash[:deviceCount]
end
device_space_id() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/labels_summary_response.rb, line 60
def device_space_id
  return @json_hash[:deviceSpaceId]
end
device_space_name() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/labels_summary_response.rb, line 64
def device_space_name
  return @json_hash[:deviceSpaceName]
end
device_space_path() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/labels_summary_response.rb, line 68
def device_space_path
  return @json_hash[:deviceSpacePath]
end
id() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/labels_summary_response.rb, line 36
def id
  return @json_hash[:id]
end
is_static() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/labels_summary_response.rb, line 48
def is_static
  return @json_hash[:isStatic]
end
name() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/labels_summary_response.rb, line 40
def name
  return @json_hash[:name]
end
row_type() click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/labels_summary_response.rb, line 72
def row_type
  return @json_hash[:rowType]
end