com.hedera.hashgraph.sdk.AssessedCustomFee 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
/*-
*
* Hedera Java SDK
*
* Copyright (C) 2020 - 2024 Hedera Hashgraph, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package com.hedera.hashgraph.sdk;
import com.google.common.base.MoreObjects;
import com.google.protobuf.InvalidProtocolBufferException;
import javax.annotation.Nullable;
import java.util.ArrayList;
import java.util.List;
/**
* A custom transfer fee that was assessed during the handling of a CryptoTransfer.
*/
public class AssessedCustomFee {
/**
* The number of units assessed for the fee
*/
public final long amount;
/**
* The denomination of the fee; taken as hbar if left unset
*/
@Nullable
public final TokenId tokenId;
/**
* The account to receive the assessed fee
*/
@Nullable
public final AccountId feeCollectorAccountId;
/**
* The account(s) whose final balances would have been higher in the absence of this assessed fee
*/
public final List payerAccountIdList;
AssessedCustomFee(
long amount,
@Nullable TokenId tokenId,
@Nullable AccountId feeCollectorAccountId,
List payerAccountIdList
) {
this.amount = amount;
this.tokenId = tokenId;
this.feeCollectorAccountId = feeCollectorAccountId;
this.payerAccountIdList = payerAccountIdList;
}
/**
* Convert the protobuf object to an assessed custom fee object.
*
* @param assessedCustomFee protobuf response object
* @return the converted assessed custom fee object
*/
static AssessedCustomFee fromProtobuf(com.hedera.hashgraph.sdk.proto.AssessedCustomFee assessedCustomFee) {
var payerList = new ArrayList(assessedCustomFee.getEffectivePayerAccountIdCount());
for (var payerId : assessedCustomFee.getEffectivePayerAccountIdList()) {
payerList.add(AccountId.fromProtobuf(payerId));
}
return new AssessedCustomFee(
assessedCustomFee.getAmount(),
assessedCustomFee.hasTokenId() ? TokenId.fromProtobuf(assessedCustomFee.getTokenId()) : null,
assessedCustomFee.hasFeeCollectorAccountId() ? AccountId.fromProtobuf(assessedCustomFee.getFeeCollectorAccountId()) : null,
payerList
);
}
/**
* Convert a byte array into an assessed custom fee object.
*
* @param bytes the byte array
* @return the converted assessed custom fee object
* @throws InvalidProtocolBufferException when there is an issue with the protobuf
*/
public static AssessedCustomFee fromBytes(byte[] bytes) throws InvalidProtocolBufferException {
return fromProtobuf(com.hedera.hashgraph.sdk.proto.AssessedCustomFee.parseFrom(bytes).toBuilder().build());
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("amount", amount)
.add("tokenId", tokenId)
.add("feeCollectorAccountId", feeCollectorAccountId)
.add("payerAccountIdList", payerAccountIdList)
.toString();
}
/**
* Create the protobuf representation.
*
* @return {@link com.hedera.hashgraph.sdk.proto.AssessedCustomFee}
*/
com.hedera.hashgraph.sdk.proto.AssessedCustomFee toProtobuf() {
var builder = com.hedera.hashgraph.sdk.proto.AssessedCustomFee.newBuilder().setAmount(amount);
if (tokenId != null) {
builder.setTokenId(tokenId.toProtobuf());
}
if (feeCollectorAccountId != null) {
builder.setFeeCollectorAccountId(feeCollectorAccountId.toProtobuf());
}
for (var payerId : payerAccountIdList) {
builder.addEffectivePayerAccountId(payerId.toProtobuf());
}
return builder.build();
}
/**
* Create a byte array representation.
*
* @return the converted assessed custom fees
*/
public byte[] toBytes() {
return toProtobuf().toByteArray();
}
}