File tree Expand file tree Collapse file tree
main/kotlin/com/ecwid/apiclient/v3/dto/report/result
test/kotlin/com/ecwid/apiclient/v3 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11package com.ecwid.apiclient.v3.dto.report.result
22
3+ import com.ecwid.apiclient.v3.dto.common.ApiFetchedDTO
4+
35data class FetchedReportAdviceResponse (
46 val tip : String? = null
5- )
7+ ) : ApiFetchedDTO {
8+
9+ override fun getModifyKind () = ApiFetchedDTO .ModifyKind .ReadOnly
10+
11+ }
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ class DtoContractUnitTest {
151151 .filterNot { dtoClass -> dtoClass.isClassifiedDTOOrEnclosingClass(* dtoMarkerInterfaces) }
152152 assertTrue(problemDtoClasses.isEmpty()) {
153153 val interfacesStr = dtoMarkerInterfaces.joinToString(separator = " , " ) { int -> int.simpleName }
154- " Some of top level DTO data classes does implement one of marker interfaces [$interfacesStr ]:\n " +
154+ " Some of top level DTO data classes do not implement any marker interfaces [$interfacesStr ]:\n " +
155155 classesToLoggableString(problemDtoClasses)
156156 }
157157 }
You can’t perform that action at this time.
0 commit comments