Variable getEntityTransfersResponseSchemaConst
getEntityTransfersResponseSchema: ZodIntersection<
ZodObject<
{
page: ZodReadonly<ZodInt>;
pages: ZodReadonly<ZodInt>;
results: ZodReadonly<ZodInt>;
},
$strip,
>,
ZodObject<
{
data: ZodOptional<
ZodArray<
ZodObject<
{
created: ZodISODateTime;
entities: ZodObject<{ linodes: ZodArray<ZodInt> }, $strip>;
expiry: ZodISODateTime;
is_sender: ZodBoolean;
status: ZodEnum<
{
accepted: "accepted";
canceled: "canceled";
completed: "completed";
failed: "failed";
pending: "pending";
stale: "stale";
},
>;
token: ZodUUID;
updated: ZodISODateTime;
},
$strip,
>,
>,
>;
},
$strip,
>,
> = ...
Returns a paginated list of Entity Transfer objects containing the details of all transfers that have been created and accepted by this account.