| All Verbs | /MissionSetComment |
|---|
"use strict";
export class MissionSetComment {
/** @param {{Comment?:string,MissionDetailID?:number,Operator?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {string}
* @description Comment to add on an item to an order */
Comment;
/**
* @type {number}
* @description ID of the mission detail */
MissionDetailID;
/**
* @type {string}
* @description Name of operator */
Operator;
}
JavaScript MissionSetComment DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /MissionSetComment HTTP/1.1
Host: clouddemo.pickeos.com
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"Comment":"String","MissionDetailID":0,"Operator":"String"}