We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 808ac16 commit 82f6580Copy full SHA for 82f6580
1 file changed
src/main/kotlin/com/ecwid/apiclient/v3/dto/report/request/ReportAdviceRequest.kt
@@ -7,16 +7,16 @@ import com.ecwid.apiclient.v3.responsefields.ResponseFields
7
8
data class ReportAdviceRequest(
9
val reportType: ReportType = ReportType.allTraffic,
10
-): ApiRequest {
+) : ApiRequest {
11
12
override fun toRequestInfo() = RequestInfo.createGetRequest(
13
- pathSegments = listOf(
14
- "reports",
15
- reportType.toString(),
16
- "tip"
17
- ),
18
- params = emptyMap(),
19
- responseFields = ResponseFields.All
20
- )
+ pathSegments = listOf(
+ "reports",
+ reportType.toString(),
+ "tip"
+ ),
+ params = emptyMap(),
+ responseFields = ResponseFields.All
+ )
21
22
}
0 commit comments