Skip to content

Commit 9f63cc0

Browse files
committed
make coupon image width and height optional
1 parent 2e7206b commit 9f63cc0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/java/io/snabble/sdk/Coupons.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ data class CouponImage (
5252
@Parcelize
5353
data class CouponImageFormats (
5454
val contentType: String,
55-
val width: Int,
56-
val height: Int,
55+
val width: Int?,
56+
val height: Int?,
5757
val size: String,
5858
val url: String,
5959
) : Parcelable

0 commit comments

Comments
 (0)