package com.smartor.domain;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* 新增外呼实例配置请求 VO
|
*/
|
@Data
|
@ApiModel(value = "OutboundConfigAddReqVO", description = "新增外呼实例配置请求")
|
public class OutboundConfigAddReqVO {
|
|
@ApiModelProperty(value = "项目名称", required = true)
|
private String name;
|
|
@ApiModelProperty(value = "坐席号 如:10001_1000", required = true)
|
private String agent;
|
|
@ApiModelProperty(value = "资源组号", required = true)
|
private String tenantId;
|
|
@ApiModelProperty(value = "执行坐席组主键 ID isVgc 等于 0 时必填")
|
private String queueId;
|
|
@ApiModelProperty(value = "呼叫类型 1:预测试;2:预览式", required = true)
|
private String callType;
|
|
@ApiModelProperty(value = "外呼速率 isVgc 等于 0 时必填")
|
private String ratio;
|
|
@ApiModelProperty(value = "IVR 流程 ID isVgc 等于 1 时必填")
|
private String ivrId;
|
|
@ApiModelProperty(value = "是否启用语音群呼 0 否 1 启动 默认为 0")
|
private String isVgc;
|
|
@ApiModelProperty(value = "唯一值,原样返回,找到对应的响应信息", required = true)
|
private String actionID;
|
|
@ApiModelProperty(value = "号码池策略 ID")
|
private String numberBatch;
|
|
@ApiModelProperty(value = "最大振铃时长 单位/秒(默认 60)")
|
private String maxRingTime;
|
|
@ApiModelProperty(value = "第三方关联数据")
|
private String data;
|
}
|