# flogo_tcpudp_activity **Repository Path**: shipnet_masterclock/flogo_tcpudp_activity ## Basic Information - **Project Name**: flogo_tcpudp_activity - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-02-26 - **Last Updated**: 2021-05-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Mapper This activity allows you to map values to the working attribute set of an action. ## Installation ### Flogo CLI ```bash flogo install github.com/project-flogo/contrib/activity/mapper ``` ## Configuration ### Settings: | Name | Type | Description |:--- | :--- | :--- | mappings | object | Set of mappings to execute ## Example The below example allows you to configure the activity to map the output 'value' of activity 'myActivity' to FlowAttr1 ```json { "id": "mapper", "name": "Mapper", "activity": { "ref": "github.com/project-flogo/contrib/activity/mapper", "input": { "mappings": { "FlowAttr1": "=$activity[myActivity].value" } ] } } } ```