ProductDto
Product Data Transfer Object
idinteger<int64>required
Unique identifier of the product
Example:
1moduleCodestringrequired
Module code (TF for Trade Finance, SCF for Supply Chain Finance)
Possible values: <= 10 characters
Example:
TFmoduleNamestringrequired
Human-readable module name
Possible values: <= 100 characters
Example:
Trade FinanceproductCodestringrequired
Unique product code within the module
Possible values: <= 50 characters
Example:
ILCproductNamestringrequired
Human-readable product name
Possible values: <= 200 characters
Example:
Import Letter of Creditdescriptionstringnullable
Detailed description of the product
Possible values: <= 500 characters
Example:
Product for managing Import Letter of Credit transactionscreatedAtstring<date-time>
Timestamp when the product was created
Example:
2025-01-15T09:36:22.500ZupdatedAtstring<date-time>
Timestamp when the product was last updated
Example:
2025-01-15T09:36:22.500ZProductDto
{
"id": 1,
"moduleCode": "TF",
"moduleName": "Trade Finance",
"productCode": "ILC",
"productName": "Import Letter of Credit",
"description": "Product for managing Import Letter of Credit transactions",
"createdAt": "2025-01-15T09:36:22.500Z",
"updatedAt": "2025-01-15T09:36:22.500Z"
}