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

com.weavechain.core.batching.RecordBatchLocation Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
package com.weavechain.core.batching;

import com.weavechain.core.operations.WriteOptions;
import lombok.AllArgsConstructor;
import lombok.EqualsAndHashCode;
import lombok.Getter;

@Getter
@EqualsAndHashCode
@AllArgsConstructor
public class RecordBatchLocation {

    private final String account;

    private final String organization;

    private final String scope;

    private final String table;

    private final WriteOptions writeOptions;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy