You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
The above example is valid for POST/PUT for agent route. The same structure will apply to POST/PUT for agent/translation route with the only change being the language code will be that of the language for which translation is being set.
Actual/Current Behavior
The current payload doesn't include dynamicContent or description properties.
Steps to Implement This Feature
Update the IAgentRequest interface & its associated class to include dynamicContent property.
Create a local variable dynamicContentDTO which is a new instance of AgentTranslation.
Create a payload for dynamicContentPayload using dynamicContentDTO as the requestPayload.
Update buildRequestPayload method in form.service to set the value of nestedProperty property on the requestPayload.
Create requests to create/update agent translations.
The text was updated successfully, but these errors were encountered:
Desired Use Case
Update the request payload to include
dynamicContent
key as below:The above example is valid for POST/PUT for
agent
route. The same structure will apply to POST/PUT foragent/translation
route with the only change being the language code will be that of the language for which translation is being set.Actual/Current Behavior
The current payload doesn't include
dynamicContent
ordescription
properties.Steps to Implement This Feature
IAgentRequest
interface & its associated class to includedynamicContent
property.dynamicContentDTO
which is a new instance ofAgentTranslation
.dynamicContentPayload
usingdynamicContentDTO
as the requestPayload.buildRequestPayload
method in form.service to set the value ofnestedProperty
property on the requestPayload.The text was updated successfully, but these errors were encountered: