2020-10-24 23:57:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
module Ci
|
|
|
|
class JobArtifactFile < Grape::Entity
|
2023-01-13 00:05:48 +05:30
|
|
|
expose :filename, documentation: { type: 'string', example: 'artifacts.zip' }
|
|
|
|
expose :cached_size, as: :size, documentation: { type: 'integer', example: 1000 }
|
2020-10-24 23:57:45 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|