"use strict";
export class Outlook365Properties {
/** @param {{PidTag?:string,ItemId?:string,EwsUrl?:string,Token?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
PidTag;
/** @type {string} */
ItemId;
/** @type {string} */
EwsUrl;
/** @type {string} */
Token;
}
export class RegistrationValue {
/** @param {{Key?:string,Value?:string,ShadowValue?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
Key;
/** @type {string} */
Value;
/** @type {string} */
ShadowValue;
}
export class SaveDraftMail extends Outlook365Properties {
/** @param {{RegistrationProfileID?:string,Values?:RegistrationValue[],PidTag?:string,ItemId?:string,EwsUrl?:string,Token?:string}} [init] */
constructor(init) { super(init); Object.assign(this, init) }
/** @type {?string} */
RegistrationProfileID;
/** @type {RegistrationValue[]} */
Values;
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsonl/reply/SaveDraftMail HTTP/1.1
Host: test-do-services.klokgroep.nl
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"RegistrationProfileID":"00000000-0000-0000-0000-000000000000","Values":[{"Key":"00000000-0000-0000-0000-000000000000","Value":"String","ShadowValue":"String"}],"PidTag":"String","ItemId":"String","EwsUrl":"String","Token":"String"}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length false