Sha256: 7107ab92f1af940ec5ca3c15a549340d19d5be54f3bb473888d57311e14334c3
Contents?: true
Size: 608 Bytes
Versions: 20
Compression:
Stored size: 608 Bytes
Contents
# typed: strong # frozen_string_literal: true module DearInventory module Models class Attachment < DearInventory::Model extend T::Sig fields( ID: { name: :id, type: :Guid, }, ContentType: { name: :content_type, type: :String, }, IsDefault: { name: :is_default, type: :Boolean, }, FileName: { name: :file_name, type: :String, }, DownloadUrl: { name: :download_url, type: :String, } ) end end end
Version data entries
20 entries across 20 versions & 1 rubygems