File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
src/main/java/com/example/zarinpal/data/remote/dto/transaction Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ import kotlinx.serialization.SerialName
66import kotlinx.serialization.Serializable
77
88/* *
9- * Represents the request data required to fetch transactions .
9+ * Data class for transaction query request .
1010 *
11- * @property terminalId The unique identifier for the terminal from which transactions are being requested .
12- * @property filter A filter string to apply to the transactions (e.g., " completed", " pending" ).
13- * @property limit The maximum number of transactions to return .
14- * @property offset The starting point for fetching transactions (used for pagination) .
15- * @property token A token used for additional security (nullable) .
11+ * @property terminalId Identifier of the terminal making the request .
12+ * @property filter Criteria used to filter transactions (e.g., completed, pending).
13+ * @property limit Maximum number of transactions to fetch .
14+ * @property offset Starting index for pagination.
15+ * @property token Optional authentication token .
1616 */
1717@Keep
1818@Serializable
@@ -22,5 +22,5 @@ data class TransactionRequest(
2222 val filter : FilterEnum ,
2323 val limit : Int ,
2424 val offset : Int ,
25- val token : String? = null ,
26- )
25+ val token : String? = null
26+ )
You can’t perform that action at this time.
0 commit comments