GetComponent delphiDll Example
var
rest: HCkRest;
success: Boolean;
authAws: HCkAuthAws;
sbResponseBody: HCkStringBuilder;
respStatusCode: Integer;
jResp: HCkJsonObject;
field: PWideChar;
operand: PWideChar;
operator: PWideChar;
j: Integer;
count_j: Integer;
strVal: PWideChar;
componentType: PWideChar;
StringAction: PWideChar;
StringBindingEvent: PWideChar;
AnchorComponentName: PWideChar;
AnchorConfigured: Integer;
AnchorEvent: PWideChar;
AnchorImportedValue: PWideChar;
AnchorValue: PWideChar;
name: PWideChar;
sourceId: PWideChar;
direction: PWideChar;
StringString: PWideChar;
variantValuesString: PWideChar;
AppId: PWideChar;
Bucket: PWideChar;
DefaultValue: PWideChar;
Field: PWideChar;
Key: PWideChar;
Model: PWideChar;
UserAttribute: PWideChar;
StringDefaultValue: PWideChar;
v_Type: PWideChar;
StringModel: PWideChar;
PredicateField: PWideChar;
Operand: PWideChar;
Operator: PWideChar;
ComponentType: PWideChar;
CreatedAt: Integer;
EnvironmentName: PWideChar;
Action: PWideChar;
BindingEvent: PWideChar;
BindingPropertiesField: PWideChar;
Property: PWideChar;
Element: PWideChar;
StringProperty: PWideChar;
CollectionBindingPropertiesField: PWideChar;
CollectionBindingPropertiesProperty: PWideChar;
ComponentName: PWideChar;
v_Else: PWideChar;
ConditionField: PWideChar;
ConditionOperand: PWideChar;
OperandType: PWideChar;
ConditionOperator: PWideChar;
ConditionProperty: PWideChar;
v_Then: PWideChar;
Configured: Integer;
AnchorDefaultValue: PWideChar;
v_Event: PWideChar;
ImportedValue: PWideChar;
AnchorModel: PWideChar;
AnchorProperty: PWideChar;
AnchorType: PWideChar;
AnchorUserAttribute: PWideChar;
Value: PWideChar;
BindingPropertiesProperty: PWideChar;
StringElement: PWideChar;
StringComponentName: PWideChar;
ConditionElse: PWideChar;
ConditionOperandType: PWideChar;
ConditionThen: PWideChar;
StringConfigured: Integer;
StringEvent: PWideChar;
StringImportedValue: PWideChar;
StringType: PWideChar;
StringUserAttribute: PWideChar;
StringValue: PWideChar;
GlobalComponentName: PWideChar;
GlobalConfigured: Integer;
GlobalDefaultValue: PWideChar;
GlobalEvent: PWideChar;
GlobalImportedValue: PWideChar;
GlobalModel: PWideChar;
GlobalProperty: PWideChar;
GlobalType: PWideChar;
GlobalUserAttribute: PWideChar;
GlobalValue: PWideChar;
IdComponentName: PWideChar;
IdConfigured: Integer;
IdDefaultValue: PWideChar;
IdEvent: PWideChar;
IdImportedValue: PWideChar;
IdModel: PWideChar;
IdProperty: PWideChar;
IdType: PWideChar;
IdUserAttribute: PWideChar;
IdValue: PWideChar;
ParametersModel: PWideChar;
StateComponentName: PWideChar;
StateProperty: PWideChar;
SetComponentName: PWideChar;
SetConfigured: Integer;
SetDefaultValue: PWideChar;
SetEvent: PWideChar;
SetImportedValue: PWideChar;
SetModel: PWideChar;
SetProperty: PWideChar;
SetType: PWideChar;
SetUserAttribute: PWideChar;
SetValue: PWideChar;
TargetComponentName: PWideChar;
TargetConfigured: Integer;
TargetDefaultValue: PWideChar;
TargetEvent: PWideChar;
TargetImportedValue: PWideChar;
TargetModel: PWideChar;
TargetProperty: PWideChar;
TargetType: PWideChar;
TargetUserAttribute: PWideChar;
TargetValue: PWideChar;
TypeComponentName: PWideChar;
TypeConfigured: Integer;
TypeDefaultValue: PWideChar;
TypeEvent: PWideChar;
TypeImportedValue: PWideChar;
TypeModel: PWideChar;
TypeProperty: PWideChar;
TypeType: PWideChar;
TypeUserAttribute: PWideChar;
TypeValue: PWideChar;
UrlComponentName: PWideChar;
UrlConfigured: Integer;
UrlDefaultValue: PWideChar;
UrlEvent: PWideChar;
UrlImportedValue: PWideChar;
UrlModel: PWideChar;
UrlProperty: PWideChar;
UrlType: PWideChar;
UrlUserAttribute: PWideChar;
UrlValue: PWideChar;
Id: PWideChar;
ModifiedAt: Integer;
Name: PWideChar;
v_String: PWideChar;
SchemaVersion: PWideChar;
SourceId: PWideChar;
TagsString: PWideChar;
i: Integer;
count_i: Integer;
begin
// 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) then
begin
Memo1.Lines.Add('ConnectFailReason: ' + IntToStr(CkRest_getConnectFailReason(rest)));
Memo1.Lines.Add(CkRest__lastErrorText(rest));
Exit;
end;
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) then
begin
Memo1.Lines.Add(CkRest__lastErrorText(rest));
Exit;
end;
respStatusCode := CkRest_getResponseStatusCode(rest);
Memo1.Lines.Add('response status code = ' + IntToStr(respStatusCode));
if (respStatusCode <> 200) then
begin
Memo1.Lines.Add('Response Header:');
Memo1.Lines.Add(CkRest__responseHeader(rest));
Memo1.Lines.Add('Response Body:');
Memo1.Lines.Add(CkStringBuilder__getAsString(sbResponseBody));
Exit;
end;
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
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 do
begin
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 do
begin
CkJsonObject_putJ(jResp,j);
strVal := CkJsonObject__stringOf(jResp,'component.bindingProperties.string.bindingProperties.predicates[i].and[j]');
j := j + 1;
end;
j := 0;
count_j := CkJsonObject_SizeOfArray(jResp,'component.bindingProperties.string.bindingProperties.predicates[i].or');
while j < count_j do
begin
CkJsonObject_putJ(jResp,j);
strVal := CkJsonObject__stringOf(jResp,'component.bindingProperties.string.bindingProperties.predicates[i].or[j]');
j := j + 1;
end;
i := i + 1;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'component.children');
while i < count_i do
begin
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 do
begin
CkJsonObject_putJ(jResp,j);
strVal := CkJsonObject__stringOf(jResp,'component.children[i].children[j]');
j := j + 1;
end;
j := 0;
count_j := CkJsonObject_SizeOfArray(jResp,'component.children[i].events.string.parameters.anchor.concat');
while j < count_j do
begin
CkJsonObject_putJ(jResp,j);
strVal := CkJsonObject__stringOf(jResp,'component.children[i].events.string.parameters.anchor.concat[j]');
j := j + 1;
end;
j := 0;
count_j := CkJsonObject_SizeOfArray(jResp,'component.children[i].events.string.parameters.fields.string.concat');
while j < count_j do
begin
CkJsonObject_putJ(jResp,j);
strVal := CkJsonObject__stringOf(jResp,'component.children[i].events.string.parameters.fields.string.concat[j]');
j := j + 1;
end;
j := 0;
count_j := CkJsonObject_SizeOfArray(jResp,'component.children[i].events.string.parameters.global.concat');
while j < count_j do
begin
CkJsonObject_putJ(jResp,j);
strVal := CkJsonObject__stringOf(jResp,'component.children[i].events.string.parameters.global.concat[j]');
j := j + 1;
end;
j := 0;
count_j := CkJsonObject_SizeOfArray(jResp,'component.children[i].events.string.parameters.id.concat');
while j < count_j do
begin
CkJsonObject_putJ(jResp,j);
strVal := CkJsonObject__stringOf(jResp,'component.children[i].events.string.parameters.id.concat[j]');
j := j + 1;
end;
j := 0;
count_j := CkJsonObject_SizeOfArray(jResp,'component.children[i].events.string.parameters.state.set.concat');
while j < count_j do
begin
CkJsonObject_putJ(jResp,j);
strVal := CkJsonObject__stringOf(jResp,'component.children[i].events.string.parameters.state.set.concat[j]');
j := j + 1;
end;
j := 0;
count_j := CkJsonObject_SizeOfArray(jResp,'component.children[i].events.string.parameters.target.concat');
while j < count_j do
begin
CkJsonObject_putJ(jResp,j);
strVal := CkJsonObject__stringOf(jResp,'component.children[i].events.string.parameters.target.concat[j]');
j := j + 1;
end;
j := 0;
count_j := CkJsonObject_SizeOfArray(jResp,'component.children[i].events.string.parameters.type.concat');
while j < count_j do
begin
CkJsonObject_putJ(jResp,j);
strVal := CkJsonObject__stringOf(jResp,'component.children[i].events.string.parameters.type.concat[j]');
j := j + 1;
end;
j := 0;
count_j := CkJsonObject_SizeOfArray(jResp,'component.children[i].events.string.parameters.url.concat');
while j < count_j do
begin
CkJsonObject_putJ(jResp,j);
strVal := CkJsonObject__stringOf(jResp,'component.children[i].events.string.parameters.url.concat[j]');
j := j + 1;
end;
j := 0;
count_j := CkJsonObject_SizeOfArray(jResp,'component.children[i].properties.string.concat');
while j < count_j do
begin
CkJsonObject_putJ(jResp,j);
strVal := CkJsonObject__stringOf(jResp,'component.children[i].properties.string.concat[j]');
j := j + 1;
end;
i := i + 1;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'component.collectionProperties.string.identifiers');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
strVal := CkJsonObject__stringOf(jResp,'component.collectionProperties.string.identifiers[i]');
i := i + 1;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'component.collectionProperties.string.predicate.and');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
strVal := CkJsonObject__stringOf(jResp,'component.collectionProperties.string.predicate.and[i]');
i := i + 1;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'component.collectionProperties.string.predicate.or');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
strVal := CkJsonObject__stringOf(jResp,'component.collectionProperties.string.predicate.or[i]');
i := i + 1;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'component.collectionProperties.string.sort');
while i < count_i do
begin
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;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'component.events.string.parameters.anchor.concat');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
strVal := CkJsonObject__stringOf(jResp,'component.events.string.parameters.anchor.concat[i]');
i := i + 1;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'component.events.string.parameters.fields.string.concat');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
strVal := CkJsonObject__stringOf(jResp,'component.events.string.parameters.fields.string.concat[i]');
i := i + 1;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'component.events.string.parameters.global.concat');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
strVal := CkJsonObject__stringOf(jResp,'component.events.string.parameters.global.concat[i]');
i := i + 1;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'component.events.string.parameters.id.concat');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
strVal := CkJsonObject__stringOf(jResp,'component.events.string.parameters.id.concat[i]');
i := i + 1;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'component.events.string.parameters.state.set.concat');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
strVal := CkJsonObject__stringOf(jResp,'component.events.string.parameters.state.set.concat[i]');
i := i + 1;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'component.events.string.parameters.target.concat');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
strVal := CkJsonObject__stringOf(jResp,'component.events.string.parameters.target.concat[i]');
i := i + 1;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'component.events.string.parameters.type.concat');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
strVal := CkJsonObject__stringOf(jResp,'component.events.string.parameters.type.concat[i]');
i := i + 1;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'component.events.string.parameters.url.concat');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
strVal := CkJsonObject__stringOf(jResp,'component.events.string.parameters.url.concat[i]');
i := i + 1;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'component.properties.string.concat');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
strVal := CkJsonObject__stringOf(jResp,'component.properties.string.concat[i]');
i := i + 1;
end;
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'component.variants');
while i < count_i do
begin
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;
end;
// 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);