11 lines
158 B
Ruby
11 lines
158 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module API
|
||
|
module Entities
|
||
|
class CustomAttribute < Grape::Entity
|
||
|
expose :key
|
||
|
expose :value
|
||
|
end
|
||
|
end
|
||
|
end
|