Skip to content

IntegrationOptionType

The option of an integration

Fields

disabled_status_name · String · The name of the status when the option is disabled
enable_button_label · String · The label of the button to enable the option
enable_button_url · String · The url of the button to enable the option
enabled_status_name · String · The name of the status when the option is enabled
erx_connected_members · [String!] · List of connected members
id · ID! · required · The unique identifier of the option
integration_category_id · ID · The unique identifier of the category the option belongs to
is_active · Boolean · Whether the option is active
is_pending · Boolean · Whether the option is pending
long_description · String · The long description of the option
name · String · The name of the option
short_description · String · The short description of the option
type · String · The type of the option

Used By

Definition

"""
The option of an integration
"""
type IntegrationOptionType {
"""
The name of the status when the option is disabled
"""
disabled_status_name: String
"""
The label of the button to enable the option
"""
enable_button_label: String
"""
The url of the button to enable the option
"""
enable_button_url: String
"""
The name of the status when the option is enabled
"""
enabled_status_name: String
"""
List of connected members
"""
erx_connected_members: [String!]
"""
The unique identifier of the option
"""
id: ID!
"""
The unique identifier of the category the option belongs to
"""
integration_category_id: ID
"""
Whether the option is active
"""
is_active: Boolean
"""
Whether the option is pending
"""
is_pending: Boolean
"""
The long description of the option
"""
long_description: String
"""
The name of the option
"""
name: String
"""
The short description of the option
"""
short_description: String
"""
The type of the option
"""
type: String
}