Skip to content

Commit d6cabe4

Browse files
committed
ECWID-161397 - add new field 'args' to EcwidApiError
1 parent 3494239 commit d6cabe4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/kotlin/com/ecwid/apiclient/v3/dto/common/EcwidApiError.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ package com.ecwid.apiclient.v3.dto.common
22

33
data class EcwidApiError(
44
val errorMessage: String? = null,
5-
val errorCode: String? = null
5+
val errorCode: String? = null,
6+
val args: Map<String, String>? = null,
67
)

0 commit comments

Comments
 (0)