com.aliyun.sdk.service.dyvmsapi20170525.models.QueryVideoPlayProgressResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-dyvmsapi20170525 Show documentation
Show all versions of alibabacloud-dyvmsapi20170525 Show documentation
Alibaba Cloud Dyvmsapi (20170525) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.dyvmsapi20170525.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link QueryVideoPlayProgressResponseBody} extends {@link TeaModel}
*
* QueryVideoPlayProgressResponseBody
*/
public class QueryVideoPlayProgressResponseBody extends TeaModel {
@NameInMap("AccessDeniedDetail")
private String accessDeniedDetail;
@NameInMap("Code")
private String code;
@NameInMap("Data")
private java.util.Map < String, ? > data;
@NameInMap("Message")
private String message;
@NameInMap("Success")
private Boolean success;
private QueryVideoPlayProgressResponseBody(Builder builder) {
this.accessDeniedDetail = builder.accessDeniedDetail;
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static QueryVideoPlayProgressResponseBody create() {
return builder().build();
}
/**
* @return accessDeniedDetail
*/
public String getAccessDeniedDetail() {
return this.accessDeniedDetail;
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public java.util.Map < String, ? > getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String accessDeniedDetail;
private String code;
private java.util.Map < String, ? > data;
private String message;
private Boolean success;
/**
* AccessDeniedDetail.
*/
public Builder accessDeniedDetail(String accessDeniedDetail) {
this.accessDeniedDetail = accessDeniedDetail;
return this;
}
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(java.util.Map < String, ? > data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* Success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public QueryVideoPlayProgressResponseBody build() {
return new QueryVideoPlayProgressResponseBody(this);
}
}
}