GetComponent C Example
#include <C_CkRest.h>
#include <C_CkAuthAws.h>
#include <C_CkStringBuilder.h>
#include <C_CkJsonObject.h>
void ChilkatSample(void)
{
HCkRest rest;
BOOL success;
HCkAuthAws authAws;
HCkStringBuilder sbResponseBody;
int respStatusCode;
HCkJsonObject jResp;
const char *field;
const char *operand;
const char *operator;
int j;
int count_j;
const char *strVal;
const char *componentType;
const char *StringAction;
const char *StringBindingEvent;
const char *AnchorComponentName;
int AnchorConfigured;
const char *AnchorEvent;
const char *AnchorImportedValue;
const char *AnchorValue;
const char *name;
const char *sourceId;
const char *direction;
const char *StringString;
const char *variantValuesString;
const char *AppId;
const char *Bucket;
const char *DefaultValue;
const char *Field;
const char *Key;
const char *Model;
const char *UserAttribute;
const char *StringDefaultValue;
const char *v_Type;
const char *StringModel;
const char *PredicateField;
const char *Operand;
const char *Operator;
const char *ComponentType;
int CreatedAt;
const char *EnvironmentName;
const char *Action;
const char *BindingEvent;
const char *BindingPropertiesField;
const char *Property;
const char *Element;
const char *StringProperty;
const char *CollectionBindingPropertiesField;
const char *CollectionBindingPropertiesProperty;
const char *ComponentName;
const char *v_Else;
const char *ConditionField;
const char *ConditionOperand;
const char *OperandType;
const char *ConditionOperator;
const char *ConditionProperty;
const char *v_Then;
int Configured;
const char *AnchorDefaultValue;
const char *v_Event;
const char *ImportedValue;
const char *AnchorModel;
const char *AnchorProperty;
const char *AnchorType;
const char *AnchorUserAttribute;
const char *Value;
const char *BindingPropertiesProperty;
const char *StringElement;
const char *StringComponentName;
const char *ConditionElse;
const char *ConditionOperandType;
const char *ConditionThen;
int StringConfigured;
const char *StringEvent;
const char *StringImportedValue;
const char *StringType;
const char *StringUserAttribute;
const char *StringValue;
const char *GlobalComponentName;
int GlobalConfigured;
const char *GlobalDefaultValue;
const char *GlobalEvent;
const char *GlobalImportedValue;
const char *GlobalModel;
const char *GlobalProperty;
const char *GlobalType;
const char *GlobalUserAttribute;
const char *GlobalValue;
const char *IdComponentName;
int IdConfigured;
const char *IdDefaultValue;
const char *IdEvent;
const char *IdImportedValue;
const char *IdModel;
const char *IdProperty;
const char *IdType;
const char *IdUserAttribute;
const char *IdValue;
const char *ParametersModel;
const char *StateComponentName;
const char *StateProperty;
const char *SetComponentName;
int SetConfigured;
const char *SetDefaultValue;
const char *SetEvent;
const char *SetImportedValue;
const char *SetModel;
const char *SetProperty;
const char *SetType;
const char *SetUserAttribute;
const char *SetValue;
const char *TargetComponentName;
int TargetConfigured;
const char *TargetDefaultValue;
const char *TargetEvent;
const char *TargetImportedValue;
const char *TargetModel;
const char *TargetProperty;
const char *TargetType;
const char *TargetUserAttribute;
const char *TargetValue;
const char *TypeComponentName;
int TypeConfigured;
const char *TypeDefaultValue;
const char *TypeEvent;
const char *TypeImportedValue;
const char *TypeModel;
const char *TypeProperty;
const char *TypeType;
const char *TypeUserAttribute;
const char *TypeValue;
const char *UrlComponentName;
int UrlConfigured;
const char *UrlDefaultValue;
const char *UrlEvent;
const char *UrlImportedValue;
const char *UrlModel;
const char *UrlProperty;
const char *UrlType;
const char *UrlUserAttribute;
const char *UrlValue;
const char *Id;
int ModifiedAt;
const char *Name;
const char *v_String;
const char *SchemaVersion;
const char *SourceId;
const char *TagsString;
int i;
int count_i;
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
rest = CkRest_Create();
authAws = CkAuthAws_Create();
CkAuthAws_putAccessKey(authAws,"AWS_ACCESS_KEY");
CkAuthAws_putSecretKey(authAws,"AWS_SECRET_KEY");
// Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
CkAuthAws_putRegion(authAws,"us-west-2");
CkAuthAws_putServiceName(authAws,"amplifyuibuilder");
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
CkRest_SetAuthAws(rest,authAws);
// URL: https://amplifyuibuilder.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = CkRest_Connect(rest,"amplifyuibuilder.us-west-2.amazonaws.com",443,TRUE,TRUE);
if (success != TRUE) {
printf("ConnectFailReason: %d\n",CkRest_getConnectFailReason(rest));
printf("%s\n",CkRest_lastErrorText(rest));
CkRest_Dispose(rest);
CkAuthAws_Dispose(authAws);
return;
}
CkRest_AddHeader(rest,"Content-Type","application/x-amz-json-1.1");
CkRest_AddHeader(rest,"X-Amz-Target","GetComponent");
sbResponseBody = CkStringBuilder_Create();
success = CkRest_FullRequestNoBodySb(rest,"GET","/app/{appId}/environment/{environmentName}/components/{id}",sbResponseBody);
if (success != TRUE) {
printf("%s\n",CkRest_lastErrorText(rest));
CkRest_Dispose(rest);
CkAuthAws_Dispose(authAws);
CkStringBuilder_Dispose(sbResponseBody);
return;
}
respStatusCode = CkRest_getResponseStatusCode(rest);
printf("response status code = %d\n",respStatusCode);
if (respStatusCode != 200) {
printf("Response Header:\n");
printf("%s\n",CkRest_responseHeader(rest));
printf("Response Body:\n");
printf("%s\n",CkStringBuilder_getAsString(sbResponseBody));
CkRest_Dispose(rest);
CkAuthAws_Dispose(authAws);
CkStringBuilder_Dispose(sbResponseBody);
return;
}
jResp = CkJsonObject_Create();
CkJsonObject_LoadSb(jResp,sbResponseBody);
// The following code parses the JSON response.
// A sample JSON response is shown below the sample code.
// Use this online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
// Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
// See this example explaining how this memory should be used: const char * functions.
AppId = CkJsonObject_stringOf(jResp,"component.appId");
Bucket = CkJsonObject_stringOf(jResp,"component.bindingProperties.string.bindingProperties.bucket");
DefaultValue = CkJsonObject_stringOf(jResp,"component.bindingProperties.string.bindingProperties.defaultValue");
Field = CkJsonObject_stringOf(jResp,"component.bindingProperties.string.bindingProperties.field");
Key = CkJsonObject_stringOf(jResp,"component.bindingProperties.string.bindingProperties.key");
Model = CkJsonObject_stringOf(jResp,"component.bindingProperties.string.bindingProperties.model");
UserAttribute = CkJsonObject_stringOf(jResp,"component.bindingProperties.string.bindingProperties.userAttribute");
StringDefaultValue = CkJsonObject_stringOf(jResp,"component.bindingProperties.string.defaultValue");
v_Type = CkJsonObject_stringOf(jResp,"component.bindingProperties.string.type");
StringModel = CkJsonObject_stringOf(jResp,"component.collectionProperties.string.model");
PredicateField = CkJsonObject_stringOf(jResp,"component.collectionProperties.string.predicate.field");
Operand = CkJsonObject_stringOf(jResp,"component.collectionProperties.string.predicate.operand");
Operator = CkJsonObject_stringOf(jResp,"component.collectionProperties.string.predicate.operator");
ComponentType = CkJsonObject_stringOf(jResp,"component.componentType");
CreatedAt = CkJsonObject_IntOf(jResp,"component.createdAt");
EnvironmentName = CkJsonObject_stringOf(jResp,"component.environmentName");
Action = CkJsonObject_stringOf(jResp,"component.events.string.action");
BindingEvent = CkJsonObject_stringOf(jResp,"component.events.string.bindingEvent");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.bindingProperties.field");
Property = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.bindingProperties.property");
Element = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.collectionBindingProperties.property");
ComponentName = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.componentName");
v_Else = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.condition.operand");
OperandType = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.condition.property");
v_Then = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.condition.then");
Configured = CkJsonObject_IntOf(jResp,"component.events.string.parameters.anchor.configured");
AnchorDefaultValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.defaultValue");
v_Event = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.event");
ImportedValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.importedValue");
AnchorModel = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.model");
AnchorProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.property");
AnchorType = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.type");
AnchorUserAttribute = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.userAttribute");
Value = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.value");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.bindingProperties.field");
BindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.bindingProperties.property");
StringElement = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.collectionBindingProperties.property");
StringComponentName = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.componentName");
ConditionElse = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.condition.operand");
ConditionOperandType = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.condition.property");
ConditionThen = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.condition.then");
StringConfigured = CkJsonObject_IntOf(jResp,"component.events.string.parameters.fields.string.configured");
StringDefaultValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.defaultValue");
StringEvent = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.event");
StringImportedValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.importedValue");
StringModel = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.model");
StringProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.property");
StringType = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.type");
StringUserAttribute = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.userAttribute");
StringValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.value");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.bindingProperties.field");
BindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.bindingProperties.property");
StringElement = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.collectionBindingProperties.property");
GlobalComponentName = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.componentName");
ConditionElse = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.condition.operand");
ConditionOperandType = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.condition.property");
ConditionThen = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.condition.then");
GlobalConfigured = CkJsonObject_IntOf(jResp,"component.events.string.parameters.global.configured");
GlobalDefaultValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.defaultValue");
GlobalEvent = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.event");
GlobalImportedValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.importedValue");
GlobalModel = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.model");
GlobalProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.property");
GlobalType = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.type");
GlobalUserAttribute = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.userAttribute");
GlobalValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.value");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.bindingProperties.field");
BindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.bindingProperties.property");
StringElement = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.collectionBindingProperties.property");
IdComponentName = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.componentName");
ConditionElse = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.condition.operand");
ConditionOperandType = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.condition.property");
ConditionThen = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.condition.then");
IdConfigured = CkJsonObject_IntOf(jResp,"component.events.string.parameters.id.configured");
IdDefaultValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.defaultValue");
IdEvent = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.event");
IdImportedValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.importedValue");
IdModel = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.model");
IdProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.property");
IdType = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.type");
IdUserAttribute = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.userAttribute");
IdValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.value");
ParametersModel = CkJsonObject_stringOf(jResp,"component.events.string.parameters.model");
StateComponentName = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.componentName");
StateProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.property");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.bindingProperties.field");
BindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.bindingProperties.property");
StringElement = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.collectionBindingProperties.property");
SetComponentName = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.componentName");
ConditionElse = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.condition.operand");
ConditionOperandType = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.condition.property");
ConditionThen = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.condition.then");
SetConfigured = CkJsonObject_IntOf(jResp,"component.events.string.parameters.state.set.configured");
SetDefaultValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.defaultValue");
SetEvent = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.event");
SetImportedValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.importedValue");
SetModel = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.model");
SetProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.property");
SetType = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.type");
SetUserAttribute = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.userAttribute");
SetValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.value");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.bindingProperties.field");
BindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.bindingProperties.property");
StringElement = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.collectionBindingProperties.property");
TargetComponentName = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.componentName");
ConditionElse = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.condition.operand");
ConditionOperandType = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.condition.property");
ConditionThen = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.condition.then");
TargetConfigured = CkJsonObject_IntOf(jResp,"component.events.string.parameters.target.configured");
TargetDefaultValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.defaultValue");
TargetEvent = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.event");
TargetImportedValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.importedValue");
TargetModel = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.model");
TargetProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.property");
TargetType = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.type");
TargetUserAttribute = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.userAttribute");
TargetValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.value");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.bindingProperties.field");
BindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.bindingProperties.property");
StringElement = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.collectionBindingProperties.property");
TypeComponentName = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.componentName");
ConditionElse = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.condition.operand");
ConditionOperandType = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.condition.property");
ConditionThen = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.condition.then");
TypeConfigured = CkJsonObject_IntOf(jResp,"component.events.string.parameters.type.configured");
TypeDefaultValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.defaultValue");
TypeEvent = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.event");
TypeImportedValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.importedValue");
TypeModel = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.model");
TypeProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.property");
TypeType = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.type");
TypeUserAttribute = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.userAttribute");
TypeValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.value");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.bindingProperties.field");
BindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.bindingProperties.property");
StringElement = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.collectionBindingProperties.property");
UrlComponentName = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.componentName");
ConditionElse = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.condition.operand");
ConditionOperandType = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.condition.property");
ConditionThen = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.condition.then");
UrlConfigured = CkJsonObject_IntOf(jResp,"component.events.string.parameters.url.configured");
UrlDefaultValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.defaultValue");
UrlEvent = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.event");
UrlImportedValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.importedValue");
UrlModel = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.model");
UrlProperty = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.property");
UrlType = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.type");
UrlUserAttribute = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.userAttribute");
UrlValue = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.value");
Id = CkJsonObject_stringOf(jResp,"component.id");
ModifiedAt = CkJsonObject_IntOf(jResp,"component.modifiedAt");
Name = CkJsonObject_stringOf(jResp,"component.name");
v_String = CkJsonObject_stringOf(jResp,"component.overrides.string.string");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.properties.string.bindingProperties.field");
BindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.properties.string.bindingProperties.property");
StringElement = CkJsonObject_stringOf(jResp,"component.properties.string.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.properties.string.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.properties.string.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.properties.string.collectionBindingProperties.property");
StringComponentName = CkJsonObject_stringOf(jResp,"component.properties.string.componentName");
ConditionElse = CkJsonObject_stringOf(jResp,"component.properties.string.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.properties.string.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.properties.string.condition.operand");
ConditionOperandType = CkJsonObject_stringOf(jResp,"component.properties.string.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.properties.string.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.properties.string.condition.property");
ConditionThen = CkJsonObject_stringOf(jResp,"component.properties.string.condition.then");
StringConfigured = CkJsonObject_IntOf(jResp,"component.properties.string.configured");
StringDefaultValue = CkJsonObject_stringOf(jResp,"component.properties.string.defaultValue");
StringEvent = CkJsonObject_stringOf(jResp,"component.properties.string.event");
StringImportedValue = CkJsonObject_stringOf(jResp,"component.properties.string.importedValue");
StringModel = CkJsonObject_stringOf(jResp,"component.properties.string.model");
StringProperty = CkJsonObject_stringOf(jResp,"component.properties.string.property");
StringType = CkJsonObject_stringOf(jResp,"component.properties.string.type");
StringUserAttribute = CkJsonObject_stringOf(jResp,"component.properties.string.userAttribute");
StringValue = CkJsonObject_stringOf(jResp,"component.properties.string.value");
SchemaVersion = CkJsonObject_stringOf(jResp,"component.schemaVersion");
SourceId = CkJsonObject_stringOf(jResp,"component.sourceId");
TagsString = CkJsonObject_stringOf(jResp,"component.tags.string");
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"component.bindingProperties.string.bindingProperties.predicates");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
field = CkJsonObject_stringOf(jResp,"component.bindingProperties.string.bindingProperties.predicates[i].field");
operand = CkJsonObject_stringOf(jResp,"component.bindingProperties.string.bindingProperties.predicates[i].operand");
operator = CkJsonObject_stringOf(jResp,"component.bindingProperties.string.bindingProperties.predicates[i].operator");
j = 0;
count_j = CkJsonObject_SizeOfArray(jResp,"component.bindingProperties.string.bindingProperties.predicates[i].and");
while (j < count_j) {
CkJsonObject_putJ(jResp,j);
strVal = CkJsonObject_stringOf(jResp,"component.bindingProperties.string.bindingProperties.predicates[i].and[j]");
j = j + 1;
}
j = 0;
count_j = CkJsonObject_SizeOfArray(jResp,"component.bindingProperties.string.bindingProperties.predicates[i].or");
while (j < count_j) {
CkJsonObject_putJ(jResp,j);
strVal = CkJsonObject_stringOf(jResp,"component.bindingProperties.string.bindingProperties.predicates[i].or[j]");
j = j + 1;
}
i = i + 1;
}
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"component.children");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
componentType = CkJsonObject_stringOf(jResp,"component.children[i].componentType");
StringAction = CkJsonObject_stringOf(jResp,"component.children[i].events.string.action");
StringBindingEvent = CkJsonObject_stringOf(jResp,"component.children[i].events.string.bindingEvent");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.bindingProperties.field");
BindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.bindingProperties.property");
StringElement = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.collectionBindingProperties.property");
AnchorComponentName = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.componentName");
ConditionElse = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.condition.operand");
ConditionOperandType = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.condition.property");
ConditionThen = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.condition.then");
AnchorConfigured = CkJsonObject_IntOf(jResp,"component.children[i].events.string.parameters.anchor.configured");
AnchorDefaultValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.defaultValue");
AnchorEvent = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.event");
AnchorImportedValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.importedValue");
AnchorModel = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.model");
AnchorProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.property");
AnchorType = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.type");
AnchorUserAttribute = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.userAttribute");
AnchorValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.value");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.bindingProperties.field");
BindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.bindingProperties.property");
StringElement = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.collectionBindingProperties.property");
StringComponentName = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.componentName");
ConditionElse = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.condition.operand");
ConditionOperandType = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.condition.property");
ConditionThen = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.condition.then");
StringConfigured = CkJsonObject_IntOf(jResp,"component.children[i].events.string.parameters.fields.string.configured");
StringDefaultValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.defaultValue");
StringEvent = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.event");
StringImportedValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.importedValue");
StringModel = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.model");
StringProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.property");
StringType = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.type");
StringUserAttribute = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.userAttribute");
StringValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.value");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.bindingProperties.field");
BindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.bindingProperties.property");
StringElement = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.collectionBindingProperties.property");
GlobalComponentName = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.componentName");
ConditionElse = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.condition.operand");
ConditionOperandType = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.condition.property");
ConditionThen = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.condition.then");
GlobalConfigured = CkJsonObject_IntOf(jResp,"component.children[i].events.string.parameters.global.configured");
GlobalDefaultValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.defaultValue");
GlobalEvent = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.event");
GlobalImportedValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.importedValue");
GlobalModel = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.model");
GlobalProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.property");
GlobalType = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.type");
GlobalUserAttribute = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.userAttribute");
GlobalValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.value");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.bindingProperties.field");
BindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.bindingProperties.property");
StringElement = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.collectionBindingProperties.property");
IdComponentName = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.componentName");
ConditionElse = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.condition.operand");
ConditionOperandType = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.condition.property");
ConditionThen = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.condition.then");
IdConfigured = CkJsonObject_IntOf(jResp,"component.children[i].events.string.parameters.id.configured");
IdDefaultValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.defaultValue");
IdEvent = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.event");
IdImportedValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.importedValue");
IdModel = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.model");
IdProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.property");
IdType = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.type");
IdUserAttribute = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.userAttribute");
IdValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.value");
ParametersModel = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.model");
StateComponentName = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.componentName");
StateProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.property");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.bindingProperties.field");
BindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.bindingProperties.property");
StringElement = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.collectionBindingProperties.property");
SetComponentName = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.componentName");
ConditionElse = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.condition.operand");
ConditionOperandType = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.condition.property");
ConditionThen = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.condition.then");
SetConfigured = CkJsonObject_IntOf(jResp,"component.children[i].events.string.parameters.state.set.configured");
SetDefaultValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.defaultValue");
SetEvent = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.event");
SetImportedValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.importedValue");
SetModel = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.model");
SetProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.property");
SetType = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.type");
SetUserAttribute = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.userAttribute");
SetValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.value");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.bindingProperties.field");
BindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.bindingProperties.property");
StringElement = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.collectionBindingProperties.property");
TargetComponentName = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.componentName");
ConditionElse = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.condition.operand");
ConditionOperandType = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.condition.property");
ConditionThen = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.condition.then");
TargetConfigured = CkJsonObject_IntOf(jResp,"component.children[i].events.string.parameters.target.configured");
TargetDefaultValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.defaultValue");
TargetEvent = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.event");
TargetImportedValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.importedValue");
TargetModel = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.model");
TargetProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.property");
TargetType = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.type");
TargetUserAttribute = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.userAttribute");
TargetValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.value");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.bindingProperties.field");
BindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.bindingProperties.property");
StringElement = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.collectionBindingProperties.property");
TypeComponentName = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.componentName");
ConditionElse = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.condition.operand");
ConditionOperandType = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.condition.property");
ConditionThen = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.condition.then");
TypeConfigured = CkJsonObject_IntOf(jResp,"component.children[i].events.string.parameters.type.configured");
TypeDefaultValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.defaultValue");
TypeEvent = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.event");
TypeImportedValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.importedValue");
TypeModel = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.model");
TypeProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.property");
TypeType = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.type");
TypeUserAttribute = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.userAttribute");
TypeValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.value");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.bindingProperties.field");
BindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.bindingProperties.property");
StringElement = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.collectionBindingProperties.property");
UrlComponentName = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.componentName");
ConditionElse = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.condition.operand");
ConditionOperandType = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.condition.property");
ConditionThen = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.condition.then");
UrlConfigured = CkJsonObject_IntOf(jResp,"component.children[i].events.string.parameters.url.configured");
UrlDefaultValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.defaultValue");
UrlEvent = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.event");
UrlImportedValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.importedValue");
UrlModel = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.model");
UrlProperty = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.property");
UrlType = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.type");
UrlUserAttribute = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.userAttribute");
UrlValue = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.value");
name = CkJsonObject_stringOf(jResp,"component.children[i].name");
BindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.bindingProperties.field");
BindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.bindingProperties.property");
StringElement = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.bindings.string.element");
StringProperty = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.bindings.string.property");
CollectionBindingPropertiesField = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.collectionBindingProperties.field");
CollectionBindingPropertiesProperty = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.collectionBindingProperties.property");
StringComponentName = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.componentName");
ConditionElse = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.condition.else");
ConditionField = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.condition.field");
ConditionOperand = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.condition.operand");
ConditionOperandType = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.condition.operandType");
ConditionOperator = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.condition.operator");
ConditionProperty = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.condition.property");
ConditionThen = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.condition.then");
StringConfigured = CkJsonObject_IntOf(jResp,"component.children[i].properties.string.configured");
StringDefaultValue = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.defaultValue");
StringEvent = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.event");
StringImportedValue = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.importedValue");
StringModel = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.model");
StringProperty = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.property");
StringType = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.type");
StringUserAttribute = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.userAttribute");
StringValue = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.value");
sourceId = CkJsonObject_stringOf(jResp,"component.children[i].sourceId");
j = 0;
count_j = CkJsonObject_SizeOfArray(jResp,"component.children[i].children");
while (j < count_j) {
CkJsonObject_putJ(jResp,j);
strVal = CkJsonObject_stringOf(jResp,"component.children[i].children[j]");
j = j + 1;
}
j = 0;
count_j = CkJsonObject_SizeOfArray(jResp,"component.children[i].events.string.parameters.anchor.concat");
while (j < count_j) {
CkJsonObject_putJ(jResp,j);
strVal = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.anchor.concat[j]");
j = j + 1;
}
j = 0;
count_j = CkJsonObject_SizeOfArray(jResp,"component.children[i].events.string.parameters.fields.string.concat");
while (j < count_j) {
CkJsonObject_putJ(jResp,j);
strVal = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.fields.string.concat[j]");
j = j + 1;
}
j = 0;
count_j = CkJsonObject_SizeOfArray(jResp,"component.children[i].events.string.parameters.global.concat");
while (j < count_j) {
CkJsonObject_putJ(jResp,j);
strVal = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.global.concat[j]");
j = j + 1;
}
j = 0;
count_j = CkJsonObject_SizeOfArray(jResp,"component.children[i].events.string.parameters.id.concat");
while (j < count_j) {
CkJsonObject_putJ(jResp,j);
strVal = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.id.concat[j]");
j = j + 1;
}
j = 0;
count_j = CkJsonObject_SizeOfArray(jResp,"component.children[i].events.string.parameters.state.set.concat");
while (j < count_j) {
CkJsonObject_putJ(jResp,j);
strVal = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.state.set.concat[j]");
j = j + 1;
}
j = 0;
count_j = CkJsonObject_SizeOfArray(jResp,"component.children[i].events.string.parameters.target.concat");
while (j < count_j) {
CkJsonObject_putJ(jResp,j);
strVal = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.target.concat[j]");
j = j + 1;
}
j = 0;
count_j = CkJsonObject_SizeOfArray(jResp,"component.children[i].events.string.parameters.type.concat");
while (j < count_j) {
CkJsonObject_putJ(jResp,j);
strVal = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.type.concat[j]");
j = j + 1;
}
j = 0;
count_j = CkJsonObject_SizeOfArray(jResp,"component.children[i].events.string.parameters.url.concat");
while (j < count_j) {
CkJsonObject_putJ(jResp,j);
strVal = CkJsonObject_stringOf(jResp,"component.children[i].events.string.parameters.url.concat[j]");
j = j + 1;
}
j = 0;
count_j = CkJsonObject_SizeOfArray(jResp,"component.children[i].properties.string.concat");
while (j < count_j) {
CkJsonObject_putJ(jResp,j);
strVal = CkJsonObject_stringOf(jResp,"component.children[i].properties.string.concat[j]");
j = j + 1;
}
i = i + 1;
}
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"component.collectionProperties.string.identifiers");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
strVal = CkJsonObject_stringOf(jResp,"component.collectionProperties.string.identifiers[i]");
i = i + 1;
}
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"component.collectionProperties.string.predicate.and");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
strVal = CkJsonObject_stringOf(jResp,"component.collectionProperties.string.predicate.and[i]");
i = i + 1;
}
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"component.collectionProperties.string.predicate.or");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
strVal = CkJsonObject_stringOf(jResp,"component.collectionProperties.string.predicate.or[i]");
i = i + 1;
}
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"component.collectionProperties.string.sort");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
direction = CkJsonObject_stringOf(jResp,"component.collectionProperties.string.sort[i].direction");
field = CkJsonObject_stringOf(jResp,"component.collectionProperties.string.sort[i].field");
i = i + 1;
}
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"component.events.string.parameters.anchor.concat");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
strVal = CkJsonObject_stringOf(jResp,"component.events.string.parameters.anchor.concat[i]");
i = i + 1;
}
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"component.events.string.parameters.fields.string.concat");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
strVal = CkJsonObject_stringOf(jResp,"component.events.string.parameters.fields.string.concat[i]");
i = i + 1;
}
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"component.events.string.parameters.global.concat");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
strVal = CkJsonObject_stringOf(jResp,"component.events.string.parameters.global.concat[i]");
i = i + 1;
}
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"component.events.string.parameters.id.concat");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
strVal = CkJsonObject_stringOf(jResp,"component.events.string.parameters.id.concat[i]");
i = i + 1;
}
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"component.events.string.parameters.state.set.concat");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
strVal = CkJsonObject_stringOf(jResp,"component.events.string.parameters.state.set.concat[i]");
i = i + 1;
}
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"component.events.string.parameters.target.concat");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
strVal = CkJsonObject_stringOf(jResp,"component.events.string.parameters.target.concat[i]");
i = i + 1;
}
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"component.events.string.parameters.type.concat");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
strVal = CkJsonObject_stringOf(jResp,"component.events.string.parameters.type.concat[i]");
i = i + 1;
}
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"component.events.string.parameters.url.concat");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
strVal = CkJsonObject_stringOf(jResp,"component.events.string.parameters.url.concat[i]");
i = i + 1;
}
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"component.properties.string.concat");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
strVal = CkJsonObject_stringOf(jResp,"component.properties.string.concat[i]");
i = i + 1;
}
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"component.variants");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
StringString = CkJsonObject_stringOf(jResp,"component.variants[i].overrides.string.string");
variantValuesString = CkJsonObject_stringOf(jResp,"component.variants[i].variantValues.string");
i = i + 1;
}
// A sample JSON response body parsed by the above code:
// {
// "component": {
// "appId": "string",
// "bindingProperties": {
// "string": {
// "bindingProperties": {
// "bucket": "string",
// "defaultValue": "string",
// "field": "string",
// "key": "string",
// "model": "string",
// "predicates": [
// {
// "and": [
// "Predicate"
// ],
// "field": "string",
// "operand": "string",
// "operator": "string",
// "or": [
// "Predicate"
// ]
// }
// ],
// "userAttribute": "string"
// },
// "defaultValue": "string",
// "type": "string"
// }
// },
// "children": [
// {
// "children": [
// "ComponentChild"
// ],
// "componentType": "string",
// "events": {
// "string": {
// "action": "string",
// "bindingEvent": "string",
// "parameters": {
// "anchor": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// },
// "fields": {
// "string": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// }
// },
// "global": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// },
// "id": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// },
// "model": "string",
// "state": {
// "componentName": "string",
// "property": "string",
// "set": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// }
// },
// "target": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// },
// "type": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// },
// "url": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// }
// }
// }
// },
// "name": "string",
// "properties": {
// "string": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// }
// },
// "sourceId": "string"
// }
// ],
// "collectionProperties": {
// "string": {
// "identifiers": [
// "string"
// ],
// "model": "string",
// "predicate": {
// "and": [
// "Predicate"
// ],
// "field": "string",
// "operand": "string",
// "operator": "string",
// "or": [
// "Predicate"
// ]
// },
// "sort": [
// {
// "direction": "string",
// "field": "string"
// }
// ]
// }
// },
// "componentType": "string",
// "createdAt": number,
// "environmentName": "string",
// "events": {
// "string": {
// "action": "string",
// "bindingEvent": "string",
// "parameters": {
// "anchor": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// },
// "fields": {
// "string": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// }
// },
// "global": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// },
// "id": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// },
// "model": "string",
// "state": {
// "componentName": "string",
// "property": "string",
// "set": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// }
// },
// "target": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// },
// "type": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// },
// "url": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// }
// }
// }
// },
// "id": "string",
// "modifiedAt": number,
// "name": "string",
// "overrides": {
// "string": {
// "string": "string"
// }
// },
// "properties": {
// "string": {
// "bindingProperties": {
// "field": "string",
// "property": "string"
// },
// "bindings": {
// "string": {
// "element": "string",
// "property": "string"
// }
// },
// "collectionBindingProperties": {
// "field": "string",
// "property": "string"
// },
// "componentName": "string",
// "concat": [
// "ComponentProperty"
// ],
// "condition": {
// "else": "ComponentProperty",
// "field": "string",
// "operand": "string",
// "operandType": "string",
// "operator": "string",
// "property": "string",
// "then": "ComponentProperty"
// },
// "configured": boolean,
// "defaultValue": "string",
// "event": "string",
// "importedValue": "string",
// "model": "string",
// "property": "string",
// "type": "string",
// "userAttribute": "string",
// "value": "string"
// }
// },
// "schemaVersion": "string",
// "sourceId": "string",
// "tags": {
// "string": "string"
// },
// "variants": [
// {
// "overrides": {
// "string": {
// "string": "string"
// }
// },
// "variantValues": {
// "string": "string"
// }
// }
// ]
// }
// }
CkRest_Dispose(rest);
CkAuthAws_Dispose(authAws);
CkStringBuilder_Dispose(sbResponseBody);
CkJsonObject_Dispose(jResp);
}