Contents Response
data class ContentsResponse(description: String, domain: String, expectUserResponse: Boolean, responseType: String, status: Int, systemCommands: List<SystemCommands>, requestCompleteEvent: Boolean)
Content copied to clipboard
AgentDataListener 를 앱에서 등록했을 때 onUpdateDmResponseData callback 을 통해서 발화에 대한 서버 응답 정보가 전달 된다.
See also
Parameters
description
N/A
domain
사용자 발화가 어떠한 도메인에 대한 발화인지에 대한 정보
expectUserResponse
N/A
responseType
사용자 발화에 대한 응답 종류로 EdithResponseType 를 통해서 ResponseType 을 앱에 제공한다.
status
서버 응답이 정상인지 유무에 대한 정보(ex. 200 : Success, 그외 : Error)
systemCommands
N/A
requestCompleteEvent
N/A
Constructors
ContentsResponse
Link copied to clipboard
fun ContentsResponse(description: String = StringUtils.EMPTY, domain: String = StringUtils.EMPTY, expectUserResponse: Boolean = false, responseType: String = StringUtils.EMPTY, status: Int = -1, systemCommands: List<SystemCommands> = emptyList(), requestCompleteEvent: Boolean = false)
Content copied to clipboard
N/A
Properties
description
Link copied to clipboard
expectUserResponse
Link copied to clipboard
requestCompleteEvent
Link copied to clipboard
responseType
Link copied to clipboard
systemCommands
Link copied to clipboard