2018-07-19 14:43:13 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-01-29 20:11:17 -05:00
|
|
|
class GroupVariableEntity < Grape::Entity
|
|
|
|
expose :id
|
|
|
|
expose :key
|
|
|
|
expose :value
|
2020-03-13 11:09:21 -04:00
|
|
|
expose :variable_type
|
2018-01-29 20:11:17 -05:00
|
|
|
|
|
|
|
expose :protected?, as: :protected
|
2019-03-29 11:46:31 -04:00
|
|
|
expose :masked?, as: :masked
|
2018-01-29 20:11:17 -05:00
|
|
|
end
|