Skip to content

Variable: GetRemoteLinkByIdSchema

ts
const 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 & object | "1.0", string & object | "1.0">>;
  status: ZodOptional<ZodObject<{
     appearance: ZodCustom<
        | "default"
        | "inprogress"
        | "new"
        | "removed"
        | "success"
        | string & object
        | "prototype"
        | "moved", 
        | "default"
        | "inprogress"
        | "new"
        | "removed"
        | "success"
        | string & object
        | "prototype"
       | "moved">;
     label: ZodString;
  }, $loose>>;
  type: ZodCustom<
     | "other"
     | "document"
     | "alert"
     | string & object
     | "test"
     | "security"
     | "logFile"
     | "prototype"
     | "coverage"
     | "bugReport", 
     | "other"
     | "document"
     | "alert"
     | string & object
     | "test"
     | "security"
     | "logFile"
     | "prototype"
     | "coverage"
    | "bugReport">;
  updateSequenceNumber: ZodNumber;
  url: ZodURL;
}, $loose>;

Defined in: src/agile/models/getRemoteLinkById.ts:7

Data related to a single Remote Link.*