Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 4.65 KB

File metadata and controls

32 lines (26 loc) · 4.65 KB

DeleteCommentResponse

Delete a Comment

Example Usage

import { DeleteCommentResponse } from "@apideck/unify/models/components";

let value: DeleteCommentResponse = {
  statusCode: 200,
  status: "OK",
  service: "jira",
  resource: "Tickets",
  operation: "add",
  data: {
    id: "12345",
  },
};

Fields

Field Type Required Description Example
statusCode number ✔️ HTTP Response Status Code 200
status string ✔️ HTTP Response Status OK
service string ✔️ Apideck ID of service provider jira
resource string ✔️ Unified API resource name Tickets
operation string ✔️ Operation performed add
data components.UnifiedId ✔️ A object containing a unique identifier for the resource that was created, updated, or deleted.
raw Record<string, any> Raw response from the integration when raw=true query param is provided