com.jdcloud.sdk.service.iam.model.PolicyEditionDetail Maven / Gradle / Ivy
/*
* Copyright 2018 JDCLOUD.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.
*
*
*
*
*
* Contact:
*
* NOTE: This class is auto generated by the jdcloud code generator program.
*/
package com.jdcloud.sdk.service.iam.model;
/**
* policyEditionDetail
*/
public class PolicyEditionDetail implements java.io.Serializable {
private static final long serialVersionUID = 1L;
/**
* 策略文档
*/
private String document;
/**
* 是否为默认版本
*/
private Boolean isDefaultEdition;
/**
* 策略文档版本
*/
private Integer edition;
/**
* 策略创建时间
*/
private String createTime;
/**
* get 策略文档
*
* @return
*/
public String getDocument() {
return document;
}
/**
* set 策略文档
*
* @param document
*/
public void setDocument(String document) {
this.document = document;
}
/**
* get 是否为默认版本
*
* @return
*/
public Boolean getIsDefaultEdition() {
return isDefaultEdition;
}
/**
* set 是否为默认版本
*
* @param isDefaultEdition
*/
public void setIsDefaultEdition(Boolean isDefaultEdition) {
this.isDefaultEdition = isDefaultEdition;
}
/**
* get 策略文档版本
*
* @return
*/
public Integer getEdition() {
return edition;
}
/**
* set 策略文档版本
*
* @param edition
*/
public void setEdition(Integer edition) {
this.edition = edition;
}
/**
* get 策略创建时间
*
* @return
*/
public String getCreateTime() {
return createTime;
}
/**
* set 策略创建时间
*
* @param createTime
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* set 策略文档
*
* @param document
*/
public PolicyEditionDetail document(String document) {
this.document = document;
return this;
}
/**
* set 是否为默认版本
*
* @param isDefaultEdition
*/
public PolicyEditionDetail isDefaultEdition(Boolean isDefaultEdition) {
this.isDefaultEdition = isDefaultEdition;
return this;
}
/**
* set 策略文档版本
*
* @param edition
*/
public PolicyEditionDetail edition(Integer edition) {
this.edition = edition;
return this;
}
/**
* set 策略创建时间
*
* @param createTime
*/
public PolicyEditionDetail createTime(String createTime) {
this.createTime = createTime;
return this;
}
}