"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 .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsv/reply/GetApplicationInfo HTTP/1.1
Host: test-dogw.klokgroep.nl
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
IncludeModules: False,
IncludeOfficeAddins: False
}
HTTP/1.1 200 OK
Content-Type: text/jsv
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-01
}
],
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
}