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

com.aliyun.datahub.client.impl.request.UpdateTopicRequest Maven / Gradle / Ivy

There is a newer version: 2.25.6
Show newest version
package com.aliyun.datahub.client.impl.request;

import com.aliyun.datahub.client.impl.serializer.UpdateTopicRequestSerializer;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;

@JsonSerialize(using = UpdateTopicRequestSerializer.class)
public class UpdateTopicRequest {
    private int lifeCycle = -1;
    private String comment;

    public int getLifeCycle() {
        return lifeCycle;
    }

    public UpdateTopicRequest setLifeCycle(int lifeCycle) {
        this.lifeCycle = lifeCycle;
        return this;
    }

    public String getComment() {
        return comment;
    }

    public UpdateTopicRequest setComment(String comment) {
        this.comment = comment;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy