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