Welcome to mirror list, hosted at ThFree Co, Russian Federation.

contact_state_enum.rb « customer_relations « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 445d2a41401466f2f1033db4d73874685def2637 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Types
  module CustomerRelations
    class ContactStateEnum < BaseEnum
      graphql_name 'CustomerRelationsContactState'

      value 'active',
            description: "Active contact.",
            value: :active

      value 'inactive',
            description: "Inactive contact.",
            value: :inactive
    end
  end
end