getProductsByLabel

@GET(value = "label/{label}/{page}.json")
abstract suspend fun getProductsByLabel(    @Path(value = "label") label: String,     @Path(value = "page") page: Int,     @Query(value = "fields") fields: String): Search
@GET(value = "label/{label}.json")
abstract suspend fun getProductsByLabel(@Path(value = "label") label: String): Search