class ComicVine::Resource::Concept

Extends {ComicVine::Resource::Concept} to add mongoid functions @since 0.1.2

Public Instance Methods

count_of_isssue_appearances() click to toggle source

Accounts for ComicVine's miss-spelling of issue in key. returns count_of_issue_appearances @return [Integer] @since 0.1.0

# File lib/comicvine/mongo.rb, line 375
def count_of_isssue_appearances
  self[:count_of_issue_appearances]
end
count_of_isssue_appearances=(value) click to toggle source

Accounts for ComicVine's miss-spelling of issue in key. Maps count_of_isssue_appearances to count_of_issue_appearances @param value [Integer] @since 0.1.0

# File lib/comicvine/mongo.rb, line 367
def count_of_isssue_appearances=(value)
  self[:count_of_issue_appearances] = value
end