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

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

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

/**
 * 
 * Represents the input for GetMeteringInfo.
 * 
 */
public class GetMeteringInfoRequest {

    private String projectName;
    private String topicName;
    private String shardId;

    /**
     *
     * constructor
     *
     *
     * @param projectName The name of project.
     * @param topicName   The name of topic.
     * @param shardId     The shard ID of shard to get the cursor for.
     */
    public GetMeteringInfoRequest(String projectName, String topicName, String shardId) {
        this.projectName = projectName;
        this.topicName = topicName;
        this.shardId = shardId;
    }

    public String getProjectName() {
        return projectName;
    }

    public String getTopicName() {
        return topicName;
    }

    public String getShardId() {
        return shardId;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy