All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.mendixTemplate.ftl.json Maven / Gradle / Ivy

There is a newer version: 1.38.1
Show newest version
{
	"action" : "${action}",
	<#if params??>
	"params" : ${params}
	<#else>
	"params" : {
	<#if validationGuids??>
	"validationGuids" : [${validationGuids}],
	
	<#if username??>
	"username" : "${username}",
	"password" : "${password}"
	
	<#if guids??>
	"guids" : [${guids}],
	
	<#if ids??>
	"ids" : [${ids}],
	
	<#if xpath??>
	"xpath" : "${xpath}",
	
	<#if constraints??>
	"constraints" : "${constraints}",
	
	<#if sort??>
	"sort" : ${sort},
	
	<#if applyto??>
	"applyto" : "${applyto}",
	
	<#if gridid??>
	"gridid" : "${gridid}",
	
	<#if schema??>
	"schema" : ${schema},
	
	<#if count??>
	"count" : ${count?c},
	
	<#if aggregates??>
	"aggregates" : ${aggregates?c}
	
	<#if actionName??>
	"actionname" : "${actionName}",
	
	<#if asyncid??>
	"asyncid" : "${asyncid}"
	
	}
	
	<#if actionName??>,
	"changes" : {<#if changes??>${changes}},
	<#if objects??>
	"objects": [${objects}],
	
	"context" : [<#if contextGuids??>${contextGuids}]
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy