com.aliyun.ccc20200701.models.GetVideoRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ccc20200701 Show documentation
Show all versions of ccc20200701 Show documentation
Alibaba Cloud cloud call center (20200701) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccc20200701.models;
import com.aliyun.tea.*;
public class GetVideoRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("ContactId")
public String contactId;
/**
* This parameter is required.
*/
@NameInMap("InstanceId")
public String instanceId;
public static GetVideoRequest build(java.util.Map map) throws Exception {
GetVideoRequest self = new GetVideoRequest();
return TeaModel.build(map, self);
}
public GetVideoRequest setContactId(String contactId) {
this.contactId = contactId;
return this;
}
public String getContactId() {
return this.contactId;
}
public GetVideoRequest setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
}