
com.aliyuncs.cdn.model.v20180510.DescribeDomainCcActivityLogResponse Maven / Gradle / Ivy
/*
* 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.cdn.model.v20180510;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cdn.transform.v20180510.DescribeDomainCcActivityLogResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeDomainCcActivityLogResponse extends AcsResponse {
private Long pageIndex;
private String requestId;
private Long pageSize;
private Long total;
private List activityLog;
public Long getPageIndex() {
return this.pageIndex;
}
public void setPageIndex(Long pageIndex) {
this.pageIndex = pageIndex;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getTotal() {
return this.total;
}
public void setTotal(Long total) {
this.total = total;
}
public List getActivityLog() {
return this.activityLog;
}
public void setActivityLog(List activityLog) {
this.activityLog = activityLog;
}
public static class LogInfo {
private String value;
private Long ttl;
private String action;
private String triggerObject;
private String timeStamp;
private String domainName;
private String ruleName;
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public Long getTtl() {
return this.ttl;
}
public void setTtl(Long ttl) {
this.ttl = ttl;
}
public String getAction() {
return this.action;
}
public void setAction(String action) {
this.action = action;
}
public String getTriggerObject() {
return this.triggerObject;
}
public void setTriggerObject(String triggerObject) {
this.triggerObject = triggerObject;
}
public String getTimeStamp() {
return this.timeStamp;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
public String getRuleName() {
return this.ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
}
}
@Override
public DescribeDomainCcActivityLogResponse getInstance(UnmarshallerContext context) {
return DescribeDomainCcActivityLogResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy