All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.datahub.model.GetSubscriptionResult Maven / Gradle / Ivy

There is a newer version: 2.25.6
Show newest version
package com.aliyun.datahub.model;

public class GetSubscriptionResult extends Result {
	private boolean isOwner;
	private String subId;
    private String topicName;
    private String comment;
    private int type;
    private int state;
    private long createTime;
    private long lastModifyTime;

    public boolean getIsOwner() {
    	return isOwner;
    }
    
    public void setIsOwner(boolean isOwner) {
    	this.isOwner = isOwner;
    }

	public String getSubId() {
		return subId;
	}

	public void setSubId(String subId) {
		this.subId = subId;
	}
	
    public String getTopicName() {
        return topicName;
    }

    public void setTopicName(String topicName) {
        this.topicName = topicName;
    }
    
    public int getType() {
    	return type;
    }
    
    public void setType(int type) {
    	this.type = type;
    }
    
    public int getState() {
    	return state;
    }
    
    public void setState(int state) {
    	this.state = state;
    }

    public String getComment() {
        return comment;
    }

    public void setComment(String comment) {
        this.comment = comment;
    }
    
    public void setCreateTime(long createTime) {
    	this.createTime = createTime;
    }
    
    public long getCreateTime() {
    	return createTime;
    }
    
    public void setLastModifyTime(long lastModifyTime) {
    	this.lastModifyTime = lastModifyTime;
    }
    
    public long getLastModifyTime() {
    	return lastModifyTime;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy