case class ExternalIntegration(id: IntegrationId, name: String, type: IntegrationType, enabled: Boolean, syncing: Boolean, roleId: RoleId, enableEmoticons: Option[Boolean], expireBehavior: IntegrationExpireBehavior, expireGracePeriod: Int, user: Option[User], account: IntegrationAccount, syncedAt: OffsetDateTime, subscriberCount: Int, revoked: Boolean, application: Option[IntegrationApplication]) extends Integration with Product with Serializable
A server integration
- id
The id of the integration
- name
The integration name
- enabled
If the integration is enabled
- syncing
If the integration is synced
- roleId
Role that this integration uses for subscribers, or guild id for Discord integrations
- expireBehavior
The behavior of expiring subscribers.
- expireGracePeriod
The grace period before expiring subscribers.
- user
The user for this integration
- account
Account information
- syncedAt
When the integration last synced'
- subscriberCount
How many subscribers this integration has. 0 for Discord
- revoked
If this integration has been revoked
- Source
- guild.scala
- Alphabetic
- By Inheritance
- ExternalIntegration
- Serializable
- Product
- Equals
- Integration
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new ExternalIntegration(id: IntegrationId, name: String, type: IntegrationType, enabled: Boolean, syncing: Boolean, roleId: RoleId, enableEmoticons: Option[Boolean], expireBehavior: IntegrationExpireBehavior, expireGracePeriod: Int, user: Option[User], account: IntegrationAccount, syncedAt: OffsetDateTime, subscriberCount: Int, revoked: Boolean, application: Option[IntegrationApplication])
- id
The id of the integration
- name
The integration name
- enabled
If the integration is enabled
- syncing
If the integration is synced
- roleId
Role that this integration uses for subscribers, or guild id for Discord integrations
- expireBehavior
The behavior of expiring subscribers.
- expireGracePeriod
The grace period before expiring subscribers.
- user
The user for this integration
- account
Account information
- syncedAt
When the integration last synced'
- subscriberCount
How many subscribers this integration has. 0 for Discord
- revoked
If this integration has been revoked
Value Members
- val account: IntegrationAccount
Account information.
Account information.
- Definition Classes
- ExternalIntegration → Integration
- val application: Option[IntegrationApplication]
- val enableEmoticons: Option[Boolean]
- val enabled: Boolean
If the integration is enabled.
If the integration is enabled.
- Definition Classes
- ExternalIntegration → Integration
- val expireBehavior: IntegrationExpireBehavior
- val expireGracePeriod: Int
- val id: IntegrationId
The id of the integration.
The id of the integration.
- Definition Classes
- ExternalIntegration → Integration
- val name: String
The integration name.
The integration name.
- Definition Classes
- ExternalIntegration → Integration
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val revoked: Boolean
- val roleId: RoleId
- val subscriberCount: Int
- val syncedAt: OffsetDateTime
- val syncing: Boolean
- val type: IntegrationType
The type of the integration.
The type of the integration.
- Definition Classes
- ExternalIntegration → Integration
- val user: Option[User]