lib/eve_online/esi/models/group.rb in eve_online-0.29.0 vs lib/eve_online/esi/models/group.rb in eve_online-0.30.0
- old
+ new
@@ -7,31 +7,31 @@
def as_json
{
category_id: category_id,
group_id: group_id,
name: name,
- published: published
+ published: published,
}
end
def category_id
- options['category_id']
+ options["category_id"]
end
def group_id
- options['group_id']
+ options["group_id"]
end
def name
- options['name']
+ options["name"]
end
def published
- options['published']
+ options["published"]
end
def type_ids
- options['types']
+ options["types"]
end
end
end
end
end