We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1ac0ec2 + 5838aae commit bbb2a12Copy full SHA for bbb2a12
1 file changed
src/main/kotlin/com/ecwid/apiclient/v3/dto/report/request/ReportRequest.kt
@@ -38,6 +38,10 @@ data class ReportRequest(
38
timeScaleValue?.let { put("timeScaleValue", it.toString()) }
39
comparePeriod?.let { put("comparePeriod", it.toString()) }
40
firstDayOfWeek?.let { put("firstDayOfWeek", it.toString()) }
41
+ orderByMetric?.let { put("orderByMetric", it) }
42
+ orderDirection?.let { put("orderDirection", it) }
43
+ limit?.let { put("limit", it.toString()) }
44
+ offset?.let { put("offset", it.toString()) }
45
}.toMap()
46
}
47
0 commit comments