com.aliyuncs.sas.model.v20181203.DescribeNoticeConfigResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-sas Show documentation
Show all versions of aliyun-java-sdk-sas Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.sas.model.v20181203;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.sas.transform.v20181203.DescribeNoticeConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeNoticeConfigResponse extends AcsResponse {
private String requestId;
private List noticeConfigList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List getNoticeConfigList() {
return this.noticeConfigList;
}
public void setNoticeConfigList(List noticeConfigList) {
this.noticeConfigList = noticeConfigList;
}
public static class NoticeConfig {
private Integer timeLimit;
private Long aliUid;
private Integer currentPage;
private String project;
private Integer route;
private String allFocusLevel;
private String focusLevel;
private Integer customThreshold;
public Integer getTimeLimit() {
return this.timeLimit;
}
public void setTimeLimit(Integer timeLimit) {
this.timeLimit = timeLimit;
}
public Long getAliUid() {
return this.aliUid;
}
public void setAliUid(Long aliUid) {
this.aliUid = aliUid;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public String getProject() {
return this.project;
}
public void setProject(String project) {
this.project = project;
}
public Integer getRoute() {
return this.route;
}
public void setRoute(Integer route) {
this.route = route;
}
public String getAllFocusLevel() {
return this.allFocusLevel;
}
public void setAllFocusLevel(String allFocusLevel) {
this.allFocusLevel = allFocusLevel;
}
public String getFocusLevel() {
return this.focusLevel;
}
public void setFocusLevel(String focusLevel) {
this.focusLevel = focusLevel;
}
public Integer getCustomThreshold() {
return this.customThreshold;
}
public void setCustomThreshold(Integer customThreshold) {
this.customThreshold = customThreshold;
}
}
@Override
public DescribeNoticeConfigResponse getInstance(UnmarshallerContext context) {
return DescribeNoticeConfigResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy