Sha256: bb6a1f960544d4af0c911ae0e4dc34105384d569fdc9197052bb903a7a559244

Contents?: true

Size: 347 Bytes

Versions: 5

Compression:

Stored size: 347 Bytes

Contents

module Moysklad::Entities
  class Image < Base
    attribute :meta,  Meta
    attribute :title, String
    attribute :filename, String
    attribute :size, Integer
    attribute :updated, Time
    attribute :miniature, Meta
    attribute :tiny, Meta

    def download(client, dir)
      client.download meta.href, dir + filename
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
moysklad-0.5 lib/moysklad/entities/image.rb
moysklad-0.4.10 lib/moysklad/entities/image.rb
moysklad-0.4.9 lib/moysklad/entities/image.rb
moysklad-0.4.8 lib/moysklad/entities/image.rb
moysklad-0.4.7 lib/moysklad/entities/image.rb