WitSyncVRequest ( IWitRequestConfiguration configuration, RequestProgressDelegate onDownloadProgress, RequestFirstResponseDelegate onFirstResponse ) Constructor for wit based editor data sync VRequests | |
bool | Submits an intent to be added to the current wit app |
bool | Submits an entity to be added to the current wit app |
bool | RequestAddEntityKeyword ( string entityId, WitEntityKeywordInfo keywordInfo, RequestCompleteDelegate< WitEntityInfo > onComplete ) Submits a keyword to be added to an entity on the current wit app |
bool | RequestAddSynonym ( string entityId, string keyword, string synonym, RequestCompleteDelegate< WitEntityInfo > onComplete ) Submits a synonym to be added to a keyword on the specified entity on the current wit app |
bool | Submits a trait to be added to the current wit app |
bool | RequestAddTraitValue ( string traitId, string traitValue, RequestCompleteDelegate< WitTraitInfo > onComplete ) Submits a trait value to be added to the current wit app |
bool | Import app data from generated manifest JSON |
Meta.WitAi.Requests.WitSyncVRequest.WitSyncVRequest ( IWitRequestConfiguration configuration, RequestProgressDelegate onDownloadProgress, RequestFirstResponseDelegate onFirstResponse ) |
---|
Constructor for wit based editor data sync VRequests Parameters configuration The configuration interface to be used onDownloadProgressThe callback for progress related to downloading onFirstResponseThe callback for the first response of data from a request |
bool Meta.WitAi.Requests.WitSyncVRequest.RequestAddIntent ( WitIntentInfo intentInfo, RequestCompleteDelegate< WitIntentInfo > onComplete ) |
---|
Submits an intent to be added to the current wit app Parameters intentInfo The intent data to be submitted onCompleteOn completion that returns an intent with unique id if successful Returns False if fails to make request |
bool Meta.WitAi.Requests.WitSyncVRequest.RequestAddEntity ( WitEntityInfo entityInfo, RequestCompleteDelegate< WitEntityInfo > onComplete ) |
---|
Submits an entity to be added to the current wit app Parameters entityInfo The entity info to be submitted onCompleteOn completion that returns an entity with unique id if successful Returns False if fails to make request |
bool Meta.WitAi.Requests.WitSyncVRequest.RequestAddEntityKeyword ( string entityId, WitEntityKeywordInfo keywordInfo, RequestCompleteDelegate< WitEntityInfo > onComplete ) |
---|
Submits a keyword to be added to an entity on the current wit app Parameters entityId The entity this keyword should be added to keywordInfoThe keyword and synonyms submitted onCompleteOn completion that returns updated entity if successful Returns False if fails to make request |
bool Meta.WitAi.Requests.WitSyncVRequest.RequestAddSynonym ( string entityId, string keyword, string synonym, RequestCompleteDelegate< WitEntityInfo > onComplete ) |
---|
Submits a synonym to be added to a keyword on the specified entity on the current wit app Parameters entityId The entity that holds the keyword keywordThe keyword we're adding the synonym to synonymThe synonym we're adding onCompleteOn completion that returns updated entity if successful Returns False if fails to make request |
bool Meta.WitAi.Requests.WitSyncVRequest.RequestAddTrait ( WitTraitInfo traitInfo, RequestCompleteDelegate< WitTraitInfo > onComplete ) |
---|
Submits a trait to be added to the current wit app Parameters traitInfo The trait data to be submitted onCompleteOn completion that returns a trait with unique id if successful Returns False if fails to make request |
bool Meta.WitAi.Requests.WitSyncVRequest.RequestAddTraitValue ( string traitId, string traitValue, RequestCompleteDelegate< WitTraitInfo > onComplete ) |
---|
Submits a trait value to be added to the current wit app Parameters traitId The trait id to be submitted traitValueThe trait value to be submitted onCompleteOn completion callback that returns updated trait if successful Returns False if fails to make request |
bool Meta.WitAi.Requests.WitSyncVRequest.RequestImportData ( string manifestData, RequestCompleteDelegate< WitResponseData > onComplete ) |
---|
Import app data from generated manifest JSON Parameters configappName The name of the app as it is defined in wit.ai manifestDataThe serialized manifest to import from Returns Built request object |