"use strict";
export class ModuleInformation {
/** @param {{ModuleName?:string,ModuleVersion?:string,ModuleDate?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
ModuleName;
/** @type {string} */
ModuleVersion;
/** @type {string} */
ModuleDate;
}
export class ApplicationInfo {
/** @param {{ApplicationName?:string,Version?:string,VersionGateway?:string,Environment?:string,MachineName?:string,CustomerCode?:string,CustomerBrandCode?:string,DatabaseName?:string,DatabaseVersion?:string,DatabaseServer?:string,UserName?:string,UserLoginName?:string,ModulesInformation?:ModuleInformation[],WebsiteIntranetUrl?:string,IDBOpties?:boolean,OnPremisesUrl?:string,OnLineUrl?:string,IsApiGateway?:boolean,HasCRMModuleActive?:boolean,HasExtranetModuleActive?:boolean,HasHuisstijlMOModuleActive?:boolean,HasDigitaalOndertekenenModuleActive?:boolean,HasDOVoorWordHuisstijl?:boolean,HasDOVoorWordRegistreren?:boolean,HasDOVoorExcelHuisstijl?:boolean,HasDOVoorExcelRegistreren?:boolean,HasDOVoorPowerPointHuisstijl?:boolean,HasDOVoorPowerPointRegistreren?:boolean,HasDOVoorOutlookHuisstijl?:boolean,HasDOVoorOutlookRegistreren?:boolean}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
ApplicationName;
/** @type {string} */
Version;
/** @type {string} */
VersionGateway;
/** @type {string} */
Environment;
/** @type {string} */
MachineName;
/** @type {string} */
CustomerCode;
/** @type {string} */
CustomerBrandCode;
/** @type {string} */
DatabaseName;
/** @type {string} */
DatabaseVersion;
/** @type {string} */
DatabaseServer;
/** @type {string} */
UserName;
/** @type {string} */
UserLoginName;
/** @type {ModuleInformation[]} */
ModulesInformation;
/** @type {string} */
WebsiteIntranetUrl;
/** @type {boolean} */
IDBOpties;
/** @type {string} */
OnPremisesUrl;
/** @type {string} */
OnLineUrl;
/** @type {boolean} */
IsApiGateway;
/** @type {boolean} */
HasCRMModuleActive;
/** @type {boolean} */
HasExtranetModuleActive;
/** @type {boolean} */
HasHuisstijlMOModuleActive;
/** @type {boolean} */
HasDigitaalOndertekenenModuleActive;
/** @type {boolean} */
HasDOVoorWordHuisstijl;
/** @type {boolean} */
HasDOVoorWordRegistreren;
/** @type {boolean} */
HasDOVoorExcelHuisstijl;
/** @type {boolean} */
HasDOVoorExcelRegistreren;
/** @type {boolean} */
HasDOVoorPowerPointHuisstijl;
/** @type {boolean} */
HasDOVoorPowerPointRegistreren;
/** @type {boolean} */
HasDOVoorOutlookHuisstijl;
/** @type {boolean} */
HasDOVoorOutlookRegistreren;
}
export class GetApplicationInfo {
/** @param {{IncludeModules?:boolean,IncludeOfficeAddins?:boolean}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {boolean} */
IncludeModules;
/** @type {boolean} */
IncludeOfficeAddins;
}
JavaScript GetApplicationInfo DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /json/reply/GetApplicationInfo HTTP/1.1
Host: dogw.klokgroep.nl
Accept: application/json
Content-Type: application/json
Content-Length: length
{"IncludeModules":false,"IncludeOfficeAddins":false}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"ApplicationName":"String","Version":"String","VersionGateway":"String","Environment":"String","MachineName":"String","CustomerCode":"String","CustomerBrandCode":"String","DatabaseName":"String","DatabaseVersion":"String","DatabaseServer":"String","UserName":"String","UserLoginName":"String","ModulesInformation":[{"ModuleName":"String","ModuleVersion":"String","ModuleDate":"0001-01-01T00:00:00.0000000"}],"WebsiteIntranetUrl":"String","IDBOpties":false,"OnPremisesUrl":"String","OnLineUrl":"String","IsApiGateway":false,"HasCRMModuleActive":false,"HasExtranetModuleActive":false,"HasHuisstijlMOModuleActive":false,"HasDigitaalOndertekenenModuleActive":false,"HasDOVoorWordHuisstijl":false,"HasDOVoorWordRegistreren":false,"HasDOVoorExcelHuisstijl":false,"HasDOVoorExcelRegistreren":false,"HasDOVoorPowerPointHuisstijl":false,"HasDOVoorPowerPointRegistreren":false,"HasDOVoorOutlookHuisstijl":false,"HasDOVoorOutlookRegistreren":false}