File tree Expand file tree Collapse file tree 6 files changed +8
-38
lines changed
client/src/commonMain/kotlin/com/algolia/client/model Expand file tree Collapse file tree 6 files changed +8
-38
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import kotlinx.serialization.json.*
13
13
@Serializable
14
14
public data class BannerImage (
15
15
16
- @SerialName(value = " urls" ) val urls : BannerImageUrl ? = null ,
16
+ @SerialName(value = " urls" ) val urls : List < BannerImageUrl > ? = null ,
17
17
18
18
@SerialName(value = " title" ) val title : String? = null ,
19
19
)
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -7,10 +7,11 @@ import kotlinx.serialization.json.*
7
7
/* *
8
8
* widgets returned from any rules that are applied to the current search.
9
9
*
10
- * @param banners
10
+ * @param banners banners defined in the merchandising studio for the given search.
11
11
*/
12
12
@Serializable
13
13
public data class Widgets (
14
14
15
- @SerialName(value = " banners" ) val banners : Banners ? = null ,
15
+ /* * banners defined in the merchandising studio for the given search. */
16
+ @SerialName(value = " banners" ) val banners : List <Banner >? = null ,
16
17
)
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import kotlinx.serialization.json.*
13
13
@Serializable
14
14
public data class BannerImage (
15
15
16
- @SerialName(value = " urls" ) val urls : BannerImageUrl ? = null ,
16
+ @SerialName(value = " urls" ) val urls : List < BannerImageUrl > ? = null ,
17
17
18
18
@SerialName(value = " title" ) val title : String? = null ,
19
19
)
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -7,10 +7,11 @@ import kotlinx.serialization.json.*
7
7
/* *
8
8
* widgets returned from any rules that are applied to the current search.
9
9
*
10
- * @param banners
10
+ * @param banners banners defined in the merchandising studio for the given search.
11
11
*/
12
12
@Serializable
13
13
public data class Widgets (
14
14
15
- @SerialName(value = " banners" ) val banners : Banners ? = null ,
15
+ /* * banners defined in the merchandising studio for the given search. */
16
+ @SerialName(value = " banners" ) val banners : List <Banner >? = null ,
16
17
)
You can’t perform that action at this time.
0 commit comments