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

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

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

import java.util.List;

public class PutBlobRecordsRequest {

    private String projectName;
    private String topicName;
    private List records;

    public String getProjectName() {
        return projectName;
    }

    public String getTopicName() {
        return topicName;
    }

    public PutBlobRecordsRequest(String projectName, String topicName, List records) {
        this.projectName = projectName;
        this.topicName = topicName;
        this.records = records;
    }

    public PutBlobRecordsRequest(List records) {
        this.records = records;
    }

    public List getRecords() {
        return records;
    }

    public void setRecords(List records) {
        this.records = records;
    }

    public void addRecord(BlobRecordEntry record) {
        this.records.add(record);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy