com.hedera.hashgraph.sdk.proto.ThresholdKeyOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-full Show documentation
Show all versions of sdk-full Show documentation
Hedera™ Hashgraph SDK for Java
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: basic_types.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface ThresholdKeyOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.ThresholdKey)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* A valid signature set must have at least this many signatures
*
*
* uint32 threshold = 1;
* @return The threshold.
*/
int getThreshold();
/**
*
**
* List of all the keys that can sign
*
*
* .proto.KeyList keys = 2;
* @return Whether the keys field is set.
*/
boolean hasKeys();
/**
*
**
* List of all the keys that can sign
*
*
* .proto.KeyList keys = 2;
* @return The keys.
*/
com.hedera.hashgraph.sdk.proto.KeyList getKeys();
/**
*
**
* List of all the keys that can sign
*
*
* .proto.KeyList keys = 2;
*/
com.hedera.hashgraph.sdk.proto.KeyListOrBuilder getKeysOrBuilder();
}