blob: 622106458c3abab4b2572fa85176f19715f83e4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
class GroupVariableEntity < Grape::Entity
expose :id
expose :key
expose :value
expose :variable_type
expose :protected?, as: :protected
expose :masked?, as: :masked
end
|