| @@ -17,15 +17,15 @@ namespace Discord.API | |||||
| [JsonProperty("enabled")] | [JsonProperty("enabled")] | ||||
| public bool Enabled { get; set; } | public bool Enabled { get; set; } | ||||
| [JsonProperty("syncing")] | [JsonProperty("syncing")] | ||||
| public Optional<bool> Syncing { get; set; } | |||||
| public Optional<bool?> Syncing { get; set; } | |||||
| [JsonProperty("role_id")] | [JsonProperty("role_id")] | ||||
| public ulong? RoleId { get; set; } | |||||
| public Optional<ulong?> RoleId { get; set; } | |||||
| [JsonProperty("enable_emoticons")] | [JsonProperty("enable_emoticons")] | ||||
| public Optional<bool> EnableEmoticons { get; set; } | |||||
| public Optional<bool?> EnableEmoticons { get; set; } | |||||
| [JsonProperty("expire_behavior")] | [JsonProperty("expire_behavior")] | ||||
| public Optional<IntegrationExpireBehavior> ExpireBehavior { get; set; } | public Optional<IntegrationExpireBehavior> ExpireBehavior { get; set; } | ||||
| [JsonProperty("expire_grace_period")] | [JsonProperty("expire_grace_period")] | ||||
| public Optional<int> ExpireGracePeriod { get; set; } | |||||
| public Optional<int?> ExpireGracePeriod { get; set; } | |||||
| [JsonProperty("user")] | [JsonProperty("user")] | ||||
| public Optional<User> User { get; set; } | public Optional<User> User { get; set; } | ||||
| [JsonProperty("account")] | [JsonProperty("account")] | ||||
| @@ -33,9 +33,9 @@ namespace Discord.API | |||||
| [JsonProperty("synced_at")] | [JsonProperty("synced_at")] | ||||
| public Optional<DateTimeOffset> SyncedAt { get; set; } | public Optional<DateTimeOffset> SyncedAt { get; set; } | ||||
| [JsonProperty("subscriber_count")] | [JsonProperty("subscriber_count")] | ||||
| public Optional<int> SubscriberAccount { get; set; } | |||||
| public Optional<int?> SubscriberAccount { get; set; } | |||||
| [JsonProperty("revoked")] | [JsonProperty("revoked")] | ||||
| public Optional<bool> Revoked { get; set; } | |||||
| public Optional<bool?> Revoked { get; set; } | |||||
| [JsonProperty("application")] | [JsonProperty("application")] | ||||
| public Optional<IntegrationApplication> Application { get; set; } | public Optional<IntegrationApplication> Application { get; set; } | ||||
| } | } | ||||