com.aliyun.dyvmsapi20170525.models.SkipVideoFileRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dyvmsapi20170525 Show documentation
Show all versions of dyvmsapi20170525 Show documentation
Aliyun DYSMSAPI SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dyvmsapi20170525.models;
import com.aliyun.tea.*;
public class SkipVideoFileRequest extends TeaModel {
@NameInMap("CallId")
public String callId;
@NameInMap("CalledNumber")
public String calledNumber;
@NameInMap("OutId")
public String outId;
@NameInMap("OwnerId")
public Long ownerId;
@NameInMap("ResourceOwnerAccount")
public String resourceOwnerAccount;
@NameInMap("ResourceOwnerId")
public Long resourceOwnerId;
@NameInMap("SkipTimes")
public Long skipTimes;
public static SkipVideoFileRequest build(java.util.Map map) throws Exception {
SkipVideoFileRequest self = new SkipVideoFileRequest();
return TeaModel.build(map, self);
}
public SkipVideoFileRequest setCallId(String callId) {
this.callId = callId;
return this;
}
public String getCallId() {
return this.callId;
}
public SkipVideoFileRequest setCalledNumber(String calledNumber) {
this.calledNumber = calledNumber;
return this;
}
public String getCalledNumber() {
return this.calledNumber;
}
public SkipVideoFileRequest setOutId(String outId) {
this.outId = outId;
return this;
}
public String getOutId() {
return this.outId;
}
public SkipVideoFileRequest setOwnerId(Long ownerId) {
this.ownerId = ownerId;
return this;
}
public Long getOwnerId() {
return this.ownerId;
}
public SkipVideoFileRequest setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
return this;
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public SkipVideoFileRequest setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
return this;
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public SkipVideoFileRequest setSkipTimes(Long skipTimes) {
this.skipTimes = skipTimes;
return this;
}
public Long getSkipTimes() {
return this.skipTimes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy