Variable GetRemoteLinkByIdSchemaConst
GetRemoteLinkByIdSchema: ZodObject<
{
actionIds: ZodOptional<ZodArray<ZodString>>;
associations: ZodOptional<
ZodArray<
ZodUnion<
readonly [
ZodObject<
{
associationType: ZodCustom<
(...) & (...)
| "issueKeys"
| "issueIdOrKeys",
(...) & (...) | "issueKeys" | "issueIdOrKeys",
>;
values: ZodArray<ZodString>;
},
$loose,
>,
ZodObject<
{
associationType: ZodCustom<
(...) & (...)
| "serviceIdOrKeys",
(...) & (...) | "serviceIdOrKeys",
>;
values: ZodArray<ZodString>;
},
$loose,
>,
],
>,
>,
>;
attributeMap: ZodOptional<ZodRecord<ZodString, ZodAny>>;
description: ZodOptional<ZodString>;
displayName: ZodString;
id: ZodString;
lastUpdated: ZodCoercedDate<unknown>;
schemaVersion: ZodOptional<
ZodCustom<string & {} | "1.0", string & {} | "1.0">,
>;
status: ZodOptional<
ZodObject<
{
appearance: ZodCustom<
| "default"
| "new"
| "removed"
| "success"
| string & {}
| "prototype"
| "inprogress"
| "moved",
| "default"
| "new"
| "removed"
| "success"
| string & {}
| "prototype"
| "inprogress"
| "moved",
>;
label: ZodString;
},
$loose,
>,
>;
type: ZodCustom<
| "other"
| "document"
| "alert"
| string & {}
| "test"
| "security"
| "logFile"
| "prototype"
| "coverage"
| "bugReport",
| "other"
| "document"
| "alert"
| string & {}
| "test"
| "security"
| "logFile"
| "prototype"
| "coverage"
| "bugReport",
>;
updateSequenceNumber: ZodNumber;
url: ZodURL;
},
$loose,
> = ...
Data related to a single Remote Link.*