Skip to content

Latest commit

 

History

History
42 lines (37 loc) · 7.43 KB

File metadata and controls

42 lines (37 loc) · 7.43 KB

CollectionTicketComment

Example Usage

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

let value: CollectionTicketComment = {
  id: "12345",
  body: "What internet provider do you use?",
  createdBy: "12345",
  updatedAt: new Date("2020-09-30T07:43:32.000Z"),
  createdAt: new Date("2020-09-30T07:43:32.000Z"),
  passThrough: [
    {
      serviceId: "<id>",
      extendPaths: [
        {
          path: "$.nested.property",
          value: {
            "TaxClassificationRef": {
              "value": "EUC-99990201-V1-00020000",
            },
          },
        },
      ],
    },
  ],
};

Fields

Field Type Required Description Example
id string A unique identifier for an object. 12345
body string Body of the comment What internet provider do you use?
customMappings Record<string, any> When custom mappings are configured on the resource, the result is included here.
createdBy string The user who created the object. 12345
updatedAt Date The date and time when the object was last updated. 2020-09-30T07:43:32.000Z
createdAt Date The date and time when the object was created. 2020-09-30T07:43:32.000Z
passThrough components.PassThroughBody[] The pass_through property allows passing service-specific, custom data or structured modifications in request body when creating or updating resources.