com.aliyun.dyplsapi20170525.models.GetSecretAsrDetailRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dyplsapi20170525.models;
import com.aliyun.tea.*;
public class GetSecretAsrDetailRequest extends TeaModel {
/**
* The ID of the call record.
* You can log on to the Phone Number Protection console and view Call Record ID on the Call Record Query page.
* This parameter is required.
*
* example:
* 225625****
*/
@NameInMap("CallId")
public String callId;
/**
* The call initiation time in the call record.
* You can log on to the Phone Number Protection console. View Call Initiated At on the Call Record Query page, or view the call_time field in the Call Detail Record (CDR) receipt.
* This parameter is required.
*
* example:
* 2019-03-05 12:00:00
*/
@NameInMap("CallTime")
public String callTime;
/**
* The key of the phone number pool.
* You can log on to the Phone Number Protection console and view the key of the phone number pool on the Number Pool Management page.
* This parameter is required.
*
* example:
* FC2267****
*/
@NameInMap("PoolKey")
public String poolKey;
public static GetSecretAsrDetailRequest build(java.util.Map map) throws Exception {
GetSecretAsrDetailRequest self = new GetSecretAsrDetailRequest();
return TeaModel.build(map, self);
}
public GetSecretAsrDetailRequest setCallId(String callId) {
this.callId = callId;
return this;
}
public String getCallId() {
return this.callId;
}
public GetSecretAsrDetailRequest setCallTime(String callTime) {
this.callTime = callTime;
return this;
}
public String getCallTime() {
return this.callTime;
}
public GetSecretAsrDetailRequest setPoolKey(String poolKey) {
this.poolKey = poolKey;
return this;
}
public String getPoolKey() {
return this.poolKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy