com.aliyun.dyvmsapi20170525.models.SkipVideoFileResponseBody 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 SkipVideoFileResponseBody extends TeaModel {
@NameInMap("AccessDeniedDetail")
public String accessDeniedDetail;
@NameInMap("Code")
public String code;
@NameInMap("Data")
public Boolean data;
@NameInMap("Message")
public String message;
@NameInMap("Success")
public Boolean success;
public static SkipVideoFileResponseBody build(java.util.Map map) throws Exception {
SkipVideoFileResponseBody self = new SkipVideoFileResponseBody();
return TeaModel.build(map, self);
}
public SkipVideoFileResponseBody setAccessDeniedDetail(String accessDeniedDetail) {
this.accessDeniedDetail = accessDeniedDetail;
return this;
}
public String getAccessDeniedDetail() {
return this.accessDeniedDetail;
}
public SkipVideoFileResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public SkipVideoFileResponseBody setData(Boolean data) {
this.data = data;
return this;
}
public Boolean getData() {
return this.data;
}
public SkipVideoFileResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public SkipVideoFileResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy