Variable DepositStatusUpdateConst
DepositStatusUpdate: TUnion<
[
TObject<
{ createdAt: TString; id: TString; status: TLiteral<"PENDING"> },
>,
TObject<
{ createdAt: TString; id: TString; status: TLiteral<"PROCESSING"> },
>,
TObject<
{ createdAt: TString; id: TString; status: TLiteral<"CANCELLED"> },
>,
TObject<
{
createdAt: TString;
id: TString;
status: TLiteral<"DEPOSITED">;
transactionId: TString;
},
>,
],
> = ...