Lines Matching refs:jsonValue

46   JsonView jsonValue = result.GetPayload().View();  in operator =()  local
47 if(jsonValue.ValueExists("name")) in operator =()
49 m_name = jsonValue.GetString("name"); in operator =()
53 if(jsonValue.ValueExists("description")) in operator =()
55 m_description = jsonValue.GetString("description"); in operator =()
59 if(jsonValue.ValueExists("intents")) in operator =()
61 Array<JsonView> intentsJsonList = jsonValue.GetArray("intents"); in operator =()
68 if(jsonValue.ValueExists("enableModelImprovements")) in operator =()
70 m_enableModelImprovements = jsonValue.GetBool("enableModelImprovements"); in operator =()
74 if(jsonValue.ValueExists("nluIntentConfidenceThreshold")) in operator =()
76 m_nluIntentConfidenceThreshold = jsonValue.GetDouble("nluIntentConfidenceThreshold"); in operator =()
80 if(jsonValue.ValueExists("clarificationPrompt")) in operator =()
82 m_clarificationPrompt = jsonValue.GetObject("clarificationPrompt"); in operator =()
86 if(jsonValue.ValueExists("abortStatement")) in operator =()
88 m_abortStatement = jsonValue.GetObject("abortStatement"); in operator =()
92 if(jsonValue.ValueExists("status")) in operator =()
94 m_status = StatusMapper::GetStatusForName(jsonValue.GetString("status")); in operator =()
98 if(jsonValue.ValueExists("failureReason")) in operator =()
100 m_failureReason = jsonValue.GetString("failureReason"); in operator =()
104 if(jsonValue.ValueExists("lastUpdatedDate")) in operator =()
106 m_lastUpdatedDate = jsonValue.GetDouble("lastUpdatedDate"); in operator =()
110 if(jsonValue.ValueExists("createdDate")) in operator =()
112 m_createdDate = jsonValue.GetDouble("createdDate"); in operator =()
116 if(jsonValue.ValueExists("idleSessionTTLInSeconds")) in operator =()
118 m_idleSessionTTLInSeconds = jsonValue.GetInteger("idleSessionTTLInSeconds"); in operator =()
122 if(jsonValue.ValueExists("voiceId")) in operator =()
124 m_voiceId = jsonValue.GetString("voiceId"); in operator =()
128 if(jsonValue.ValueExists("checksum")) in operator =()
130 m_checksum = jsonValue.GetString("checksum"); in operator =()
134 if(jsonValue.ValueExists("version")) in operator =()
136 m_version = jsonValue.GetString("version"); in operator =()
140 if(jsonValue.ValueExists("locale")) in operator =()
142 m_locale = LocaleMapper::GetLocaleForName(jsonValue.GetString("locale")); in operator =()
146 if(jsonValue.ValueExists("childDirected")) in operator =()
148 m_childDirected = jsonValue.GetBool("childDirected"); in operator =()
152 if(jsonValue.ValueExists("createVersion")) in operator =()
154 m_createVersion = jsonValue.GetBool("createVersion"); in operator =()
158 if(jsonValue.ValueExists("detectSentiment")) in operator =()
160 m_detectSentiment = jsonValue.GetBool("detectSentiment"); in operator =()
164 if(jsonValue.ValueExists("tags")) in operator =()
166 Array<JsonView> tagsJsonList = jsonValue.GetArray("tags"); in operator =()