Add playProductId to backup level configuration

This commit is contained in:
ravi-signal
2024-08-30 12:59:09 -05:00
committed by GitHub
parent 564dba3053
commit 7df978390f
3 changed files with 9 additions and 4 deletions

View File

@@ -29,6 +29,7 @@ public sealed interface SubscriptionLevelConfiguration permits
}
record Backup(
@JsonProperty("playProductId") @NotEmpty String playProductId,
@JsonProperty("prices") @Valid Map<@NotEmpty String, @NotNull @Valid SubscriptionPriceConfiguration> prices)
implements SubscriptionLevelConfiguration {}