Back to project page wit-android-sdk.
The source code is released under:
/** * Copyright (c) 2014, Wit.ai, Inc. All rights reserved. * * You are hereby granted a non-exclusive, worldwide, royalty-free license to * use, copy, modify, and distribute this software in source c...
If you think the Android project wit-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ai.wit.sdk.model; //from www . j av a2 s . c o m import com.google.gson.annotations.SerializedName; import java.io.Serializable; import java.util.ArrayList; /** * Class that represent the Wit response from the server. * It uses Gson annotation for the deserialization * Created by Wit on 5/30/13. */ public class WitResponse implements Serializable { @SerializedName("msg_id") private String _msgId; @SerializedName("outcomes") private ArrayList<WitOutcome> _outcomes; public String getMsgId() { return _msgId; } public ArrayList<WitOutcome> getOutcomes() { return _outcomes; } }