NAME

Imgur::API::Model::TagVote

DESCRIPTION

    The base model for a tag vote.

FIELDS

ups integer

    Number of upvotes.

downs integer

    Number of downvotes.

name string

    Name of the tag.

author string

    Author of the tag.

EXAMPLE

{
  "data" : {
     "tags" : [
        {
           "downs" : 5,
           "ups" : 20,
           "name" : "funny",
           "author" : "jasdev"
        },
        {
           "author" : "gottagitgit",
           "downs" : 4,
           "ups" : 10,
           "name" : "cute"
        }
     ]
  },
  "status" : 200,
  "success" : true
}

SEE ALSO

http://api.imgur.com/models/tagvote

2 POD Errors

The following errors were encountered while parsing the POD:

Around line 17:

'=item' outside of any '=over'

Around line 58:

You forgot a '=back' before '=head1'