Update start-process-cloud.component.md

This commit is contained in:
Eugenio Romano
2020-05-27 12:35:31 +01:00
committed by GitHub
parent 0f5fd3574b
commit 3a0efea65d

View File

@@ -60,7 +60,7 @@ Starts a process.
```html
<adf-cloud-start-process
[appId]="YOUR_APP_ID"
[appName]="YOUR_APP_ID"
[name]="PROCESS_NAME"
[processDefinitionName]="PROCESS_DEFINITION_NAME">
</adf-cloud-start-process>
@@ -74,7 +74,7 @@ If the app contains only one process definition, this process definition will be
```html
<adf-cloud-start-process
[appId]="YOUR_APP_ID"
[appName]="YOUR_APP_ID"
[variables]="{ 'my-key1' : 'myvalue', 'my-key2' : 'myvalue2'}">
</adf-cloud-start-process>
```
@@ -83,7 +83,7 @@ If the app contains only one process definition, this process definition will be
```html
<adf-cloud-start-process
[appId]="YOUR_APP_ID"
[appName]="YOUR_APP_ID"
[values]="[{'name': 'firstName', 'value': 'MyName'}, {'name': 'lastName', 'value': 'MyLastName'}]">
</adf-cloud-start-process>
```