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