Skip to content

Commit

Permalink
feat: excludeSnapshotUrls
Browse files Browse the repository at this point in the history
  • Loading branch information
lisonge committed Sep 4, 2024
1 parent a12b1b1 commit 03334ed
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions app/src/main/kotlin/li/songe/gkd/data/RawSubscription.kt
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ data class RawSubscription(
val order: Int?
val forcedTime: Long?
val snapshotUrls: List<String>?
val excludeSnapshotUrls: List<String>?
val exampleUrls: List<String>?
}

Expand Down Expand Up @@ -269,6 +270,7 @@ data class RawSubscription(
override val order: Int?,
override val forcedTime: Long?,
override val snapshotUrls: List<String>?,
override val excludeSnapshotUrls: List<String>?,
override val exampleUrls: List<String>?,
override val matchAnyApp: Boolean?,
override val matchSystemApp: Boolean?,
Expand Down Expand Up @@ -307,6 +309,7 @@ data class RawSubscription(
override val order: Int?,
override val forcedTime: Long?,
override val snapshotUrls: List<String>?,
override val excludeSnapshotUrls: List<String>?,
override val exampleUrls: List<String>?,
override val name: String?,
override val key: Int?,
Expand Down Expand Up @@ -343,6 +346,7 @@ data class RawSubscription(
override val matchTime: Long?,
override val resetMatch: String?,
override val snapshotUrls: List<String>?,
override val excludeSnapshotUrls: List<String>?,
override val exampleUrls: List<String>?,
override val activityIds: List<String>?,
override val excludeActivityIds: List<String>?,
Expand Down Expand Up @@ -387,6 +391,7 @@ data class RawSubscription(
override val matchTime: Long?,
override val resetMatch: String?,
override val snapshotUrls: List<String>?,
override val excludeSnapshotUrls: List<String>?,
override val exampleUrls: List<String>?,

override val activityIds: List<String>?,
Expand Down Expand Up @@ -610,6 +615,7 @@ data class RawSubscription(
matchTime = getLong(jsonObject, "matchTime"),
resetMatch = getString(jsonObject, "resetMatch"),
snapshotUrls = getStringIArray(jsonObject, "snapshotUrls"),
excludeSnapshotUrls = getStringIArray(jsonObject, "excludeSnapshotUrls"),
exampleUrls = getStringIArray(jsonObject, "exampleUrls"),
actionMaximumKey = getInt(jsonObject, "actionMaximumKey"),
actionCdKey = getInt(jsonObject, "actionCdKey"),
Expand Down Expand Up @@ -654,6 +660,7 @@ data class RawSubscription(
matchTime = getLong(jsonObject, "matchTime"),
resetMatch = getString(jsonObject, "resetMatch"),
snapshotUrls = getStringIArray(jsonObject, "snapshotUrls"),
excludeSnapshotUrls = getStringIArray(jsonObject, "excludeSnapshotUrls"),
exampleUrls = getStringIArray(jsonObject, "exampleUrls"),
actionMaximumKey = getInt(jsonObject, "actionMaximumKey"),
actionCdKey = getInt(jsonObject, "actionCdKey"),
Expand Down Expand Up @@ -709,6 +716,7 @@ data class RawSubscription(
matchTime = getLong(jsonObject, "matchTime"),
resetMatch = getString(jsonObject, "resetMatch"),
snapshotUrls = getStringIArray(jsonObject, "snapshotUrls"),
excludeSnapshotUrls = getStringIArray(jsonObject, "excludeSnapshotUrls"),
exampleUrls = getStringIArray(jsonObject, "exampleUrls"),
actionMaximumKey = getInt(jsonObject, "actionMaximumKey"),
actionCdKey = getInt(jsonObject, "actionCdKey"),
Expand Down Expand Up @@ -747,6 +755,7 @@ data class RawSubscription(
matchTime = getLong(jsonObject, "matchTime"),
resetMatch = getString(jsonObject, "resetMatch"),
snapshotUrls = getStringIArray(jsonObject, "snapshotUrls"),
excludeSnapshotUrls = getStringIArray(jsonObject, "excludeSnapshotUrls"),
exampleUrls = getStringIArray(jsonObject, "exampleUrls"),
actionMaximumKey = getInt(jsonObject, "actionMaximumKey"),
actionCdKey = getInt(jsonObject, "actionCdKey"),
Expand Down

0 comments on commit 03334ed

Please sign in to comment.