PHP WebShell
Текущая директория: /usr/lib/node_modules/bitgo/node_modules/@bitgo/sdk-coin-hbar/node_modules/@hashgraph/sdk/lib/token
Просмотр файла: AssessedCustomFee.cjs
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _TokenId = _interopRequireDefault(require("./TokenId.cjs"));
var _AccountId = _interopRequireDefault(require("../account/AccountId.cjs"));
var _long = _interopRequireDefault(require("long"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
/*-
*
* Hedera JavaScript SDK
*
* Copyright (C) 2020 - 2022 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.
*
*/
/**
* @namespace proto
* @typedef {import("@hashgraph/proto").proto.IAssessedCustomFee} HashgraphProto.proto.IAssessedCustomFee
*/
class AssessedCustomFee {
/**
* @param {object} props
* @param {AccountId | string} [props.feeCollectorAccountId]
* @param {TokenId | string} [props.tokenId]
* @param {Long | number} [props.amount]
* @param {AccountId[]} [props.payerAccountIds]
*/
constructor(props = {}) {
/**
* @type {?AccountId}
*/
this._feeCollectorAccountId = null;
if (props.feeCollectorAccountId != null) {
this.setFeeCollectorAccountId(props.feeCollectorAccountId);
}
/**
* @type {?TokenId}
*/
this._tokenId = null;
if (props.tokenId != null) {
this.setTokenId(props.tokenId);
}
/**
* @type {?Long}
*/
this._amount = null;
if (props.amount != null) {
this.setAmount(props.amount);
}
/**
* @type {?AccountId[]}
*/
this._payerAccountIds = null;
if (props.payerAccountIds != null) {
this.setPayerAccountIds(props.payerAccountIds);
}
}
/**
* @returns {?AccountId}
*/
get feeCollectorAccountId() {
return this._feeCollectorAccountId;
}
/**
* @param {AccountId | string} feeCollectorAccountId
* @returns {this}
*/
setFeeCollectorAccountId(feeCollectorAccountId) {
this._feeCollectorAccountId = typeof feeCollectorAccountId === "string" ? _AccountId.default.fromString(feeCollectorAccountId) : feeCollectorAccountId;
return this;
}
/**
* @returns {?TokenId}
*/
get tokenId() {
return this._tokenId;
}
/**
* @param {TokenId | string} tokenId
* @returns {this}
*/
setTokenId(tokenId) {
this._tokenId = typeof tokenId === "string" ? _TokenId.default.fromString(tokenId) : tokenId;
return this;
}
/**
* @returns {?Long}
*/
get amount() {
return this._amount;
}
/**
* @param {Long | number} amount
* @returns {AssessedCustomFee}
*/
setAmount(amount) {
this._amount = typeof amount === "number" ? _long.default.fromNumber(amount) : amount;
return this;
}
/**
* @returns {?AccountId[]}
*/
get payerAccountIds() {
return this._payerAccountIds;
}
/**
* @param {AccountId[]} payerAccountIds
* @returns {AssessedCustomFee}
*/
setPayerAccountIds(payerAccountIds) {
this._payerAccountIds = payerAccountIds;
return this;
}
/**
* @internal
* @param {HashgraphProto.proto.IAssessedCustomFee} fee
* @returns {AssessedCustomFee}
*/
static _fromProtobuf(fee) {
return new AssessedCustomFee({
feeCollectorAccountId: fee.feeCollectorAccountId != null ? _AccountId.default._fromProtobuf(fee.feeCollectorAccountId) : undefined,
tokenId: fee.tokenId != null ? _TokenId.default._fromProtobuf(fee.tokenId) : undefined,
amount: fee.amount != null ? fee.amount : undefined,
payerAccountIds: fee.effectivePayerAccountId != null ? fee.effectivePayerAccountId.map(id => _AccountId.default._fromProtobuf(id)) : undefined
});
}
/**
* @internal
* @abstract
* @returns {HashgraphProto.proto.IAssessedCustomFee}
*/
_toProtobuf() {
return {
feeCollectorAccountId: this.feeCollectorAccountId != null ? this.feeCollectorAccountId._toProtobuf() : null,
tokenId: this._tokenId != null ? this._tokenId._toProtobuf() : null,
amount: this._amount,
effectivePayerAccountId: this._payerAccountIds != null ? this._payerAccountIds.map(id => id._toProtobuf()) : null
};
}
}
exports.default = AssessedCustomFee;Выполнить команду
Для локальной разработки. Не используйте в интернете!