/** http请求云之讯服务器返回基础字段 */
export interface UcpaasBaseResponse {
    /**
     * 状态码
     * @example '000000'
     */
    code: string;
    /**
     * 对应状态码的信息
     * @example 发送成功 | OK
     */
    msg: string;
}
