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

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

The newest version!
package com.aliyun.datahub.client.impl.request;

import com.fasterxml.jackson.annotation.JsonProperty;

public class DeleteTopicSchemaRequest extends BaseRequest {
    @JsonProperty("VersionId")
    private int versionId;

    public DeleteTopicSchemaRequest() {
        setAction("DeleteSchema");
    }

    public int getVersionId() {
        return versionId;
    }

    public DeleteTopicSchemaRequest setVersionId(int versionId) {
        this.versionId = versionId;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy