Skip to main content

TypeAlias.DppClaimResult

type DppClaimResult = z.infer<typeof dppClaimResultSchema>;

Result of a DPP claim operation.

Returned by claim endpoints with complete information about the claimed Digital Product Passport and blockchain transaction details.

Example

const result: DppClaimResult = {
dppId: "dpp_abc123",
tokenId: "42",
transactionHash: "0x1234567890abcdef..."
};