class NaeginImage
Representa uma Imagem retornada pela API
Attributes
gif[R]
nsfw[R]
url[R]
Public Class Methods
new(data)
click to toggle source
# File lib/wrapper/image.rb, line 5 def initialize(data) @url = data['url'] @nsfw = data['nsfw'] @gif = data['gif'] end