TypeAlias.DppClaimResult
type DppClaimResult = {
passportId: string;
transactionHash: string;
};
Result of a DPP claim operation.
Returned by claim endpoints with complete information about the claimed Digital Product Passport and blockchain transaction details.
Type Declaration
| Name | Type |
|---|---|
passportId | string |
transactionHash | string |
Example
const result: DppClaimResult = {
dppId: "dpp_abc123",
tokenId: "42",
transactionHash: "0x1234567890abcdef..."
};