circle-info
Squadcast is now SolarWinds Incident Response

V3IncidentsNotesNoteResponse

Represents a note associated with an incident.

Example Usage

import { V3IncidentsNotesNoteResponse } from "@solarwinds/squadcast-sdk-typescript/models";

let value: V3IncidentsNotesNoteResponse = {
  id: "<id>",
  createdAt: "1705278878354",
  updatedAt: "1735616400174",
  organizationId: "<id>",
  incidentId: "<id>",
  userId: "<id>",
  message: "<value>",
  type: "<value>",
  attachments: [
    "<value 1>",
  ],
  user: {
    id: "<id>",
    firstName: "Fabian",
    lastName: "Lowe",
    deleted: true,
  },
  replacedMessage: "<value>",
};

Fields

Field
Type
Required
Description

id

string

✔️

N/A

createdAt

string

✔️

N/A

updatedAt

string

✔️

N/A

organizationId

string

✔️

N/A

incidentId

string

✔️

N/A

userId

string

✔️

N/A

message

string

✔️

N/A

type

string

✔️

N/A

attachments

string[]

✔️

N/A

user

✔️

N/A

replacedMessage

string

✔️

N/A

Last updated