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

com.weavechain.core.consensus.ConsensusMessage Maven / Gradle / Ivy

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

import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;

import java.util.HashMap;
import java.util.Map;

@Getter
@NoArgsConstructor
@AllArgsConstructor
public class ConsensusMessage {

    private MessageType type;

    private String organization;

    private String account;

    private String scope;

    private String table;

    private Long seqNum;

    private String signerId;

    private String hash;

    private Long viewId;

    private Long blockId;

    private String action;

    private Map data = new HashMap<>();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy