lib/trellodon/entities/attachment.rb in trellodon-0.1.0 vs lib/trellodon/entities/attachment.rb in trellodon-0.2.0

- old
+ new

@@ -1,5 +1,5 @@ # frozen_string_literal: true module Trellodon - Attachment = Struct.new("Attachment", :file_name, :mime_type, :bytes, :url, keyword_init: true) + Attachment = Struct.new("Attachment", :file_name, :mime_type, :bytes, :date, :name, :is_upload, :headers, :url, keyword_init: true) end